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

  --max-w: 1280px;
  --space-x: 2.34rem;
  --space-y: 1.5rem;
  --gap: 1.41rem;

  --radius-xl: 1.24rem;
  --radius-lg: 0.91rem;
  --radius-md: 0.52rem;
  --radius-sm: 0.26rem;

  --shadow-sm: 0 1px 5px rgba(0,0,0,0.1);
  --shadow-md: 0 10px 22px rgba(0,0,0,0.13);
  --shadow-lg: 0 26px 38px rgba(0,0,0,0.15);

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

  --brand: #0056B3;
  --brand-contrast: #FFFFFF;
  --accent: #E63946;
  --accent-contrast: #FFFFFF;

  --neutral-0: #FFFFFF;
  --neutral-100: #F8F9FA;
  --neutral-300: #DEE2E6;
  --neutral-600: #6C757D;
  --neutral-800: #343A40;
  --neutral-900: #212529;

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

  --bg-alt: #F8F9FA;
  --fg-on-alt: #343A40;

  --surface-1: #FFFFFF;
  --surface-2: #F8F9FA;
  --fg-on-surface: #212529;
  --border-on-surface: #DEE2E6;

  --surface-light: #FFFFFF;
  --fg-on-surface-light: #343A40;
  --border-on-surface-light: #CED4DA;

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

  --bg-accent: #E63946;
  --fg-on-accent: #FFFFFF;
  --bg-accent-hover: #C1121F;

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

  --gradient-hero: linear-gradient(135deg, #0056B3 0%, #003D82 100%);
  --gradient-accent: linear-gradient(135deg, #E63946 0%, #C1121F 100%);

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

.header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}
.header__container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}
.header__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);
}
.header__logo:hover,
.header__logo:focus-visible {
    color: var(--accent);
    outline: none;
}
.header__nav {
    flex: 1;
    display: flex;
    justify-content: center;
}
.nav__list {
    display: flex;
    gap: calc(var(--gap) * 2);
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav__link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: var(--radius-sm) var(--radius-md);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.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;
}
.nav__link[aria-current="page"] {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
}
.header__actions {
    display: flex;
    align-items: center;
    gap: var(--gap);
}
.btn-search,
.btn-burger {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--fg-on-surface);
    padding: var(--radius-sm);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.btn-search:hover,
.btn-search:focus-visible,
.btn-burger:hover,
.btn-burger:focus-visible {
    background-color: var(--btn-ghost-bg-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}
.icon-search {
    display: block;
}
.btn-burger {
    display: none;
    flex-direction: column;
    gap: 4px;
    width: 44px;
    height: 44px;
}
.burger-line {
    display: block;
    width: 22px;
    height: 2px;
    background-color: currentColor;
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
    .header__nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--overlay);
        backdrop-filter: blur(8px);
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        z-index: 99;
    }
    .header__nav.is-active {
        transform: translateX(0);
    }
    .nav__list {
        flex-direction: column;
        align-items: center;
        gap: calc(var(--gap) * 3);
    }
    .nav__link {
        font-size: calc(var(--font-size-base) * 1.2);
        padding: var(--radius-md) var(--radius-lg);
    }
    .btn-burger {
        display: flex;
        z-index: 101;
    }
    .btn-burger[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    .btn-burger[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }
    .btn-burger[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}

.footer-container {
        background-color: #f8f9fa;
        color: #333;
        padding: 3rem 1.5rem 1.5rem;
        border-top: 1px solid #dee2e6;
        font-family: sans-serif;
        font-size: 0.95rem;
        line-height: 1.6;
    }
    .footer-content {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        gap: 3rem;
        justify-content: space-between;
    }
    .footer-left {
        flex: 1;
        min-width: 250px;
    }
    .brand-logo {
        font-size: 2rem;
        font-weight: 800;
        letter-spacing: 1px;
        color: #2c3e50;
        margin-bottom: 1rem;
    }
    .copyright {
        color: #6c757d;
        margin-top: 1rem;
    }
    .footer-right {
        flex: 2;
        min-width: 300px;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #2c3e50;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-legal {
        color: #6c757d;
    }
    .footer-legal a {
        color: #495057;
        text-decoration: none;
    }
    .footer-legal a:hover {
        text-decoration: underline;
    }
    .footer-contacts {
        color: #495057;
    }
    .footer-contacts p {
        margin: 0.3rem 0;
    }
    .footer-contacts a {
        color: #007bff;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .footer-disclaimer {
        font-size: 0.85rem;
        color: #6c757d;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid #e9ecef;
        font-style: italic;
    }
    @media (max-width: 768px) {
        .footer-content {
            flex-direction: column;
            gap: 2rem;
        }
        .footer-nav ul {
            flex-direction: column;
            gap: 1rem;
        }
    }

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

    .nfcookie-v12__shell {
        max-width: 720px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
    }

    .nfcookie-v12__meta {display: flex; align-items: center; gap: 8px;}

    .nfcookie-v12__shell p {margin: 8px 0 0; color: var(--fg-on-surface-light);}

    .nfcookie-v12__actions {margin-top: 14px; display: flex; gap: 8px; flex-wrap: wrap;}

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

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

.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-spine-c1 {
        padding: clamp(3.5rem, 8vw, 6.2rem) var(--space-x);
        background: var(--gradient-hero);
        color: var(--brand-contrast);
    }

    .values-spine-c1__wrap {
        max-width: 58rem;
        margin: 0 auto;
    }

    .values-spine-c1__head {
        text-align: center;
        margin-bottom: 1.2rem;
    }

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

    .values-spine-c1__head h2 {
        margin: .55rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
        color: var(--brand-contrast);
    }

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

    .values-spine-c1__list {
        display: grid;
        gap: .8rem;
    }

    .values-spine-c1__list article {
        display: grid;
        grid-template-columns: 3rem 1fr;
        gap: .9rem;
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .values-spine-c1__list strong {
        display: grid;
        place-items: center;
        width: 3rem;
        height: 3rem;
        border-radius: var(--radius-md);
        background: var(--bg-accent);
        color: var(--accent-contrast);
        font-weight: bold;
    }

    .values-spine-c1__list h3 {
        margin: 0;
        color: var(--brand-contrast);
    }

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

    .values-spine-c1__list small {
        display: block;
        margin-top: .55rem;
        color: rgba(255, 255, 255, .7);
        font-style: italic;
    }

.touch-gridline {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 3vw, 36px);
        background: var(--bg-page);
        color: var(--fg-on-page);
    }

    .touch-gridline .wrap {
        max-width: 900px;
        margin: 0 auto;
    }

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

    .touch-gridline .lead {
        margin: 10px 0 14px;
        color: var(--neutral-600);
    }

    .touch-gridline .list {
        display: grid;
        gap: 8px;
    }

    .touch-gridline .row {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
        background: var(--surface-1);
        padding: 10px 12px;
        display: flex;
        justify-content: space-between;
        gap: 10px;
        align-items: center;
    }

    .touch-gridline .title {
        margin: 0 0 4px;
        font-weight: 600;
    }

    .touch-gridline .text {
        margin: 0;
        color: var(--neutral-600);
    }

    .touch-gridline .row a {
        color: var(--link);
        text-decoration: none;
        white-space: nowrap;
        font-weight: 500;
    }
    .touch-gridline .row a:hover {
        color: var(--link-hover);
        text-decoration: underline;
    }

    .touch-gridline .cta {
        display: inline-block;
        margin-top: 12px;
        text-decoration: none;
        padding: 10px 16px;
        border-radius: var(--radius-md);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 600;
        transition: background-color var(--anim-duration) var(--anim-ease);
    }
    .touch-gridline .cta:hover {
        background: var(--bg-primary-hover);
    }

.bloglist-fresh-v2 {
        padding: calc(var(--space-y) * 2.5) var(--space-x);
        background: var(--accent);
        color: var(--accent-contrast);
    }

    .bloglist-fresh-v2 .shell {
        max-width: 940px;
        margin: 0 auto;
        display: grid;
        gap: var(--gap);
    }

    .bloglist-fresh-v2 .list {
        display: grid;
        gap: .8rem;
    }

    .bloglist-fresh-v2 article {
        display: grid;
        grid-template-columns:240px 1fr;
        gap: var(--gap);
        padding: .8rem;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
        background: var(--surface-1);
    }

    .bloglist-fresh-v2 .thumb img {
        width: 100%;
        height: 100%;
        min-height: 140px;
        object-fit: cover;
        border-radius: var(--radius-sm);
    }

    .bloglist-fresh-v2 .meta {
        margin: 0;
        color: var(--fg-on-surface-light);
        font-size: .84rem;
    }

    .bloglist-fresh-v2 h3 {
        margin: .3rem 0 .45rem;
    }

    .bloglist-fresh-v2 h3 a {
        text-decoration: none;
        color: var(--fg-on-surface);
    }

    .bloglist-fresh-v2 p {
        margin: 0;
        color: var(--fg-on-surface-light);
    }

    @media (max-width: 740px) {
        .bloglist-fresh-v2 article {
            grid-template-columns:1fr;
        }
    }

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

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

    .visual-board-l4__head {
        margin-bottom: 1rem;
        text-align: center;
    }

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

    .visual-board-l4__head p {
        margin: .6rem 0 0;
        color: var(--neutral-600);
    }

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

    .visual-board-l4__grid figure {
        margin: 0;
        padding: .9rem;
        border-radius: var(--radius-xl);
        background: var(--bg-alt);
        border: 1px solid var(--border-on-surface-light);
    }

    .visual-board-l4__grid figcaption strong {
        color: var(--brand);
    }

    .visual-board-l4__grid h3 {
        margin: .45rem 0 .35rem;
    }

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

    .visual-board-l4__grid img {
        display: block;
        width: 100%;
        height: 12rem;
        object-fit: cover;
        border-radius: var(--radius-md);
        margin-top: .85rem;
    }

.header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}
.header__container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}
.header__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);
}
.header__logo:hover,
.header__logo:focus-visible {
    color: var(--accent);
    outline: none;
}
.header__nav {
    flex: 1;
    display: flex;
    justify-content: center;
}
.nav__list {
    display: flex;
    gap: calc(var(--gap) * 2);
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav__link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: var(--radius-sm) var(--radius-md);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.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;
}
.nav__link[aria-current="page"] {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
}
.header__actions {
    display: flex;
    align-items: center;
    gap: var(--gap);
}
.btn-search,
.btn-burger {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--fg-on-surface);
    padding: var(--radius-sm);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.btn-search:hover,
.btn-search:focus-visible,
.btn-burger:hover,
.btn-burger:focus-visible {
    background-color: var(--btn-ghost-bg-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}
.icon-search {
    display: block;
}
.btn-burger {
    display: none;
    flex-direction: column;
    gap: 4px;
    width: 44px;
    height: 44px;
}
.burger-line {
    display: block;
    width: 22px;
    height: 2px;
    background-color: currentColor;
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
    .header__nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--overlay);
        backdrop-filter: blur(8px);
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        z-index: 99;
    }
    .header__nav.is-active {
        transform: translateX(0);
    }
    .nav__list {
        flex-direction: column;
        align-items: center;
        gap: calc(var(--gap) * 3);
    }
    .nav__link {
        font-size: calc(var(--font-size-base) * 1.2);
        padding: var(--radius-md) var(--radius-lg);
    }
    .btn-burger {
        display: flex;
        z-index: 101;
    }
    .btn-burger[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    .btn-burger[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }
    .btn-burger[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}

.footer-container {
        background-color: #f8f9fa;
        color: #333;
        padding: 3rem 1.5rem 1.5rem;
        border-top: 1px solid #dee2e6;
        font-family: sans-serif;
        font-size: 0.95rem;
        line-height: 1.6;
    }
    .footer-content {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        gap: 3rem;
        justify-content: space-between;
    }
    .footer-left {
        flex: 1;
        min-width: 250px;
    }
    .brand-logo {
        font-size: 2rem;
        font-weight: 800;
        letter-spacing: 1px;
        color: #2c3e50;
        margin-bottom: 1rem;
    }
    .copyright {
        color: #6c757d;
        margin-top: 1rem;
    }
    .footer-right {
        flex: 2;
        min-width: 300px;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #2c3e50;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-legal {
        color: #6c757d;
    }
    .footer-legal a {
        color: #495057;
        text-decoration: none;
    }
    .footer-legal a:hover {
        text-decoration: underline;
    }
    .footer-contacts {
        color: #495057;
    }
    .footer-contacts p {
        margin: 0.3rem 0;
    }
    .footer-contacts a {
        color: #007bff;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .footer-disclaimer {
        font-size: 0.85rem;
        color: #6c757d;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid #e9ecef;
        font-style: italic;
    }
    @media (max-width: 768px) {
        .footer-content {
            flex-direction: column;
            gap: 2rem;
        }
        .footer-nav ul {
            flex-direction: column;
            gap: 1rem;
        }
    }

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

    .nfcookie-v12__shell {
        max-width: 720px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
    }

    .nfcookie-v12__meta {display: flex; align-items: center; gap: 8px;}

    .nfcookie-v12__shell p {margin: 8px 0 0; color: var(--fg-on-surface-light);}

    .nfcookie-v12__actions {margin-top: 14px; display: flex; gap: 8px; flex-wrap: wrap;}

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

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

.bloglist-fresh-v2 {
        padding: calc(var(--space-y) * 2.5) var(--space-x);
        background: var(--accent);
        color: var(--accent-contrast);
    }

    .bloglist-fresh-v2 .shell {
        max-width: 940px;
        margin: 0 auto;
        display: grid;
        gap: var(--gap);
    }

    .bloglist-fresh-v2 .list {
        display: grid;
        gap: .8rem;
    }

    .bloglist-fresh-v2 article {
        display: grid;
        grid-template-columns:240px 1fr;
        gap: var(--gap);
        padding: .8rem;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
        background: var(--surface-1);
    }

    .bloglist-fresh-v2 .thumb img {
        width: 100%;
        height: 100%;
        min-height: 140px;
        object-fit: cover;
        border-radius: var(--radius-sm);
    }

    .bloglist-fresh-v2 .meta {
        margin: 0;
        color: var(--fg-on-surface-light);
        font-size: .84rem;
    }

    .bloglist-fresh-v2 h3 {
        margin: .3rem 0 .45rem;
    }

    .bloglist-fresh-v2 h3 a {
        text-decoration: none;
        color: var(--fg-on-surface);
    }

    .bloglist-fresh-v2 p {
        margin: 0;
        color: var(--fg-on-surface-light);
    }

    @media (max-width: 740px) {
        .bloglist-fresh-v2 article {
            grid-template-columns:1fr;
        }
    }

.index-recommendations-split {
        background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.75), transparent 60%),
        linear-gradient(135deg, rgba(212, 165, 165, 0.45), rgba(248, 225, 231, 0.95));
        color: var(--fg-on-page);
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 40px);
        overflow: hidden;
    }

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

    .index-recommendations-split__h {
        text-align: center;
        margin-bottom: clamp(24px, 6vw, 52px);

        transform: translateY(-18px);
    }

    .index-recommendations-split__h h2 {
        margin: 0 0 10px;
        font-size: clamp(28px, 4.6vw, 48px);
        letter-spacing: -0.02em;
    }

    .index-recommendations-split__h p {
        margin: 0;
        color: rgba(58, 46, 61, 0.75);
    }

    .index-recommendations-split__grid {
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        gap: clamp(14px, 2.6vw, 22px);
    }

    .index-recommendations-split__card {
        grid-column: span 6;
        border-radius: var(--radius-xl);
        overflow: hidden;
        box-shadow: var(--shadow-lg);
        background: rgba(255, 255, 255, 0.65);
        border: 1px solid rgba(58, 46, 61, 0.12);
        display: grid;
        grid-template-rows: 170px 1fr;

        transform: translateY(26px);
        backdrop-filter: blur(10px);
    }

    .index-recommendations-split__card:nth-child(1) {
        grid-column: span 12;
        grid-template-columns: 1.2fr 1fr;
        grid-template-rows: 1fr;
        min-height: 320px;
    }

    .index-recommendations-split__media {
        position: relative;
        background-size: cover;
        background-position: center;
        background-color: rgba(58, 46, 61, 0.08);
    }

    .index-recommendations-split__card:nth-child(1) .index-recommendations-split__media {
        border-right: 1px solid rgba(58, 46, 61, 0.12);
    }

    .index-recommendations-split__media::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
        pointer-events: none;
    }

    .index-recommendations-split__pill {
        position: absolute;
        left: 14px;
        top: 14px;
        padding: 7px 10px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.78);
        border: 1px solid rgba(58, 46, 61, 0.14);
        color: var(--fg-on-page);
        font-size: 10px;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        z-index: 1;
    }

    .index-recommendations-split__body {
        padding: 18px 18px 16px;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .index-recommendations-split__icon {
        width: 44px;
        height: 44px;
        border-radius: 16px;
        background: var(--bg-accent);
        border: 1px solid var(--border-on-surface);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
    }

    .index-recommendations-split__body h3 {
        margin: 0;
        font-size: 18px;
        font-weight: 900;
        letter-spacing: -0.01em;
        color: var(--fg-on-page);
    }

    .index-recommendations-split__body p {
        margin: 0;
        color: rgba(58, 46, 61, 0.84);
        font-size: 14px;
        line-height: 1.65;
    }

    .index-recommendations-split__link {
        margin-top: auto;
        color: var(--link);
        text-decoration: none;
        font-weight: 800;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        font-size: 11px;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

    .index-recommendations-split__link::after {
        content: '->';
    }

    .index-recommendations-split__link:hover {
        color: var(--link-hover);
    }

    @media (max-width: 900px) {
        .index-recommendations-split__grid {
            grid-template-columns: repeat(6, 1fr);
        }

        .index-recommendations-split__card {
            grid-column: span 6;
        }

        .index-recommendations-split__card:nth-child(1) {
            grid-template-columns: 1fr;
            grid-template-rows: 200px 1fr;
            min-height: 0;
        }

        .index-recommendations-split__card:nth-child(1) .index-recommendations-split__media {
            border-right: 0;
            border-bottom: 1px solid rgba(58, 46, 61, 0.12);
        }
    }

.header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}
.header__container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}
.header__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);
}
.header__logo:hover,
.header__logo:focus-visible {
    color: var(--accent);
    outline: none;
}
.header__nav {
    flex: 1;
    display: flex;
    justify-content: center;
}
.nav__list {
    display: flex;
    gap: calc(var(--gap) * 2);
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav__link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: var(--radius-sm) var(--radius-md);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.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;
}
.nav__link[aria-current="page"] {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
}
.header__actions {
    display: flex;
    align-items: center;
    gap: var(--gap);
}
.btn-search,
.btn-burger {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--fg-on-surface);
    padding: var(--radius-sm);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.btn-search:hover,
.btn-search:focus-visible,
.btn-burger:hover,
.btn-burger:focus-visible {
    background-color: var(--btn-ghost-bg-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}
.icon-search {
    display: block;
}
.btn-burger {
    display: none;
    flex-direction: column;
    gap: 4px;
    width: 44px;
    height: 44px;
}
.burger-line {
    display: block;
    width: 22px;
    height: 2px;
    background-color: currentColor;
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
    .header__nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--overlay);
        backdrop-filter: blur(8px);
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        z-index: 99;
    }
    .header__nav.is-active {
        transform: translateX(0);
    }
    .nav__list {
        flex-direction: column;
        align-items: center;
        gap: calc(var(--gap) * 3);
    }
    .nav__link {
        font-size: calc(var(--font-size-base) * 1.2);
        padding: var(--radius-md) var(--radius-lg);
    }
    .btn-burger {
        display: flex;
        z-index: 101;
    }
    .btn-burger[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    .btn-burger[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }
    .btn-burger[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}

.footer-container {
        background-color: #f8f9fa;
        color: #333;
        padding: 3rem 1.5rem 1.5rem;
        border-top: 1px solid #dee2e6;
        font-family: sans-serif;
        font-size: 0.95rem;
        line-height: 1.6;
    }
    .footer-content {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        gap: 3rem;
        justify-content: space-between;
    }
    .footer-left {
        flex: 1;
        min-width: 250px;
    }
    .brand-logo {
        font-size: 2rem;
        font-weight: 800;
        letter-spacing: 1px;
        color: #2c3e50;
        margin-bottom: 1rem;
    }
    .copyright {
        color: #6c757d;
        margin-top: 1rem;
    }
    .footer-right {
        flex: 2;
        min-width: 300px;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #2c3e50;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-legal {
        color: #6c757d;
    }
    .footer-legal a {
        color: #495057;
        text-decoration: none;
    }
    .footer-legal a:hover {
        text-decoration: underline;
    }
    .footer-contacts {
        color: #495057;
    }
    .footer-contacts p {
        margin: 0.3rem 0;
    }
    .footer-contacts a {
        color: #007bff;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .footer-disclaimer {
        font-size: 0.85rem;
        color: #6c757d;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid #e9ecef;
        font-style: italic;
    }
    @media (max-width: 768px) {
        .footer-content {
            flex-direction: column;
            gap: 2rem;
        }
        .footer-nav ul {
            flex-direction: column;
            gap: 1rem;
        }
    }

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

    .nfcookie-v12__shell {
        max-width: 720px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
    }

    .nfcookie-v12__meta {display: flex; align-items: center; gap: 8px;}

    .nfcookie-v12__shell p {margin: 8px 0 0; color: var(--fg-on-surface-light);}

    .nfcookie-v12__actions {margin-top: 14px; display: flex; gap: 8px; flex-wrap: wrap;}

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

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

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

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

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

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

.blog-item__text {
    margin: 0;
    font-size: 0.98rem;
    color: var(--neutral-700);
    line-height: 1.7;
}

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

.header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}
.header__container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}
.header__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);
}
.header__logo:hover,
.header__logo:focus-visible {
    color: var(--accent);
    outline: none;
}
.header__nav {
    flex: 1;
    display: flex;
    justify-content: center;
}
.nav__list {
    display: flex;
    gap: calc(var(--gap) * 2);
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav__link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: var(--radius-sm) var(--radius-md);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.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;
}
.nav__link[aria-current="page"] {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
}
.header__actions {
    display: flex;
    align-items: center;
    gap: var(--gap);
}
.btn-search,
.btn-burger {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--fg-on-surface);
    padding: var(--radius-sm);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.btn-search:hover,
.btn-search:focus-visible,
.btn-burger:hover,
.btn-burger:focus-visible {
    background-color: var(--btn-ghost-bg-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}
.icon-search {
    display: block;
}
.btn-burger {
    display: none;
    flex-direction: column;
    gap: 4px;
    width: 44px;
    height: 44px;
}
.burger-line {
    display: block;
    width: 22px;
    height: 2px;
    background-color: currentColor;
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
    .header__nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--overlay);
        backdrop-filter: blur(8px);
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        z-index: 99;
    }
    .header__nav.is-active {
        transform: translateX(0);
    }
    .nav__list {
        flex-direction: column;
        align-items: center;
        gap: calc(var(--gap) * 3);
    }
    .nav__link {
        font-size: calc(var(--font-size-base) * 1.2);
        padding: var(--radius-md) var(--radius-lg);
    }
    .btn-burger {
        display: flex;
        z-index: 101;
    }
    .btn-burger[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    .btn-burger[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }
    .btn-burger[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}

.footer-container {
        background-color: #f8f9fa;
        color: #333;
        padding: 3rem 1.5rem 1.5rem;
        border-top: 1px solid #dee2e6;
        font-family: sans-serif;
        font-size: 0.95rem;
        line-height: 1.6;
    }
    .footer-content {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        gap: 3rem;
        justify-content: space-between;
    }
    .footer-left {
        flex: 1;
        min-width: 250px;
    }
    .brand-logo {
        font-size: 2rem;
        font-weight: 800;
        letter-spacing: 1px;
        color: #2c3e50;
        margin-bottom: 1rem;
    }
    .copyright {
        color: #6c757d;
        margin-top: 1rem;
    }
    .footer-right {
        flex: 2;
        min-width: 300px;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #2c3e50;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-legal {
        color: #6c757d;
    }
    .footer-legal a {
        color: #495057;
        text-decoration: none;
    }
    .footer-legal a:hover {
        text-decoration: underline;
    }
    .footer-contacts {
        color: #495057;
    }
    .footer-contacts p {
        margin: 0.3rem 0;
    }
    .footer-contacts a {
        color: #007bff;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .footer-disclaimer {
        font-size: 0.85rem;
        color: #6c757d;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid #e9ecef;
        font-style: italic;
    }
    @media (max-width: 768px) {
        .footer-content {
            flex-direction: column;
            gap: 2rem;
        }
        .footer-nav ul {
            flex-direction: column;
            gap: 1rem;
        }
    }

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

    .nfcookie-v12__shell {
        max-width: 720px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
    }

    .nfcookie-v12__meta {display: flex; align-items: center; gap: 8px;}

    .nfcookie-v12__shell p {margin: 8px 0 0; color: var(--fg-on-surface-light);}

    .nfcookie-v12__actions {margin-top: 14px; display: flex; gap: 8px; flex-wrap: wrap;}

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

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

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

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

    .blogitem-fresh-v5 .meta {
        margin: 0;
        opacity: .78;
    }

    .blogitem-fresh-v5 h1 {
        margin: 0;
        font-size: clamp(2rem, 4.2vw, 3rem);
    }

    .blogitem-fresh-v5 .lead {
        margin: 0;
        opacity: .88;
        max-width: 66ch;
    }

    .blogitem-fresh-v5 .frame {
        display: grid;
        grid-template-columns:.95fr 1.05fr;
        gap: var(--gap);
        align-items: start;
    }

    .blogitem-fresh-v5 img {
        width: 100%;
        aspect-ratio: 4/5;
        object-fit: cover;
        border-radius: var(--radius-lg);
    }

    .blogitem-fresh-v5 .content {
        display: grid;
        gap: .75rem;
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--chip-bg);
        border: 1px solid var(--btn-ghost-bg-hover);
    }

    .blogitem-fresh-v5 .content p {
        margin: 0;
        opacity: .92;
    }

    @media (max-width: 860px) {
        .blogitem-fresh-v5 .frame {
            grid-template-columns:1fr;
        }

        .blogitem-fresh-v5 img {
            aspect-ratio: 16/9;
        }
    }

.header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}
.header__container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}
.header__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);
}
.header__logo:hover,
.header__logo:focus-visible {
    color: var(--accent);
    outline: none;
}
.header__nav {
    flex: 1;
    display: flex;
    justify-content: center;
}
.nav__list {
    display: flex;
    gap: calc(var(--gap) * 2);
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav__link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: var(--radius-sm) var(--radius-md);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.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;
}
.nav__link[aria-current="page"] {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
}
.header__actions {
    display: flex;
    align-items: center;
    gap: var(--gap);
}
.btn-search,
.btn-burger {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--fg-on-surface);
    padding: var(--radius-sm);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.btn-search:hover,
.btn-search:focus-visible,
.btn-burger:hover,
.btn-burger:focus-visible {
    background-color: var(--btn-ghost-bg-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}
.icon-search {
    display: block;
}
.btn-burger {
    display: none;
    flex-direction: column;
    gap: 4px;
    width: 44px;
    height: 44px;
}
.burger-line {
    display: block;
    width: 22px;
    height: 2px;
    background-color: currentColor;
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
    .header__nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--overlay);
        backdrop-filter: blur(8px);
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        z-index: 99;
    }
    .header__nav.is-active {
        transform: translateX(0);
    }
    .nav__list {
        flex-direction: column;
        align-items: center;
        gap: calc(var(--gap) * 3);
    }
    .nav__link {
        font-size: calc(var(--font-size-base) * 1.2);
        padding: var(--radius-md) var(--radius-lg);
    }
    .btn-burger {
        display: flex;
        z-index: 101;
    }
    .btn-burger[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    .btn-burger[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }
    .btn-burger[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}

.footer-container {
        background-color: #f8f9fa;
        color: #333;
        padding: 3rem 1.5rem 1.5rem;
        border-top: 1px solid #dee2e6;
        font-family: sans-serif;
        font-size: 0.95rem;
        line-height: 1.6;
    }
    .footer-content {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        gap: 3rem;
        justify-content: space-between;
    }
    .footer-left {
        flex: 1;
        min-width: 250px;
    }
    .brand-logo {
        font-size: 2rem;
        font-weight: 800;
        letter-spacing: 1px;
        color: #2c3e50;
        margin-bottom: 1rem;
    }
    .copyright {
        color: #6c757d;
        margin-top: 1rem;
    }
    .footer-right {
        flex: 2;
        min-width: 300px;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #2c3e50;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-legal {
        color: #6c757d;
    }
    .footer-legal a {
        color: #495057;
        text-decoration: none;
    }
    .footer-legal a:hover {
        text-decoration: underline;
    }
    .footer-contacts {
        color: #495057;
    }
    .footer-contacts p {
        margin: 0.3rem 0;
    }
    .footer-contacts a {
        color: #007bff;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .footer-disclaimer {
        font-size: 0.85rem;
        color: #6c757d;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid #e9ecef;
        font-style: italic;
    }
    @media (max-width: 768px) {
        .footer-content {
            flex-direction: column;
            gap: 2rem;
        }
        .footer-nav ul {
            flex-direction: column;
            gap: 1rem;
        }
    }

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

    .nfcookie-v12__shell {
        max-width: 720px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
    }

    .nfcookie-v12__meta {display: flex; align-items: center; gap: 8px;}

    .nfcookie-v12__shell p {margin: 8px 0 0; color: var(--fg-on-surface-light);}

    .nfcookie-v12__actions {margin-top: 14px; display: flex; gap: 8px; flex-wrap: wrap;}

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

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

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

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

.article-content-section__content {
    max-width: 800px;
    margin: 0 auto;
}

.article-content-section__content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--fg-on-page);
}

.article-content-section__content p {
    max-width: 100%;
    margin-bottom: 1.5rem;
    color: var(--neutral-600);
}

.article-content-section__content ul,
.article-content-section__content ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    color: var(--neutral-600);
}

.article-content-section__content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.article-content-section__callout {
    margin-top: 2rem;
    padding: clamp(16px, 3vw, 24px);
    background-color: var(--bg-alt);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-on-surface);
}

.article-content-section__callout p {
    margin: 0;
    color: var(--fg-on-alt);
}

.article-content-section__actions {
    margin-top: 2rem;
    text-align: center;
}

.article-content-section__btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--radius-md);
    font-weight: 500;
    text-align: center;
    transition: all var(--anim-duration) var(--anim-ease);
    cursor: pointer;
    border: 1px solid var(--bg-primary);
    font-size: 1rem;
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
}

.article-content-section__btn:hover {
    background-color: var(--bg-primary-hover);
    border-color: var(--bg-primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}
.header__container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}
.header__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);
}
.header__logo:hover,
.header__logo:focus-visible {
    color: var(--accent);
    outline: none;
}
.header__nav {
    flex: 1;
    display: flex;
    justify-content: center;
}
.nav__list {
    display: flex;
    gap: calc(var(--gap) * 2);
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav__link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: var(--radius-sm) var(--radius-md);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.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;
}
.nav__link[aria-current="page"] {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
}
.header__actions {
    display: flex;
    align-items: center;
    gap: var(--gap);
}
.btn-search,
.btn-burger {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--fg-on-surface);
    padding: var(--radius-sm);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.btn-search:hover,
.btn-search:focus-visible,
.btn-burger:hover,
.btn-burger:focus-visible {
    background-color: var(--btn-ghost-bg-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}
.icon-search {
    display: block;
}
.btn-burger {
    display: none;
    flex-direction: column;
    gap: 4px;
    width: 44px;
    height: 44px;
}
.burger-line {
    display: block;
    width: 22px;
    height: 2px;
    background-color: currentColor;
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
    .header__nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--overlay);
        backdrop-filter: blur(8px);
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        z-index: 99;
    }
    .header__nav.is-active {
        transform: translateX(0);
    }
    .nav__list {
        flex-direction: column;
        align-items: center;
        gap: calc(var(--gap) * 3);
    }
    .nav__link {
        font-size: calc(var(--font-size-base) * 1.2);
        padding: var(--radius-md) var(--radius-lg);
    }
    .btn-burger {
        display: flex;
        z-index: 101;
    }
    .btn-burger[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    .btn-burger[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }
    .btn-burger[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}

.footer-container {
        background-color: #f8f9fa;
        color: #333;
        padding: 3rem 1.5rem 1.5rem;
        border-top: 1px solid #dee2e6;
        font-family: sans-serif;
        font-size: 0.95rem;
        line-height: 1.6;
    }
    .footer-content {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        gap: 3rem;
        justify-content: space-between;
    }
    .footer-left {
        flex: 1;
        min-width: 250px;
    }
    .brand-logo {
        font-size: 2rem;
        font-weight: 800;
        letter-spacing: 1px;
        color: #2c3e50;
        margin-bottom: 1rem;
    }
    .copyright {
        color: #6c757d;
        margin-top: 1rem;
    }
    .footer-right {
        flex: 2;
        min-width: 300px;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #2c3e50;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-legal {
        color: #6c757d;
    }
    .footer-legal a {
        color: #495057;
        text-decoration: none;
    }
    .footer-legal a:hover {
        text-decoration: underline;
    }
    .footer-contacts {
        color: #495057;
    }
    .footer-contacts p {
        margin: 0.3rem 0;
    }
    .footer-contacts a {
        color: #007bff;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .footer-disclaimer {
        font-size: 0.85rem;
        color: #6c757d;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid #e9ecef;
        font-style: italic;
    }
    @media (max-width: 768px) {
        .footer-content {
            flex-direction: column;
            gap: 2rem;
        }
        .footer-nav ul {
            flex-direction: column;
            gap: 1rem;
        }
    }

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

    .nfcookie-v12__shell {
        max-width: 720px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
    }

    .nfcookie-v12__meta {display: flex; align-items: center; gap: 8px;}

    .nfcookie-v12__shell p {margin: 8px 0 0; color: var(--fg-on-surface-light);}

    .nfcookie-v12__actions {margin-top: 14px; display: flex; gap: 8px; flex-wrap: wrap;}

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

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

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

.index-recommendations-split {
        background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.75), transparent 60%),
        linear-gradient(135deg, rgba(212, 165, 165, 0.45), rgba(248, 225, 231, 0.95));
        color: var(--fg-on-page);
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 40px);
        overflow: hidden;
    }

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

    .index-recommendations-split__h {
        text-align: center;
        margin-bottom: clamp(24px, 6vw, 52px);

        transform: translateY(-18px);
    }

    .index-recommendations-split__h h2 {
        margin: 0 0 10px;
        font-size: clamp(28px, 4.6vw, 48px);
        letter-spacing: -0.02em;
    }

    .index-recommendations-split__h p {
        margin: 0;
        color: rgba(58, 46, 61, 0.75);
    }

    .index-recommendations-split__grid {
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        gap: clamp(14px, 2.6vw, 22px);
    }

    .index-recommendations-split__card {
        grid-column: span 6;
        border-radius: var(--radius-xl);
        overflow: hidden;
        box-shadow: var(--shadow-lg);
        background: rgba(255, 255, 255, 0.65);
        border: 1px solid rgba(58, 46, 61, 0.12);
        display: grid;
        grid-template-rows: 170px 1fr;

        transform: translateY(26px);
        backdrop-filter: blur(10px);
    }

    .index-recommendations-split__card:nth-child(1) {
        grid-column: span 12;
        grid-template-columns: 1.2fr 1fr;
        grid-template-rows: 1fr;
        min-height: 320px;
    }

    .index-recommendations-split__media {
        position: relative;
        background-size: cover;
        background-position: center;
        background-color: rgba(58, 46, 61, 0.08);
    }

    .index-recommendations-split__card:nth-child(1) .index-recommendations-split__media {
        border-right: 1px solid rgba(58, 46, 61, 0.12);
    }

    .index-recommendations-split__media::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
        pointer-events: none;
    }

    .index-recommendations-split__pill {
        position: absolute;
        left: 14px;
        top: 14px;
        padding: 7px 10px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.78);
        border: 1px solid rgba(58, 46, 61, 0.14);
        color: var(--fg-on-page);
        font-size: 10px;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        z-index: 1;
    }

    .index-recommendations-split__body {
        padding: 18px 18px 16px;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .index-recommendations-split__icon {
        width: 44px;
        height: 44px;
        border-radius: 16px;
        background: var(--bg-accent);
        border: 1px solid var(--border-on-surface);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
    }

    .index-recommendations-split__body h3 {
        margin: 0;
        font-size: 18px;
        font-weight: 900;
        letter-spacing: -0.01em;
        color: var(--fg-on-page);
    }

    .index-recommendations-split__body p {
        margin: 0;
        color: rgba(58, 46, 61, 0.84);
        font-size: 14px;
        line-height: 1.65;
    }

    .index-recommendations-split__link {
        margin-top: auto;
        color: var(--link);
        text-decoration: none;
        font-weight: 800;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        font-size: 11px;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

    .index-recommendations-split__link::after {
        content: '->';
    }

    .index-recommendations-split__link:hover {
        color: var(--link-hover);
    }

    @media (max-width: 900px) {
        .index-recommendations-split__grid {
            grid-template-columns: repeat(6, 1fr);
        }

        .index-recommendations-split__card {
            grid-column: span 6;
        }

        .index-recommendations-split__card:nth-child(1) {
            grid-template-columns: 1fr;
            grid-template-rows: 200px 1fr;
            min-height: 0;
        }

        .index-recommendations-split__card:nth-child(1) .index-recommendations-split__media {
            border-right: 0;
            border-bottom: 1px solid rgba(58, 46, 61, 0.12);
        }
    }

.header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}
.header__container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}
.header__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);
}
.header__logo:hover,
.header__logo:focus-visible {
    color: var(--accent);
    outline: none;
}
.header__nav {
    flex: 1;
    display: flex;
    justify-content: center;
}
.nav__list {
    display: flex;
    gap: calc(var(--gap) * 2);
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav__link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: var(--radius-sm) var(--radius-md);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.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;
}
.nav__link[aria-current="page"] {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
}
.header__actions {
    display: flex;
    align-items: center;
    gap: var(--gap);
}
.btn-search,
.btn-burger {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--fg-on-surface);
    padding: var(--radius-sm);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.btn-search:hover,
.btn-search:focus-visible,
.btn-burger:hover,
.btn-burger:focus-visible {
    background-color: var(--btn-ghost-bg-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}
.icon-search {
    display: block;
}
.btn-burger {
    display: none;
    flex-direction: column;
    gap: 4px;
    width: 44px;
    height: 44px;
}
.burger-line {
    display: block;
    width: 22px;
    height: 2px;
    background-color: currentColor;
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
    .header__nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--overlay);
        backdrop-filter: blur(8px);
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        z-index: 99;
    }
    .header__nav.is-active {
        transform: translateX(0);
    }
    .nav__list {
        flex-direction: column;
        align-items: center;
        gap: calc(var(--gap) * 3);
    }
    .nav__link {
        font-size: calc(var(--font-size-base) * 1.2);
        padding: var(--radius-md) var(--radius-lg);
    }
    .btn-burger {
        display: flex;
        z-index: 101;
    }
    .btn-burger[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    .btn-burger[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }
    .btn-burger[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}

.footer-container {
        background-color: #f8f9fa;
        color: #333;
        padding: 3rem 1.5rem 1.5rem;
        border-top: 1px solid #dee2e6;
        font-family: sans-serif;
        font-size: 0.95rem;
        line-height: 1.6;
    }
    .footer-content {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        gap: 3rem;
        justify-content: space-between;
    }
    .footer-left {
        flex: 1;
        min-width: 250px;
    }
    .brand-logo {
        font-size: 2rem;
        font-weight: 800;
        letter-spacing: 1px;
        color: #2c3e50;
        margin-bottom: 1rem;
    }
    .copyright {
        color: #6c757d;
        margin-top: 1rem;
    }
    .footer-right {
        flex: 2;
        min-width: 300px;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #2c3e50;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-legal {
        color: #6c757d;
    }
    .footer-legal a {
        color: #495057;
        text-decoration: none;
    }
    .footer-legal a:hover {
        text-decoration: underline;
    }
    .footer-contacts {
        color: #495057;
    }
    .footer-contacts p {
        margin: 0.3rem 0;
    }
    .footer-contacts a {
        color: #007bff;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .footer-disclaimer {
        font-size: 0.85rem;
        color: #6c757d;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid #e9ecef;
        font-style: italic;
    }
    @media (max-width: 768px) {
        .footer-content {
            flex-direction: column;
            gap: 2rem;
        }
        .footer-nav ul {
            flex-direction: column;
            gap: 1rem;
        }
    }

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

    .nfcookie-v12__shell {
        max-width: 720px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
    }

    .nfcookie-v12__meta {display: flex; align-items: center; gap: 8px;}

    .nfcookie-v12__shell p {margin: 8px 0 0; color: var(--fg-on-surface-light);}

    .nfcookie-v12__actions {margin-top: 14px; display: flex; gap: 8px; flex-wrap: wrap;}

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

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

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

    .nfform-v10__form {
        max-width: 760px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        padding: 16px;
        display: grid;
        gap: 10px;
    }

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

    .nfform-v10 p {
        margin: 0;
        color: var(--neutral-600);
    }

    .nfform-v10__steps {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .nfform-v10__steps span {
        padding: 4px 8px;
        border-radius: var(--radius-sm);
        background: var(--surface-2);
        border: 1px solid var(--border-on-surface);
        color: var(--neutral-600);
        font-size: .85rem;
    }

    .nfform-v10 label {
        display: grid;
        gap: 6px;
    }

    .nfform-v10 label strong {
        color: var(--neutral-800);
        font-size: .9rem;
    }

    .nfform-v10 input {
        width: 100%;
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 9px;
        font: inherit;
    }

    .nfform-v10 button {
        justify-self: start;
        border: 0;
        border-radius: var(--radius-sm);
        padding: 10px 14px;
        background: var(--gradient-accent);
        color: var(--accent-contrast);
        font-weight: 700;
    }

.contacts-fresh-v4 {
        padding: calc(var(--space-y) * 2.6) var(--space-x);
        background: var(--gradient-hero);
        color: var(--brand-contrast);
    }

    .contacts-fresh-v4 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
    }

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

    .contacts-fresh-v4 .grid {
        display: grid;
        grid-template-columns:repeat(2, minmax(0, 1fr));
        gap: var(--gap);
    }

    .contacts-fresh-v4 article {
        background: var(--chip-bg);
        border: 1px solid var(--btn-ghost-bg-hover);
        padding: 1rem;
        border-radius: var(--radius-lg);
    }

    .contacts-fresh-v4 .tag {
        margin: 0;
        font-size: .86rem;
        opacity: .9;
    }

    .contacts-fresh-v4 .value {
        margin: .45rem 0 .8rem;
        font-size: 1.1rem;
        font-weight: 700;
    }

    .contacts-fresh-v4 a {
        color: var(--brand-contrast);
        text-decoration: underline;
    }

    @media (max-width: 760px) {
        .contacts-fresh-v4 .grid {
            grid-template-columns:1fr;
        }
    }

.header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}
.header__container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}
.header__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);
}
.header__logo:hover,
.header__logo:focus-visible {
    color: var(--accent);
    outline: none;
}
.header__nav {
    flex: 1;
    display: flex;
    justify-content: center;
}
.nav__list {
    display: flex;
    gap: calc(var(--gap) * 2);
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav__link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: var(--radius-sm) var(--radius-md);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.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;
}
.nav__link[aria-current="page"] {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
}
.header__actions {
    display: flex;
    align-items: center;
    gap: var(--gap);
}
.btn-search,
.btn-burger {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--fg-on-surface);
    padding: var(--radius-sm);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.btn-search:hover,
.btn-search:focus-visible,
.btn-burger:hover,
.btn-burger:focus-visible {
    background-color: var(--btn-ghost-bg-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}
.icon-search {
    display: block;
}
.btn-burger {
    display: none;
    flex-direction: column;
    gap: 4px;
    width: 44px;
    height: 44px;
}
.burger-line {
    display: block;
    width: 22px;
    height: 2px;
    background-color: currentColor;
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
    .header__nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--overlay);
        backdrop-filter: blur(8px);
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        z-index: 99;
    }
    .header__nav.is-active {
        transform: translateX(0);
    }
    .nav__list {
        flex-direction: column;
        align-items: center;
        gap: calc(var(--gap) * 3);
    }
    .nav__link {
        font-size: calc(var(--font-size-base) * 1.2);
        padding: var(--radius-md) var(--radius-lg);
    }
    .btn-burger {
        display: flex;
        z-index: 101;
    }
    .btn-burger[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    .btn-burger[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }
    .btn-burger[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}

.footer-container {
        background-color: #f8f9fa;
        color: #333;
        padding: 3rem 1.5rem 1.5rem;
        border-top: 1px solid #dee2e6;
        font-family: sans-serif;
        font-size: 0.95rem;
        line-height: 1.6;
    }
    .footer-content {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        gap: 3rem;
        justify-content: space-between;
    }
    .footer-left {
        flex: 1;
        min-width: 250px;
    }
    .brand-logo {
        font-size: 2rem;
        font-weight: 800;
        letter-spacing: 1px;
        color: #2c3e50;
        margin-bottom: 1rem;
    }
    .copyright {
        color: #6c757d;
        margin-top: 1rem;
    }
    .footer-right {
        flex: 2;
        min-width: 300px;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #2c3e50;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-legal {
        color: #6c757d;
    }
    .footer-legal a {
        color: #495057;
        text-decoration: none;
    }
    .footer-legal a:hover {
        text-decoration: underline;
    }
    .footer-contacts {
        color: #495057;
    }
    .footer-contacts p {
        margin: 0.3rem 0;
    }
    .footer-contacts a {
        color: #007bff;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .footer-disclaimer {
        font-size: 0.85rem;
        color: #6c757d;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid #e9ecef;
        font-style: italic;
    }
    @media (max-width: 768px) {
        .footer-content {
            flex-direction: column;
            gap: 2rem;
        }
        .footer-nav ul {
            flex-direction: column;
            gap: 1rem;
        }
    }

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

    .nfcookie-v12__shell {
        max-width: 720px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
    }

    .nfcookie-v12__meta {display: flex; align-items: center; gap: 8px;}

    .nfcookie-v12__shell p {margin: 8px 0 0; color: var(--fg-on-surface-light);}

    .nfcookie-v12__actions {margin-top: 14px; display: flex; gap: 8px; flex-wrap: wrap;}

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

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

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

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

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

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

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

    .terms-layout-a article {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        padding: var(--space-y) var(--space-x);
        margin-bottom: 12px;
    }

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

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

.header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}
.header__container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}
.header__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);
}
.header__logo:hover,
.header__logo:focus-visible {
    color: var(--accent);
    outline: none;
}
.header__nav {
    flex: 1;
    display: flex;
    justify-content: center;
}
.nav__list {
    display: flex;
    gap: calc(var(--gap) * 2);
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav__link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: var(--radius-sm) var(--radius-md);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.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;
}
.nav__link[aria-current="page"] {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
}
.header__actions {
    display: flex;
    align-items: center;
    gap: var(--gap);
}
.btn-search,
.btn-burger {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--fg-on-surface);
    padding: var(--radius-sm);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.btn-search:hover,
.btn-search:focus-visible,
.btn-burger:hover,
.btn-burger:focus-visible {
    background-color: var(--btn-ghost-bg-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}
.icon-search {
    display: block;
}
.btn-burger {
    display: none;
    flex-direction: column;
    gap: 4px;
    width: 44px;
    height: 44px;
}
.burger-line {
    display: block;
    width: 22px;
    height: 2px;
    background-color: currentColor;
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
    .header__nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--overlay);
        backdrop-filter: blur(8px);
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        z-index: 99;
    }
    .header__nav.is-active {
        transform: translateX(0);
    }
    .nav__list {
        flex-direction: column;
        align-items: center;
        gap: calc(var(--gap) * 3);
    }
    .nav__link {
        font-size: calc(var(--font-size-base) * 1.2);
        padding: var(--radius-md) var(--radius-lg);
    }
    .btn-burger {
        display: flex;
        z-index: 101;
    }
    .btn-burger[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    .btn-burger[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }
    .btn-burger[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}

.footer-container {
        background-color: #f8f9fa;
        color: #333;
        padding: 3rem 1.5rem 1.5rem;
        border-top: 1px solid #dee2e6;
        font-family: sans-serif;
        font-size: 0.95rem;
        line-height: 1.6;
    }
    .footer-content {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        gap: 3rem;
        justify-content: space-between;
    }
    .footer-left {
        flex: 1;
        min-width: 250px;
    }
    .brand-logo {
        font-size: 2rem;
        font-weight: 800;
        letter-spacing: 1px;
        color: #2c3e50;
        margin-bottom: 1rem;
    }
    .copyright {
        color: #6c757d;
        margin-top: 1rem;
    }
    .footer-right {
        flex: 2;
        min-width: 300px;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #2c3e50;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-legal {
        color: #6c757d;
    }
    .footer-legal a {
        color: #495057;
        text-decoration: none;
    }
    .footer-legal a:hover {
        text-decoration: underline;
    }
    .footer-contacts {
        color: #495057;
    }
    .footer-contacts p {
        margin: 0.3rem 0;
    }
    .footer-contacts a {
        color: #007bff;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .footer-disclaimer {
        font-size: 0.85rem;
        color: #6c757d;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid #e9ecef;
        font-style: italic;
    }
    @media (max-width: 768px) {
        .footer-content {
            flex-direction: column;
            gap: 2rem;
        }
        .footer-nav ul {
            flex-direction: column;
            gap: 1rem;
        }
    }

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

    .nfcookie-v12__shell {
        max-width: 720px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
    }

    .nfcookie-v12__meta {display: flex; align-items: center; gap: 8px;}

    .nfcookie-v12__shell p {margin: 8px 0 0; color: var(--fg-on-surface-light);}

    .nfcookie-v12__actions {margin-top: 14px; display: flex; gap: 8px; flex-wrap: wrap;}

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

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

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

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

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

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

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

    .policy-layout-e .columns {
        columns: 2 260px;
        column-gap: 14px;
    }

    .policy-layout-e article {
        break-inside: avoid;
        margin-bottom: 12px;
        border-radius: var(--radius-md);
        border: 1px solid rgba(255, 255, 255, .22);
        padding: 12px;
        background: rgba(255, 255, 255, .05);
    }

    .policy-layout-e h3 {
        margin: 0;
    }

    .policy-layout-e .meta {
        margin: 7px 0 0;
        color: var(--neutral-100);
    }

    .policy-layout-e article p:last-child {
        margin: 7px 0 0;
        color: var(--neutral-100);
    }

.header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}
.header__container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}
.header__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);
}
.header__logo:hover,
.header__logo:focus-visible {
    color: var(--accent);
    outline: none;
}
.header__nav {
    flex: 1;
    display: flex;
    justify-content: center;
}
.nav__list {
    display: flex;
    gap: calc(var(--gap) * 2);
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav__link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: var(--radius-sm) var(--radius-md);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.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;
}
.nav__link[aria-current="page"] {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
}
.header__actions {
    display: flex;
    align-items: center;
    gap: var(--gap);
}
.btn-search,
.btn-burger {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--fg-on-surface);
    padding: var(--radius-sm);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.btn-search:hover,
.btn-search:focus-visible,
.btn-burger:hover,
.btn-burger:focus-visible {
    background-color: var(--btn-ghost-bg-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}
.icon-search {
    display: block;
}
.btn-burger {
    display: none;
    flex-direction: column;
    gap: 4px;
    width: 44px;
    height: 44px;
}
.burger-line {
    display: block;
    width: 22px;
    height: 2px;
    background-color: currentColor;
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
    .header__nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--overlay);
        backdrop-filter: blur(8px);
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        z-index: 99;
    }
    .header__nav.is-active {
        transform: translateX(0);
    }
    .nav__list {
        flex-direction: column;
        align-items: center;
        gap: calc(var(--gap) * 3);
    }
    .nav__link {
        font-size: calc(var(--font-size-base) * 1.2);
        padding: var(--radius-md) var(--radius-lg);
    }
    .btn-burger {
        display: flex;
        z-index: 101;
    }
    .btn-burger[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    .btn-burger[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }
    .btn-burger[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}

.footer-container {
        background-color: #f8f9fa;
        color: #333;
        padding: 3rem 1.5rem 1.5rem;
        border-top: 1px solid #dee2e6;
        font-family: sans-serif;
        font-size: 0.95rem;
        line-height: 1.6;
    }
    .footer-content {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        gap: 3rem;
        justify-content: space-between;
    }
    .footer-left {
        flex: 1;
        min-width: 250px;
    }
    .brand-logo {
        font-size: 2rem;
        font-weight: 800;
        letter-spacing: 1px;
        color: #2c3e50;
        margin-bottom: 1rem;
    }
    .copyright {
        color: #6c757d;
        margin-top: 1rem;
    }
    .footer-right {
        flex: 2;
        min-width: 300px;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #2c3e50;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-legal {
        color: #6c757d;
    }
    .footer-legal a {
        color: #495057;
        text-decoration: none;
    }
    .footer-legal a:hover {
        text-decoration: underline;
    }
    .footer-contacts {
        color: #495057;
    }
    .footer-contacts p {
        margin: 0.3rem 0;
    }
    .footer-contacts a {
        color: #007bff;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .footer-disclaimer {
        font-size: 0.85rem;
        color: #6c757d;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid #e9ecef;
        font-style: italic;
    }
    @media (max-width: 768px) {
        .footer-content {
            flex-direction: column;
            gap: 2rem;
        }
        .footer-nav ul {
            flex-direction: column;
            gap: 1rem;
        }
    }

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

    .nfcookie-v12__shell {
        max-width: 720px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
    }

    .nfcookie-v12__meta {display: flex; align-items: center; gap: 8px;}

    .nfcookie-v12__shell p {margin: 8px 0 0; color: var(--fg-on-surface-light);}

    .nfcookie-v12__actions {margin-top: 14px; display: flex; gap: 8px; flex-wrap: wrap;}

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

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

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

    .thank-mode-a .box {
        max-width: 720px;
        margin: 0 auto;
        text-align: center;
    }

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

    .thank-mode-a p {
        margin: 12px 0 0;
        opacity: .92;
    }

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

.header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}
.header__container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}
.header__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);
}
.header__logo:hover,
.header__logo:focus-visible {
    color: var(--accent);
    outline: none;
}
.header__nav {
    flex: 1;
    display: flex;
    justify-content: center;
}
.nav__list {
    display: flex;
    gap: calc(var(--gap) * 2);
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav__link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: var(--radius-sm) var(--radius-md);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.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;
}
.nav__link[aria-current="page"] {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
}
.header__actions {
    display: flex;
    align-items: center;
    gap: var(--gap);
}
.btn-search,
.btn-burger {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--fg-on-surface);
    padding: var(--radius-sm);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.btn-search:hover,
.btn-search:focus-visible,
.btn-burger:hover,
.btn-burger:focus-visible {
    background-color: var(--btn-ghost-bg-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}
.icon-search {
    display: block;
}
.btn-burger {
    display: none;
    flex-direction: column;
    gap: 4px;
    width: 44px;
    height: 44px;
}
.burger-line {
    display: block;
    width: 22px;
    height: 2px;
    background-color: currentColor;
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
    .header__nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--overlay);
        backdrop-filter: blur(8px);
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        z-index: 99;
    }
    .header__nav.is-active {
        transform: translateX(0);
    }
    .nav__list {
        flex-direction: column;
        align-items: center;
        gap: calc(var(--gap) * 3);
    }
    .nav__link {
        font-size: calc(var(--font-size-base) * 1.2);
        padding: var(--radius-md) var(--radius-lg);
    }
    .btn-burger {
        display: flex;
        z-index: 101;
    }
    .btn-burger[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    .btn-burger[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }
    .btn-burger[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}

.footer-container {
        background-color: #f8f9fa;
        color: #333;
        padding: 3rem 1.5rem 1.5rem;
        border-top: 1px solid #dee2e6;
        font-family: sans-serif;
        font-size: 0.95rem;
        line-height: 1.6;
    }
    .footer-content {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        gap: 3rem;
        justify-content: space-between;
    }
    .footer-left {
        flex: 1;
        min-width: 250px;
    }
    .brand-logo {
        font-size: 2rem;
        font-weight: 800;
        letter-spacing: 1px;
        color: #2c3e50;
        margin-bottom: 1rem;
    }
    .copyright {
        color: #6c757d;
        margin-top: 1rem;
    }
    .footer-right {
        flex: 2;
        min-width: 300px;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #2c3e50;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-legal {
        color: #6c757d;
    }
    .footer-legal a {
        color: #495057;
        text-decoration: none;
    }
    .footer-legal a:hover {
        text-decoration: underline;
    }
    .footer-contacts {
        color: #495057;
    }
    .footer-contacts p {
        margin: 0.3rem 0;
    }
    .footer-contacts a {
        color: #007bff;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .footer-disclaimer {
        font-size: 0.85rem;
        color: #6c757d;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid #e9ecef;
        font-style: italic;
    }
    @media (max-width: 768px) {
        .footer-content {
            flex-direction: column;
            gap: 2rem;
        }
        .footer-nav ul {
            flex-direction: column;
            gap: 1rem;
        }
    }

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

    .nfcookie-v12__shell {
        max-width: 720px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
    }

    .nfcookie-v12__meta {display: flex; align-items: center; gap: 8px;}

    .nfcookie-v12__shell p {margin: 8px 0 0; color: var(--fg-on-surface-light);}

    .nfcookie-v12__actions {margin-top: 14px; display: flex; gap: 8px; flex-wrap: wrap;}

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

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

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

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

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

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

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