:root {
  --font-family: "Inter", sans-serif;
  --font-size-base: 17.2px;
  --line-height-base: 1.72;

  --max-w: 1060px;
  --space-x: 1.03rem;
  --space-y: 1.5rem;
  --gap: 0.78rem;

  --radius-xl: 0.82rem;
  --radius-lg: 0.52rem;
  --radius-md: 0.44rem;
  --radius-sm: 0.19rem;

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

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

  --brand: #005288;
  --brand-contrast: #ffffff;
  --accent: #00a8e8;
  --accent-contrast: #ffffff;

  --neutral-0: #ffffff;
  --neutral-100: #f5f7fa;
  --neutral-300: #d1d9e6;
  --neutral-600: #6b7b95;
  --neutral-800: #2c3e50;
  --neutral-900: #1a2530;

  --bg-page: #ffffff;
  --fg-on-page: #1a2530;

  --bg-alt: #f8fafc;
  --fg-on-alt: #2c3e50;

  --surface-1: #ffffff;
  --surface-2: #f5f7fa;
  --fg-on-surface: #2c3e50;
  --border-on-surface: #e1e8f0;

  --surface-light: #ffffff;
  --fg-on-surface-light: #1a2530;
  --border-on-surface-light: #d1d9e6;

  --bg-primary: #005288;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #003a5c;
  --ring: #00a8e8;

  --bg-accent: #e6f7ff;
  --fg-on-accent: #003a5c;
  --bg-accent-hover: #0090c7;

  --link: #005288;
  --link-hover: #003a5c;

  --gradient-hero: linear-gradient(135deg, #005288 0%, #003a5c 100%);
  --gradient-accent: linear-gradient(90deg, #00a8e8 0%, #005288 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);
    padding: var(--space-y) 0;
    position: relative;
    z-index: 100;
}

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

.header-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

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

.nav-group-left,
.nav-group-right {
    flex: 1;
}

.nav-group-right {
    justify-content: flex-end;
}

.logo-wrapper {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

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

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

.nav-item {
    display: inline-block;
}

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

.nav-link:hover,
.nav-link:focus-visible {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
}

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

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--surface-1);
    border-top: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-md);
    padding: var(--space-y) var(--space-x);
    z-index: 99;
}

.mobile-menu[aria-hidden="false"] {
    display: block;
}

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

.mobile-nav-item {
    display: block;
}

.mobile-nav-link {
    display: block;
    padding: var(--space-y) var(--space-x);
    color: var(--fg-on-surface);
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    font-weight: 500;
}

.mobile-nav-link:hover,
.mobile-nav-link:focus-visible {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

@media (max-width: 767px) {
    .nav-group {
        display: none;
    }

    .logo-wrapper {
        position: static;
        transform: none;
        flex: 1;
        text-align: center;
    }

    .logo {
        font-size: calc(var(--font-size-base) * 1.25);
    }

    .burger-btn {
        display: flex;
    }

    .header-nav {
        justify-content: space-between;
    }

    .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(0.65rem) 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(-0.65rem) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2.5rem 0 1.5rem;
        font-family: system-ui, -apple-system, sans-serif;
        width: 100%;
        box-sizing: border-box;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    .footer-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1.5rem;
    }
    .top-row {
        align-items: flex-start;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #e9ecef;
    }
    .bottom-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.75rem;
        margin-bottom: 0;
        padding-top: 1.5rem;
        border-top: 1px solid #e9ecef;
        font-size: 0.9rem;
        color: #6c757d;
    }
    .footer-brand .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #0d6efd;
    }
    .footer-nav .nav-menu {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        padding: 0;
        margin: 0;
        gap: 1.5rem;
    }
    .nav-menu a {
        color: #495057;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s;
    }
    .nav-menu a:hover {
        color: #0d6efd;
    }
    .footer-contacts address ul {
        list-style: none;
        padding: 0;
        margin: 0;
        line-height: 1.6;
    }
    .footer-contacts li {
        margin-bottom: 0.5rem;
    }
    .footer-contacts a {
        color: #0d6efd;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .legal-links {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        padding: 0;
        margin: 0;
        justify-content: center;
        gap: 1.5rem;
    }
    .legal-links a {
        color: #6c757d;
        text-decoration: none;
    }
    .legal-links a:hover {
        text-decoration: underline;
        color: #333;
    }
    .footer-disclaimer p {
        margin: 0;
        font-style: italic;
        max-width: 800px;
        line-height: 1.4;
    }
    @media (max-width: 768px) {
        .footer-row {
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 1.5rem;
        }
        .top-row {
            align-items: center;
        }
        .nav-menu {
            justify-content: center;
        }
        .footer-contacts address ul {
            text-align: center;
        }
        .legal-links {
            gap: 1rem;
        }
    }

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

.wp-lang-switcher {
        position: fixed;
        right: clamp(16px, 2vw, var(--space-x, 24px));
        bottom: clamp(16px, 2vw, var(--space-y, 20px));
        z-index: 99999;
        font-family: var(--font-family, inherit);
    }

    .wp-lang-switcher__btn {
        background: var(--neutral-800, rgba(0, 0, 0, .75));
        color: var(--neutral-0, #fff);
        padding: calc(8px + var(--random-number, 1) * 2px) calc(12px + var(--random-number, 1) * 2px);
        border-radius: calc(var(--radius-lg, 14px) - var(--random-number, 1) * 2px);
        cursor: pointer;
        display: flex;
        gap: var(--gap, 10px);
        align-items: center;
        box-shadow: var(--shadow-md, 0 4px 12px rgba(0, 0, 0, 0.08));
        transition: all var(--anim-duration, 0.3s) var(--anim-ease, ease-in-out);
        border: 1px solid var(--border-on-surface, transparent);
    }

    .wp-lang-switcher__btn:hover {
        background: var(--neutral-900, rgba(0, 0, 0, .85));
        box-shadow: var(--shadow-lg, 0 8px 24px rgba(0, 0, 0, 0.12));
    }

    .wp-lang-switcher__label {
        font-size: var(--font-size-base, 16px);
    }

    .wp-lang-switcher__chev {
        font-size: 12px;
        transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease-in-out);
    }

    .wp-lang-switcher__list.open ~ .wp-lang-switcher__btn .wp-lang-switcher__chev,
    .wp-lang-switcher__btn:has(~ .wp-lang-switcher__list.open) .wp-lang-switcher__chev {
        transform: rotate(180deg);
    }

    .wp-lang-switcher__list {
        display: none;
        position: absolute;
        right: 0;
        bottom: calc(100% + 8px);
        background: var(--surface-1, #fff);
        border-radius: calc(var(--radius-lg, 14px) + var(--random-number, 1) * 2px);
        overflow: hidden;
        box-shadow: var(--shadow-lg, 0 10px 30px rgba(0, 0, 0, .2));
        min-width: calc(210px + var(--random-number, 1) * 10px);
        border: 1px solid var(--border-on-surface, #e5e7eb);
    }

    .wp-lang-switcher__list.open {
        display: block;
    }

    .wp-lang-switcher__list button,
    .wp-lang-switcher__list a {
        width: 100%;
        text-align: left;
        padding: calc(8px + var(--random-number, 1) * 2px) calc(10px + var(--random-number, 1) * 2px);
        border: 0;
        background: var(--surface-1, #fff);
        color: var(--fg-on-surface, #111827);
        cursor: pointer;
        font-family: var(--font-family, inherit);
        font-size: var(--font-size-base, 16px);
        transition: background var(--anim-duration, 0.3s) var(--anim-ease, ease-in-out);
        text-decoration: none;
        display: block;
    }

    .wp-lang-switcher__list button:hover,
    .wp-lang-switcher__list a:hover {
        background: var(--bg-alt, #f3f4f6);
    }

.intro-focus-alt {

        background: var(--fg-on-primary);
        color: var(--bg-primary);
        padding: clamp(60px, 10vw, 120px) clamp(16px, 3vw, 40px);
        position: relative;
        overflow: hidden;
    }

    .intro-focus-alt::after {
        content: '';
        position: absolute;
        bottom: -100px;
        left: -100px;
        width: 400px;
        height: 400px;
        background: var(--accent);
        border-radius: 50%;
        opacity: 0.1;
        filter: blur(80px);
        animation: pulseGlow 4s ease-in-out infinite;
    }

    @keyframes pulseGlow {
        0%, 100% {
            transform: scale(1);
            opacity: 0.1;
        }
        50% {
            transform: scale(1.2);
            opacity: 0.15;
        }
    }

    .intro-focus-alt .intro-focus-alt__c {
        max-width: var(--max-w);
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    .intro-focus-alt .intro-focus-alt__grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: clamp(32px, 5vw, 64px);
        align-items: center;
    }

    @media (min-width: 768px) {
        .intro-focus-alt .intro-focus-alt__grid {
            grid-template-columns: 1.2fr 1fr;
        }
    }

    .intro-focus-alt .intro-focus-alt__visual {
        order: var(--random-number);
    }

    .intro-focus-alt .intro-focus-alt__title {
        font-size: clamp(32px, 6vw, 56px);
        font-weight: 800;
        margin: 0 0 1.5rem;
        line-height: 1.1;
        position: relative;
    }

    .intro-focus-alt .intro-focus-alt__title::after {
        content: '';
        position: absolute;
        bottom: -12px;
        left: 0;
        width: 80px;
        height: 4px;
        background: var(--accent);
        border-radius: var(--radius-sm);
        animation: expandLine 1s ease-out 0.8s forwards;
        transform: scaleX(0);
        transform-origin: left;
    }

    @keyframes expandLine {
        to {
            transform: scaleX(1);
        }
    }

    .intro-focus-alt .intro-focus-alt__description {
        font-size: clamp(16px, 2vw, 20px);
        margin: 2rem 0 0;
        opacity: 0.9;
        line-height: var(--line-height-base);
    }

    .intro-focus-alt .intro-focus-alt__card {
        background: var(--brand-contrast);
        padding: clamp(32px, 4vw, 48px);
        border-radius: var(--radius-xl);
        text-align: center;
        box-shadow: var(--shadow-lg);
        position: relative;
        overflow: hidden;
    }

    .intro-focus-alt .intro-focus-alt__card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        animation: shimmer 3s infinite;
    }

    @keyframes shimmer {
        to {
            left: 100%;
        }
    }

    .intro-focus-alt .intro-focus-alt__icon {
        color: var(--fg-on-surface-light);
        font-size: clamp(48px, 6vw, 64px);
        margin-bottom: 1rem;
    }

    .intro-focus-alt .intro-focus-alt__fact {
        font-size: clamp(40px, 6vw, 56px);
        font-weight: 900;
        color: var(--brand);
        margin-bottom: 0.5rem;
        line-height: 1;
    }

    .intro-focus-alt .intro-focus-alt__caption {
        font-size: clamp(14px, 1.5vw, 18px);
        color: var(--neutral-600);
        font-weight: 600;
    }

.values-chain-c7 {
        padding: clamp(3.5rem, 8vw, 6rem) var(--space-x);
        background: var(--gradient-hero);
        color: var(--gradient-accent);
    }

    .values-chain-c7__wrap {
        max-width: 60rem;
        margin: 0 auto;
    }

    .values-chain-c7__head {
        margin-bottom: 1.1rem;
    }

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

    .values-chain-c7__head h2 {
        margin: .5rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
        color: var(--neutral-0);
    }

    .values-chain-c7__head span {
        display: block;
        margin-top: .8rem;
        color: rgba(255, 255, 255, .85);
    }

    .values-chain-c7__list {
        display: grid;
        gap: .8rem;
    }

    .values-chain-c7__list article {
        display: grid;
        grid-template-columns: 2.7rem 1fr 2rem;
        gap: .8rem;
        align-items: center;
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .values-chain-c7__list b {
        display: grid;
        place-items: center;
        width: 2.7rem;
        height: 2.7rem;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-weight: bold;
    }

    .values-chain-c7__list h3 {
        margin: 0;
        color: var(--neutral-0);
    }

    .values-chain-c7__list p {
        margin: .35rem 0 0;
        color: rgba(255, 255, 255, .9);
    }

    .values-chain-c7__list i {
        font-style: normal;
        text-align: right;
        font-size: 1.2rem;
    }

.why-choose {

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

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

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

    .why-choose__wrap {
        border-radius: var(--radius-xl);
        padding: clamp(16px, 2.6vw, 26px);
        background: var(--bg-alt);
        border: 1px solid var(--neutral-300);
        box-shadow: var(--shadow-md);
    }

    .why-choose__h {
        margin-bottom: clamp(14px, 2vw, 22px);
    }

    .why-choose__pill {
        display: inline-flex;
        padding: 7px 12px;
        border-radius: 999px;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-sm);
        margin-bottom: 12px;
        font-size: 0.9rem;
    }

    .why-choose__title {
        margin: 0;
        font-size: clamp(24px, 4.2vw, 40px);
        line-height: 1.1;
        color: var(--bg-primary);
        letter-spacing: -0.02em;
    }

    .why-choose__subtitle {
        margin: 10px 0 0;
        color: var(--neutral-600);
        max-width: 70ch;
    }

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

    .why-choose__card {
        grid-column: span 6;
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-sm);
        overflow: hidden;
        transform: perspective(900px) rotateX(0) rotateY(0) translateY(0);
        transition: transform 180ms var(--anim-ease),
        box-shadow 180ms var(--anim-ease),
        border-color 180ms var(--anim-ease);
        will-change: transform;
        position: relative;
    }

    /* dynamique glow via CSS variables */
    .why-choose__card::after {
        content: '';
        position: absolute;
        inset: -1px;
        background: radial-gradient(220px 220px at var(--gx, 50%) var(--gy, 50%),
        rgba(0, 85, 183, 0.20), transparent 60%);

        transition: opacity 180ms var(--anim-ease);
        pointer-events: none;
    }

    .why-choose__card.is-hover {
        box-shadow: var(--shadow-lg);
        border-color: rgba(0, 85, 183, 0.28);
    }

    .why-choose__card.is-hover::after {
        opacity: 1;
    }

    .why-choose__cardHead {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 16px;
        background: rgba(0, 0, 0, 0.03);
        border-bottom: 1px solid var(--border-on-surface);
    }

    .why-choose__num {
        width: 36px;
        height: 36px;
        border-radius: 12px;
        display: grid;
        place-items: center;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-weight: 700;
    }

    .why-choose__mini {
        color: var(--neutral-600);
        font-size: 0.9rem;
    }

    .why-choose__cardBody {
        padding: 14px 16px;
    }

    .why-choose__cardTitle {
        margin: 0 0 8px;
        color: var(--bg-primary);
        font-size: clamp(18px, 2.2vw, 20px);
    }

    .why-choose__cardText {
        margin: 0;
        color: var(--neutral-600);
        line-height: var(--line-height-base);
    }

    @media (max-width: 860px) {
        .why-choose__card {
            grid-column: span 12;
        }
    }

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

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

.visual-film-c1 {
        padding: clamp(3.5rem, 8vw, 6rem) var(--space-x);
        background: var(--gradient-hero);
        color: var(--brand-contrast);
    }

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

    .visual-film-c1__head {
        text-align: center;
        margin-bottom: 1.1rem;
    }

    .visual-film-c1__head p {
        margin: 0;
        text-transform: uppercase;
        letter-spacing: .1em;
        font-size: .82rem;
        color: var(--accent-color);
    }

    .visual-film-c1__head h2 {
        margin: .5rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
        color: var(--neutral-0);
    }

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

    .visual-film-c1__grid figure {
        margin: 0;
        overflow: hidden;
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        transition: transform var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    }

    .visual-film-c1__grid figure:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
    }

    .visual-film-c1__media {
        position: relative;
    }

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

    .visual-film-c1__media span {
        position: absolute;
        top: .8rem;
        left: .8rem;
        padding: .35rem .7rem;
        border-radius: 999px;
        background: var(--overlay);
        color: var(--neutral-0);
        font-size: .9rem;
        backdrop-filter: blur(4px);
    }

    .visual-film-c1__grid figcaption {
        padding: 1rem;
    }

    .visual-film-c1__grid small {
        color: var(--neutral-600);
        font-weight: 500;
        display: block;
        margin-bottom: 0.25rem;
    }

    .visual-film-c1__grid h3 {
        margin: .5rem 0 .35rem;
        color: var(--fg-on-surface);
        font-size: 1.3rem;
    }

    .visual-film-c1__grid p {
        margin: 0;
        color: var(--neutral-800);
        line-height: var(--line-height-base);
        font-size: 0.95rem;
    }

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

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

.header-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

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

.nav-group-left,
.nav-group-right {
    flex: 1;
}

.nav-group-right {
    justify-content: flex-end;
}

.logo-wrapper {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

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

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

.nav-item {
    display: inline-block;
}

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

.nav-link:hover,
.nav-link:focus-visible {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
}

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

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--surface-1);
    border-top: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-md);
    padding: var(--space-y) var(--space-x);
    z-index: 99;
}

.mobile-menu[aria-hidden="false"] {
    display: block;
}

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

.mobile-nav-item {
    display: block;
}

.mobile-nav-link {
    display: block;
    padding: var(--space-y) var(--space-x);
    color: var(--fg-on-surface);
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    font-weight: 500;
}

.mobile-nav-link:hover,
.mobile-nav-link:focus-visible {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

@media (max-width: 767px) {
    .nav-group {
        display: none;
    }

    .logo-wrapper {
        position: static;
        transform: none;
        flex: 1;
        text-align: center;
    }

    .logo {
        font-size: calc(var(--font-size-base) * 1.25);
    }

    .burger-btn {
        display: flex;
    }

    .header-nav {
        justify-content: space-between;
    }

    .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(0.65rem) 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(-0.65rem) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2.5rem 0 1.5rem;
        font-family: system-ui, -apple-system, sans-serif;
        width: 100%;
        box-sizing: border-box;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    .footer-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1.5rem;
    }
    .top-row {
        align-items: flex-start;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #e9ecef;
    }
    .bottom-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.75rem;
        margin-bottom: 0;
        padding-top: 1.5rem;
        border-top: 1px solid #e9ecef;
        font-size: 0.9rem;
        color: #6c757d;
    }
    .footer-brand .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #0d6efd;
    }
    .footer-nav .nav-menu {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        padding: 0;
        margin: 0;
        gap: 1.5rem;
    }
    .nav-menu a {
        color: #495057;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s;
    }
    .nav-menu a:hover {
        color: #0d6efd;
    }
    .footer-contacts address ul {
        list-style: none;
        padding: 0;
        margin: 0;
        line-height: 1.6;
    }
    .footer-contacts li {
        margin-bottom: 0.5rem;
    }
    .footer-contacts a {
        color: #0d6efd;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .legal-links {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        padding: 0;
        margin: 0;
        justify-content: center;
        gap: 1.5rem;
    }
    .legal-links a {
        color: #6c757d;
        text-decoration: none;
    }
    .legal-links a:hover {
        text-decoration: underline;
        color: #333;
    }
    .footer-disclaimer p {
        margin: 0;
        font-style: italic;
        max-width: 800px;
        line-height: 1.4;
    }
    @media (max-width: 768px) {
        .footer-row {
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 1.5rem;
        }
        .top-row {
            align-items: center;
        }
        .nav-menu {
            justify-content: center;
        }
        .footer-contacts address ul {
            text-align: center;
        }
        .legal-links {
            gap: 1rem;
        }
    }

.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--light-v6 {
    padding: 48px 20px;
    background: var(--surface-light);
    color: var(--fg-on-surface-light);
}

.post-list__inner {
    max-width: 720px;
    margin: 0 auto;
}

.post-list__inner h2 {
    margin: 0 0 10px;
    font-size: clamp(22px,3.5vw,28px);
}

.post-list__list {
    margin: 0;
    padding: 0;
    list-style: none;
    border-radius: var(--radius-xl);
    background: var(--bg-page);
    border: 1px solid var(--border-on-surface-light);
    overflow: hidden;
}

.post-list__row {
    display: grid;
    grid-template-columns: minmax(0,1.8fr) auto;
    gap: 12px;
    padding: 8px 12px;
    border-top: 1px solid var(--border-on-surface-light);
}

.post-list__row:first-child {
    border-top: none;
}

.post-list__row-title {
    font-size: 0.9rem;
    color: var(--fg-on-page);
}

.post-list__row-meta {
    font-size: 0.85rem;
    color: var(--neutral-600);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.header-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

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

.nav-group-left,
.nav-group-right {
    flex: 1;
}

.nav-group-right {
    justify-content: flex-end;
}

.logo-wrapper {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

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

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

.nav-item {
    display: inline-block;
}

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

.nav-link:hover,
.nav-link:focus-visible {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
}

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

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--surface-1);
    border-top: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-md);
    padding: var(--space-y) var(--space-x);
    z-index: 99;
}

.mobile-menu[aria-hidden="false"] {
    display: block;
}

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

.mobile-nav-item {
    display: block;
}

.mobile-nav-link {
    display: block;
    padding: var(--space-y) var(--space-x);
    color: var(--fg-on-surface);
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    font-weight: 500;
}

.mobile-nav-link:hover,
.mobile-nav-link:focus-visible {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

@media (max-width: 767px) {
    .nav-group {
        display: none;
    }

    .logo-wrapper {
        position: static;
        transform: none;
        flex: 1;
        text-align: center;
    }

    .logo {
        font-size: calc(var(--font-size-base) * 1.25);
    }

    .burger-btn {
        display: flex;
    }

    .header-nav {
        justify-content: space-between;
    }

    .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(0.65rem) 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(-0.65rem) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2.5rem 0 1.5rem;
        font-family: system-ui, -apple-system, sans-serif;
        width: 100%;
        box-sizing: border-box;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    .footer-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1.5rem;
    }
    .top-row {
        align-items: flex-start;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #e9ecef;
    }
    .bottom-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.75rem;
        margin-bottom: 0;
        padding-top: 1.5rem;
        border-top: 1px solid #e9ecef;
        font-size: 0.9rem;
        color: #6c757d;
    }
    .footer-brand .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #0d6efd;
    }
    .footer-nav .nav-menu {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        padding: 0;
        margin: 0;
        gap: 1.5rem;
    }
    .nav-menu a {
        color: #495057;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s;
    }
    .nav-menu a:hover {
        color: #0d6efd;
    }
    .footer-contacts address ul {
        list-style: none;
        padding: 0;
        margin: 0;
        line-height: 1.6;
    }
    .footer-contacts li {
        margin-bottom: 0.5rem;
    }
    .footer-contacts a {
        color: #0d6efd;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .legal-links {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        padding: 0;
        margin: 0;
        justify-content: center;
        gap: 1.5rem;
    }
    .legal-links a {
        color: #6c757d;
        text-decoration: none;
    }
    .legal-links a:hover {
        text-decoration: underline;
        color: #333;
    }
    .footer-disclaimer p {
        margin: 0;
        font-style: italic;
        max-width: 800px;
        line-height: 1.4;
    }
    @media (max-width: 768px) {
        .footer-row {
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 1.5rem;
        }
        .top-row {
            align-items: center;
        }
        .nav-menu {
            justify-content: center;
        }
        .footer-contacts address ul {
            text-align: center;
        }
        .legal-links {
            gap: 1rem;
        }
    }

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

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

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

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

.articles__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
}

.articles__card {
    background: rgba(15,23,42,0.9);
    border-radius: var(--radius-lg);
    padding: 16px 18px;
    border: 1px solid rgba(148,163,184,0.6);
}

.articles__badge {
    display: inline-block;
    margin-bottom: 6px;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 0.75rem;
    background: rgba(15,23,42,0.95);
    border: 1px solid rgba(55,65,81,0.9);
}

.articles__card h3 {
    margin: 0 0 6px;
    font-size: 1rem;
}

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

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

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

.header-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

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

.nav-group-left,
.nav-group-right {
    flex: 1;
}

.nav-group-right {
    justify-content: flex-end;
}

.logo-wrapper {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

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

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

.nav-item {
    display: inline-block;
}

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

.nav-link:hover,
.nav-link:focus-visible {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
}

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

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--surface-1);
    border-top: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-md);
    padding: var(--space-y) var(--space-x);
    z-index: 99;
}

.mobile-menu[aria-hidden="false"] {
    display: block;
}

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

.mobile-nav-item {
    display: block;
}

.mobile-nav-link {
    display: block;
    padding: var(--space-y) var(--space-x);
    color: var(--fg-on-surface);
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    font-weight: 500;
}

.mobile-nav-link:hover,
.mobile-nav-link:focus-visible {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

@media (max-width: 767px) {
    .nav-group {
        display: none;
    }

    .logo-wrapper {
        position: static;
        transform: none;
        flex: 1;
        text-align: center;
    }

    .logo {
        font-size: calc(var(--font-size-base) * 1.25);
    }

    .burger-btn {
        display: flex;
    }

    .header-nav {
        justify-content: space-between;
    }

    .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(0.65rem) 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(-0.65rem) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2.5rem 0 1.5rem;
        font-family: system-ui, -apple-system, sans-serif;
        width: 100%;
        box-sizing: border-box;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    .footer-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1.5rem;
    }
    .top-row {
        align-items: flex-start;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #e9ecef;
    }
    .bottom-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.75rem;
        margin-bottom: 0;
        padding-top: 1.5rem;
        border-top: 1px solid #e9ecef;
        font-size: 0.9rem;
        color: #6c757d;
    }
    .footer-brand .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #0d6efd;
    }
    .footer-nav .nav-menu {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        padding: 0;
        margin: 0;
        gap: 1.5rem;
    }
    .nav-menu a {
        color: #495057;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s;
    }
    .nav-menu a:hover {
        color: #0d6efd;
    }
    .footer-contacts address ul {
        list-style: none;
        padding: 0;
        margin: 0;
        line-height: 1.6;
    }
    .footer-contacts li {
        margin-bottom: 0.5rem;
    }
    .footer-contacts a {
        color: #0d6efd;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .legal-links {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        padding: 0;
        margin: 0;
        justify-content: center;
        gap: 1.5rem;
    }
    .legal-links a {
        color: #6c757d;
        text-decoration: none;
    }
    .legal-links a:hover {
        text-decoration: underline;
        color: #333;
    }
    .footer-disclaimer p {
        margin: 0;
        font-style: italic;
        max-width: 800px;
        line-height: 1.4;
    }
    @media (max-width: 768px) {
        .footer-row {
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 1.5rem;
        }
        .top-row {
            align-items: center;
        }
        .nav-menu {
            justify-content: center;
        }
        .footer-contacts address ul {
            text-align: center;
        }
        .legal-links {
            gap: 1rem;
        }
    }

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

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

.author__inner {
    max-width: 520px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto minmax(0,1fr);
    gap: 16px;
    align-items: center;
}

.author__avatar {
    width: 72px;
    height: 72px;
    border-radius: 999px;
    overflow: hidden;
    border: 2px solid var(--bg-accent);
}

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

.author__name {
    margin: 0;
    font-size: 1.05rem;
}

.author__role {
    margin: 2px 0 8px;
    font-size: 0.9rem;
    color: var(--neutral-300);
}

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

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

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

.header-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

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

.nav-group-left,
.nav-group-right {
    flex: 1;
}

.nav-group-right {
    justify-content: flex-end;
}

.logo-wrapper {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

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

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

.nav-item {
    display: inline-block;
}

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

.nav-link:hover,
.nav-link:focus-visible {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
}

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

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--surface-1);
    border-top: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-md);
    padding: var(--space-y) var(--space-x);
    z-index: 99;
}

.mobile-menu[aria-hidden="false"] {
    display: block;
}

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

.mobile-nav-item {
    display: block;
}

.mobile-nav-link {
    display: block;
    padding: var(--space-y) var(--space-x);
    color: var(--fg-on-surface);
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    font-weight: 500;
}

.mobile-nav-link:hover,
.mobile-nav-link:focus-visible {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

@media (max-width: 767px) {
    .nav-group {
        display: none;
    }

    .logo-wrapper {
        position: static;
        transform: none;
        flex: 1;
        text-align: center;
    }

    .logo {
        font-size: calc(var(--font-size-base) * 1.25);
    }

    .burger-btn {
        display: flex;
    }

    .header-nav {
        justify-content: space-between;
    }

    .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(0.65rem) 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(-0.65rem) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2.5rem 0 1.5rem;
        font-family: system-ui, -apple-system, sans-serif;
        width: 100%;
        box-sizing: border-box;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    .footer-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1.5rem;
    }
    .top-row {
        align-items: flex-start;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #e9ecef;
    }
    .bottom-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.75rem;
        margin-bottom: 0;
        padding-top: 1.5rem;
        border-top: 1px solid #e9ecef;
        font-size: 0.9rem;
        color: #6c757d;
    }
    .footer-brand .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #0d6efd;
    }
    .footer-nav .nav-menu {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        padding: 0;
        margin: 0;
        gap: 1.5rem;
    }
    .nav-menu a {
        color: #495057;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s;
    }
    .nav-menu a:hover {
        color: #0d6efd;
    }
    .footer-contacts address ul {
        list-style: none;
        padding: 0;
        margin: 0;
        line-height: 1.6;
    }
    .footer-contacts li {
        margin-bottom: 0.5rem;
    }
    .footer-contacts a {
        color: #0d6efd;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .legal-links {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        padding: 0;
        margin: 0;
        justify-content: center;
        gap: 1.5rem;
    }
    .legal-links a {
        color: #6c757d;
        text-decoration: none;
    }
    .legal-links a:hover {
        text-decoration: underline;
        color: #333;
    }
    .footer-disclaimer p {
        margin: 0;
        font-style: italic;
        max-width: 800px;
        line-height: 1.4;
    }
    @media (max-width: 768px) {
        .footer-row {
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 1.5rem;
        }
        .top-row {
            align-items: center;
        }
        .nav-menu {
            justify-content: center;
        }
        .footer-contacts address ul {
            text-align: center;
        }
        .legal-links {
            gap: 1rem;
        }
    }

.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);
    padding: var(--space-y) 0;
    position: relative;
    z-index: 100;
}

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

.header-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

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

.nav-group-left,
.nav-group-right {
    flex: 1;
}

.nav-group-right {
    justify-content: flex-end;
}

.logo-wrapper {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

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

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

.nav-item {
    display: inline-block;
}

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

.nav-link:hover,
.nav-link:focus-visible {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
}

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

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--surface-1);
    border-top: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-md);
    padding: var(--space-y) var(--space-x);
    z-index: 99;
}

.mobile-menu[aria-hidden="false"] {
    display: block;
}

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

.mobile-nav-item {
    display: block;
}

.mobile-nav-link {
    display: block;
    padding: var(--space-y) var(--space-x);
    color: var(--fg-on-surface);
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    font-weight: 500;
}

.mobile-nav-link:hover,
.mobile-nav-link:focus-visible {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

@media (max-width: 767px) {
    .nav-group {
        display: none;
    }

    .logo-wrapper {
        position: static;
        transform: none;
        flex: 1;
        text-align: center;
    }

    .logo {
        font-size: calc(var(--font-size-base) * 1.25);
    }

    .burger-btn {
        display: flex;
    }

    .header-nav {
        justify-content: space-between;
    }

    .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(0.65rem) 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(-0.65rem) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2.5rem 0 1.5rem;
        font-family: system-ui, -apple-system, sans-serif;
        width: 100%;
        box-sizing: border-box;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    .footer-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1.5rem;
    }
    .top-row {
        align-items: flex-start;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #e9ecef;
    }
    .bottom-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.75rem;
        margin-bottom: 0;
        padding-top: 1.5rem;
        border-top: 1px solid #e9ecef;
        font-size: 0.9rem;
        color: #6c757d;
    }
    .footer-brand .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #0d6efd;
    }
    .footer-nav .nav-menu {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        padding: 0;
        margin: 0;
        gap: 1.5rem;
    }
    .nav-menu a {
        color: #495057;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s;
    }
    .nav-menu a:hover {
        color: #0d6efd;
    }
    .footer-contacts address ul {
        list-style: none;
        padding: 0;
        margin: 0;
        line-height: 1.6;
    }
    .footer-contacts li {
        margin-bottom: 0.5rem;
    }
    .footer-contacts a {
        color: #0d6efd;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .legal-links {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        padding: 0;
        margin: 0;
        justify-content: center;
        gap: 1.5rem;
    }
    .legal-links a {
        color: #6c757d;
        text-decoration: none;
    }
    .legal-links a:hover {
        text-decoration: underline;
        color: #333;
    }
    .footer-disclaimer p {
        margin: 0;
        font-style: italic;
        max-width: 800px;
        line-height: 1.4;
    }
    @media (max-width: 768px) {
        .footer-row {
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 1.5rem;
        }
        .top-row {
            align-items: center;
        }
        .nav-menu {
            justify-content: center;
        }
        .footer-contacts address ul {
            text-align: center;
        }
        .legal-links {
            gap: 1rem;
        }
    }

.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--colored-v5 {
    padding: 56px 20px;
    background: var(--neutral-900);
    color: var(--neutral-0);
}

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

.article-list__header {
    margin-bottom: 20px;
}

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

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

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

.article-list__card {
    background: rgba(15,23,42,0.9);
    border-radius: var(--radius-lg);
    padding: 16px 18px;
    border: 1px solid rgba(148,163,184,0.6);
}

.article-list__card h3 {
    margin: 0 0 6px;
    font-size: 1rem;
    color: var(--brand-contrast);
}

.article-list__card p {
    margin: 0 0 10px;
    font-size: 0.9rem;
    color: rgba(226,232,240,0.9);
}

.article-list__link {
    font-size: 0.85rem;
    color: var(--bg-accent);
    text-decoration: none;
}

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

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

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

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

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

    .faq-layout-f .table {
        display: grid;
        gap: 10px;
    }

    .faq-layout-f .line {
        display: grid;
        grid-template-columns: .9fr 1.1fr;
        gap: 12px;
        padding: 12px;
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--surface-1);
    }

    .faq-layout-f .q {
        font-weight: 600;
        color: var(--brand);
    }

    .faq-layout-f .a {
        color: var(--neutral-600);
    }

    @media (max-width: 780px) {
        .faq-layout-f .line {
            grid-template-columns: 1fr;
        }
    }

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

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

.header-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

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

.nav-group-left,
.nav-group-right {
    flex: 1;
}

.nav-group-right {
    justify-content: flex-end;
}

.logo-wrapper {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

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

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

.nav-item {
    display: inline-block;
}

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

.nav-link:hover,
.nav-link:focus-visible {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
}

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

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--surface-1);
    border-top: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-md);
    padding: var(--space-y) var(--space-x);
    z-index: 99;
}

.mobile-menu[aria-hidden="false"] {
    display: block;
}

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

.mobile-nav-item {
    display: block;
}

.mobile-nav-link {
    display: block;
    padding: var(--space-y) var(--space-x);
    color: var(--fg-on-surface);
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    font-weight: 500;
}

.mobile-nav-link:hover,
.mobile-nav-link:focus-visible {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

@media (max-width: 767px) {
    .nav-group {
        display: none;
    }

    .logo-wrapper {
        position: static;
        transform: none;
        flex: 1;
        text-align: center;
    }

    .logo {
        font-size: calc(var(--font-size-base) * 1.25);
    }

    .burger-btn {
        display: flex;
    }

    .header-nav {
        justify-content: space-between;
    }

    .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(0.65rem) 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(-0.65rem) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2.5rem 0 1.5rem;
        font-family: system-ui, -apple-system, sans-serif;
        width: 100%;
        box-sizing: border-box;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    .footer-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1.5rem;
    }
    .top-row {
        align-items: flex-start;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #e9ecef;
    }
    .bottom-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.75rem;
        margin-bottom: 0;
        padding-top: 1.5rem;
        border-top: 1px solid #e9ecef;
        font-size: 0.9rem;
        color: #6c757d;
    }
    .footer-brand .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #0d6efd;
    }
    .footer-nav .nav-menu {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        padding: 0;
        margin: 0;
        gap: 1.5rem;
    }
    .nav-menu a {
        color: #495057;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s;
    }
    .nav-menu a:hover {
        color: #0d6efd;
    }
    .footer-contacts address ul {
        list-style: none;
        padding: 0;
        margin: 0;
        line-height: 1.6;
    }
    .footer-contacts li {
        margin-bottom: 0.5rem;
    }
    .footer-contacts a {
        color: #0d6efd;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .legal-links {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        padding: 0;
        margin: 0;
        justify-content: center;
        gap: 1.5rem;
    }
    .legal-links a {
        color: #6c757d;
        text-decoration: none;
    }
    .legal-links a:hover {
        text-decoration: underline;
        color: #333;
    }
    .footer-disclaimer p {
        margin: 0;
        font-style: italic;
        max-width: 800px;
        line-height: 1.4;
    }
    @media (max-width: 768px) {
        .footer-row {
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 1.5rem;
        }
        .top-row {
            align-items: center;
        }
        .nav-menu {
            justify-content: center;
        }
        .footer-contacts address ul {
            text-align: center;
        }
        .legal-links {
            gap: 1rem;
        }
    }

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

.support-lv1 {
        padding: clamp(50px, 7vw, 88px) clamp(16px, 4vw, 36px);
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

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

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

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

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

    .support-lv1__grid {
        display: grid;
        gap: 10px;
        grid-template-columns: repeat(var(--cols, 3), minmax(0, 1fr));
    }

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

    .support-lv1__grid h3 {
        margin: 0 0 6px;
    }

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

    .support-lv1__grid a {
        color: var(--link);
        text-decoration: none;
        font-weight: 600;
    }

    @media (max-width: 900px) {
        .support-lv1__grid {
            grid-template-columns: 1fr 1fr;
        }
    }

    @media (max-width: 640px) {
        .support-lv1__grid {
            grid-template-columns: 1fr;
        }
    }

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

    .form-layout-c .wrap {
        max-width: 900px;
        margin: 0 auto;
    }

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

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

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

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

    .form-layout-c .row {
        display: grid;
        gap: 10px;
    }

    .form-layout-c .row.two {
        grid-template-columns: 1fr 1fr;
    }

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

    .form-layout-c input:not([type="checkbox"]), .form-layout-c textarea {
        width: 100%;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        padding: 9px;
        font: inherit;
    }

    .form-layout-c .agree {
        display: flex;
        gap: 8px;
        align-items: center;
        margin-top: 2px;
    }

    .form-layout-c button {
        margin-top: 10px;
        border: 0;
        border-radius: var(--radius-sm);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: 10px 14px;
    }

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

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

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

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

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

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

    .contact-layout-f .capsule {
        display: grid;
        gap: var(--gap);
        grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    }

    .contact-layout-f .capsule article {
        border-radius: 12px;
        border: 1px solid var(--border-on-surface-light);
        padding: 14px 16px;
        background: var(--surface-1);
    }

    .contact-layout-f .capsule h3 {
        margin: 0;
        font-size: .96rem;
        color: var(--brand);
    }

    .contact-layout-f .capsule p {
        margin: 5px 0 0;
    }

    .contact-layout-f .social-strip {
        margin-top: 18px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }

    .contact-layout-f .social-strip a {
        text-decoration: none;
        color: var(--fg-on-primary);
        background: var(--gradient-hero);
        padding: 7px 11px;
        border-radius: var(--radius-sm);
    }

    .social-follow {
        text-align: center;
    }

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

    .map-shell-c4__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .map-shell-c4__band {
        margin-bottom: 1rem;
        display: flex;
        justify-content: space-between;
        align-items: end;
        gap: 1rem;
        flex-wrap: wrap;
    }

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

    .map-shell-c4__band p {
        margin: 0;
        color: rgba(255, 255, 255, .82);
    }

    .map-shell-c4__shell {
        display: grid;
        grid-template-columns: 1.2fr .8fr;
        gap: 1rem;
    }

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

    .map-shell-c4__cards {
        display: grid;
        gap: .75rem;
    }

    .map-shell-c4__cards article {
        padding: .95rem;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .map-shell-c4__cards p {
        margin: .35rem 0 0;
        color: rgba(255, 255, 255, .84);
    }

    .map-shell-c4__cards a {
        color: inherit;
        text-decoration: none;
    }

    .map-shell-c4__cards a:hover {
        text-decoration: underline;
    }

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

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

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

.header-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

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

.nav-group-left,
.nav-group-right {
    flex: 1;
}

.nav-group-right {
    justify-content: flex-end;
}

.logo-wrapper {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

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

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

.nav-item {
    display: inline-block;
}

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

.nav-link:hover,
.nav-link:focus-visible {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
}

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

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--surface-1);
    border-top: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-md);
    padding: var(--space-y) var(--space-x);
    z-index: 99;
}

.mobile-menu[aria-hidden="false"] {
    display: block;
}

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

.mobile-nav-item {
    display: block;
}

.mobile-nav-link {
    display: block;
    padding: var(--space-y) var(--space-x);
    color: var(--fg-on-surface);
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    font-weight: 500;
}

.mobile-nav-link:hover,
.mobile-nav-link:focus-visible {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

@media (max-width: 767px) {
    .nav-group {
        display: none;
    }

    .logo-wrapper {
        position: static;
        transform: none;
        flex: 1;
        text-align: center;
    }

    .logo {
        font-size: calc(var(--font-size-base) * 1.25);
    }

    .burger-btn {
        display: flex;
    }

    .header-nav {
        justify-content: space-between;
    }

    .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(0.65rem) 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(-0.65rem) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2.5rem 0 1.5rem;
        font-family: system-ui, -apple-system, sans-serif;
        width: 100%;
        box-sizing: border-box;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    .footer-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1.5rem;
    }
    .top-row {
        align-items: flex-start;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #e9ecef;
    }
    .bottom-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.75rem;
        margin-bottom: 0;
        padding-top: 1.5rem;
        border-top: 1px solid #e9ecef;
        font-size: 0.9rem;
        color: #6c757d;
    }
    .footer-brand .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #0d6efd;
    }
    .footer-nav .nav-menu {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        padding: 0;
        margin: 0;
        gap: 1.5rem;
    }
    .nav-menu a {
        color: #495057;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s;
    }
    .nav-menu a:hover {
        color: #0d6efd;
    }
    .footer-contacts address ul {
        list-style: none;
        padding: 0;
        margin: 0;
        line-height: 1.6;
    }
    .footer-contacts li {
        margin-bottom: 0.5rem;
    }
    .footer-contacts a {
        color: #0d6efd;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .legal-links {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        padding: 0;
        margin: 0;
        justify-content: center;
        gap: 1.5rem;
    }
    .legal-links a {
        color: #6c757d;
        text-decoration: none;
    }
    .legal-links a:hover {
        text-decoration: underline;
        color: #333;
    }
    .footer-disclaimer p {
        margin: 0;
        font-style: italic;
        max-width: 800px;
        line-height: 1.4;
    }
    @media (max-width: 768px) {
        .footer-row {
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 1.5rem;
        }
        .top-row {
            align-items: center;
        }
        .nav-menu {
            justify-content: center;
        }
        .footer-contacts address ul {
            text-align: center;
        }
        .legal-links {
            gap: 1rem;
        }
    }

.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-b {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

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

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

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

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

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

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

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

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

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

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

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

.header-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

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

.nav-group-left,
.nav-group-right {
    flex: 1;
}

.nav-group-right {
    justify-content: flex-end;
}

.logo-wrapper {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

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

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

.nav-item {
    display: inline-block;
}

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

.nav-link:hover,
.nav-link:focus-visible {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
}

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

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--surface-1);
    border-top: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-md);
    padding: var(--space-y) var(--space-x);
    z-index: 99;
}

.mobile-menu[aria-hidden="false"] {
    display: block;
}

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

.mobile-nav-item {
    display: block;
}

.mobile-nav-link {
    display: block;
    padding: var(--space-y) var(--space-x);
    color: var(--fg-on-surface);
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    font-weight: 500;
}

.mobile-nav-link:hover,
.mobile-nav-link:focus-visible {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

@media (max-width: 767px) {
    .nav-group {
        display: none;
    }

    .logo-wrapper {
        position: static;
        transform: none;
        flex: 1;
        text-align: center;
    }

    .logo {
        font-size: calc(var(--font-size-base) * 1.25);
    }

    .burger-btn {
        display: flex;
    }

    .header-nav {
        justify-content: space-between;
    }

    .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(0.65rem) 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(-0.65rem) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2.5rem 0 1.5rem;
        font-family: system-ui, -apple-system, sans-serif;
        width: 100%;
        box-sizing: border-box;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    .footer-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1.5rem;
    }
    .top-row {
        align-items: flex-start;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #e9ecef;
    }
    .bottom-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.75rem;
        margin-bottom: 0;
        padding-top: 1.5rem;
        border-top: 1px solid #e9ecef;
        font-size: 0.9rem;
        color: #6c757d;
    }
    .footer-brand .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #0d6efd;
    }
    .footer-nav .nav-menu {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        padding: 0;
        margin: 0;
        gap: 1.5rem;
    }
    .nav-menu a {
        color: #495057;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s;
    }
    .nav-menu a:hover {
        color: #0d6efd;
    }
    .footer-contacts address ul {
        list-style: none;
        padding: 0;
        margin: 0;
        line-height: 1.6;
    }
    .footer-contacts li {
        margin-bottom: 0.5rem;
    }
    .footer-contacts a {
        color: #0d6efd;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .legal-links {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        padding: 0;
        margin: 0;
        justify-content: center;
        gap: 1.5rem;
    }
    .legal-links a {
        color: #6c757d;
        text-decoration: none;
    }
    .legal-links a:hover {
        text-decoration: underline;
        color: #333;
    }
    .footer-disclaimer p {
        margin: 0;
        font-style: italic;
        max-width: 800px;
        line-height: 1.4;
    }
    @media (max-width: 768px) {
        .footer-row {
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 1.5rem;
        }
        .top-row {
            align-items: center;
        }
        .nav-menu {
            justify-content: center;
        }
        .footer-contacts address ul {
            text-align: center;
        }
        .legal-links {
            gap: 1rem;
        }
    }

.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-b {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

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

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

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

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

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

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

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

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

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

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

.header-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

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

.nav-group-left,
.nav-group-right {
    flex: 1;
}

.nav-group-right {
    justify-content: flex-end;
}

.logo-wrapper {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

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

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

.nav-item {
    display: inline-block;
}

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

.nav-link:hover,
.nav-link:focus-visible {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
}

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

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--surface-1);
    border-top: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-md);
    padding: var(--space-y) var(--space-x);
    z-index: 99;
}

.mobile-menu[aria-hidden="false"] {
    display: block;
}

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

.mobile-nav-item {
    display: block;
}

.mobile-nav-link {
    display: block;
    padding: var(--space-y) var(--space-x);
    color: var(--fg-on-surface);
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    font-weight: 500;
}

.mobile-nav-link:hover,
.mobile-nav-link:focus-visible {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

@media (max-width: 767px) {
    .nav-group {
        display: none;
    }

    .logo-wrapper {
        position: static;
        transform: none;
        flex: 1;
        text-align: center;
    }

    .logo {
        font-size: calc(var(--font-size-base) * 1.25);
    }

    .burger-btn {
        display: flex;
    }

    .header-nav {
        justify-content: space-between;
    }

    .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(0.65rem) 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(-0.65rem) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2.5rem 0 1.5rem;
        font-family: system-ui, -apple-system, sans-serif;
        width: 100%;
        box-sizing: border-box;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    .footer-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1.5rem;
    }
    .top-row {
        align-items: flex-start;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #e9ecef;
    }
    .bottom-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.75rem;
        margin-bottom: 0;
        padding-top: 1.5rem;
        border-top: 1px solid #e9ecef;
        font-size: 0.9rem;
        color: #6c757d;
    }
    .footer-brand .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #0d6efd;
    }
    .footer-nav .nav-menu {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        padding: 0;
        margin: 0;
        gap: 1.5rem;
    }
    .nav-menu a {
        color: #495057;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s;
    }
    .nav-menu a:hover {
        color: #0d6efd;
    }
    .footer-contacts address ul {
        list-style: none;
        padding: 0;
        margin: 0;
        line-height: 1.6;
    }
    .footer-contacts li {
        margin-bottom: 0.5rem;
    }
    .footer-contacts a {
        color: #0d6efd;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .legal-links {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        padding: 0;
        margin: 0;
        justify-content: center;
        gap: 1.5rem;
    }
    .legal-links a {
        color: #6c757d;
        text-decoration: none;
    }
    .legal-links a:hover {
        text-decoration: underline;
        color: #333;
    }
    .footer-disclaimer p {
        margin: 0;
        font-style: italic;
        max-width: 800px;
        line-height: 1.4;
    }
    @media (max-width: 768px) {
        .footer-row {
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 1.5rem;
        }
        .top-row {
            align-items: center;
        }
        .nav-menu {
            justify-content: center;
        }
        .footer-contacts address ul {
            text-align: center;
        }
        .legal-links {
            gap: 1rem;
        }
    }

.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-f {
        padding: clamp(56px, 10vw, 112px) 18px;
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

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

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

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

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

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

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

.header-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

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

.nav-group-left,
.nav-group-right {
    flex: 1;
}

.nav-group-right {
    justify-content: flex-end;
}

.logo-wrapper {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

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

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

.nav-item {
    display: inline-block;
}

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

.nav-link:hover,
.nav-link:focus-visible {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
}

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

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--surface-1);
    border-top: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-md);
    padding: var(--space-y) var(--space-x);
    z-index: 99;
}

.mobile-menu[aria-hidden="false"] {
    display: block;
}

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

.mobile-nav-item {
    display: block;
}

.mobile-nav-link {
    display: block;
    padding: var(--space-y) var(--space-x);
    color: var(--fg-on-surface);
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    font-weight: 500;
}

.mobile-nav-link:hover,
.mobile-nav-link:focus-visible {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

@media (max-width: 767px) {
    .nav-group {
        display: none;
    }

    .logo-wrapper {
        position: static;
        transform: none;
        flex: 1;
        text-align: center;
    }

    .logo {
        font-size: calc(var(--font-size-base) * 1.25);
    }

    .burger-btn {
        display: flex;
    }

    .header-nav {
        justify-content: space-between;
    }

    .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(0.65rem) 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(-0.65rem) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2.5rem 0 1.5rem;
        font-family: system-ui, -apple-system, sans-serif;
        width: 100%;
        box-sizing: border-box;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    .footer-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1.5rem;
    }
    .top-row {
        align-items: flex-start;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #e9ecef;
    }
    .bottom-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.75rem;
        margin-bottom: 0;
        padding-top: 1.5rem;
        border-top: 1px solid #e9ecef;
        font-size: 0.9rem;
        color: #6c757d;
    }
    .footer-brand .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #0d6efd;
    }
    .footer-nav .nav-menu {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        padding: 0;
        margin: 0;
        gap: 1.5rem;
    }
    .nav-menu a {
        color: #495057;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s;
    }
    .nav-menu a:hover {
        color: #0d6efd;
    }
    .footer-contacts address ul {
        list-style: none;
        padding: 0;
        margin: 0;
        line-height: 1.6;
    }
    .footer-contacts li {
        margin-bottom: 0.5rem;
    }
    .footer-contacts a {
        color: #0d6efd;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .legal-links {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        padding: 0;
        margin: 0;
        justify-content: center;
        gap: 1.5rem;
    }
    .legal-links a {
        color: #6c757d;
        text-decoration: none;
    }
    .legal-links a:hover {
        text-decoration: underline;
        color: #333;
    }
    .footer-disclaimer p {
        margin: 0;
        font-style: italic;
        max-width: 800px;
        line-height: 1.4;
    }
    @media (max-width: 768px) {
        .footer-row {
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 1.5rem;
        }
        .top-row {
            align-items: center;
        }
        .nav-menu {
            justify-content: center;
        }
        .footer-contacts address ul {
            text-align: center;
        }
        .legal-links {
            gap: 1rem;
        }
    }

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