:root {
  --font-family: "DM Sans", sans-serif;
  --font-size-base: 13.4px;
  --line-height-base: 1.25;

  --max-w: 1120px;
  --space-x: 0.55rem;
  --space-y: 0.59rem;
  --gap: 0.69rem;

  --radius-xl: 0.97rem;
  --radius-lg: 0.58rem;
  --radius-md: 0.3rem;
  --radius-sm: 0.21rem;

  --shadow-sm: 0 0px 4px rgba(0,0,0,0.1);
  --shadow-md: 0 5px 14px rgba(0,0,0,0.13);
  --shadow-lg: 0 6px 16px rgba(0,0,0,0.15);

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

  --brand: #0056D2;
  --brand-contrast: #FFFFFF;
  --accent: #00A86B;
  --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: rgba(255, 255, 255, 0.85);
  --fg-on-surface-light: #212529;
  --border-on-surface-light: rgba(222, 226, 230, 0.7);

  --bg-primary: #0056D2;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #0044A8;
  --ring: rgba(0, 86, 210, 0.3);

  --bg-accent: #E8F7F1;
  --fg-on-accent: #005C3A;
  --bg-accent-hover: #008F5A;

  --link: #0056D2;
  --link-hover: #0044A8;

  --gradient-hero: linear-gradient(135deg, #0056D2 0%, #003A8F 100%);
  --gradient-accent: linear-gradient(135deg, #00A86B 0%, #008F5A 100%);

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

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

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

.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 {
    color: var(--link-hover);
}

.header-nav {
    display: flex;
    align-items: center;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(var(--gap) * 2);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--gap);
}
.btn-search, .btn-menu {
    background: var(--btn-ghost-bg);
    border: 1px solid var(--border-on-surface-light);
    border-radius: var(--radius-md);
    color: var(--fg-on-surface);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--space-y) / 1.5) calc(var(--space-x) / 1.5);
    transition: all var(--anim-duration) var(--anim-ease);
}
.btn-search:hover, .btn-menu:hover {
    background-color: var(--btn-ghost-bg-hover);
    border-color: var(--brand);
}
.btn-search svg {
    display: block;
}
.btn-menu {
    display: none;
}
.menu-icon {
    display: block;
    width: 20px;
    height: 2px;
    background-color: currentColor;
    position: relative;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.menu-icon::before,
.menu-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: currentColor;
    left: 0;
    transition: transform var(--anim-duration) var(--anim-ease);
}
.menu-icon::before {
    top: -6px;
}
.menu-icon::after {
    bottom: -6px;
}
.btn-menu[aria-expanded="true"] .menu-icon {
    background-color: transparent;
}
.btn-menu[aria-expanded="true"] .menu-icon::before {
    transform: translateY(6px) rotate(45deg);
}
.btn-menu[aria-expanded="true"] .menu-icon::after {
    transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 767px) {
    .btn-menu {
        display: flex;
    }
    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 101;
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
    }
    .header-nav.active {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        margin-top: calc(var(--space-y) * 3);
    }
    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-lg);
    }
    .header-container {
        position: relative;
    }
}

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #dee2e6;
        color: #333;
        font-family: sans-serif;
        padding: 2.5rem 1rem;
        margin-top: 3rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    .footer-section {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 1.5rem 2.5rem;
    }
    .footer-logo {
        font-size: 1.5rem;
        font-weight: bold;
        color: #2c3e50;
    }
    .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: #495057;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #007bff;
    }
    .footer-contacts {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem 1.5rem;
        font-style: normal;
        line-height: 1.5;
    }
    .footer-contacts address {
        display: inline;
    }
    .footer-contacts a {
        color: #0066cc;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .footer-social {
        display: flex;
        gap: 1.2rem;
    }
    .footer-social a {
        color: #555;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .footer-social a:hover {
        color: #007bff;
    }
    .legal-links {
        font-size: 0.85rem;
        border-top: 1px solid #eee;
        border-bottom: 1px solid #eee;
        padding: 1rem 0;
    }
    .legal-links a {
        color: #666;
        text-decoration: none;
    }
    .legal-links a:hover {
        text-decoration: underline;
        color: #333;
    }
    .footer-disclaimer {
        text-align: center;
        font-size: 0.75rem;
        color: #6c757d;
        line-height: 1.4;
        max-width: 800px;
        margin: 0 auto;
        padding-top: 1rem;
    }
    @media (max-width: 768px) {
        .footer-section {
            flex-direction: column;
            gap: 1.2rem;
            text-align: center;
        }
        .footer-nav ul {
            justify-content: center;
        }
        .footer-contacts {
            flex-direction: column;
            gap: 0.5rem;
        }
        .legal-links {
            flex-direction: column;
            gap: 0.7rem;
        }
    }

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

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

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

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

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

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

.hero-arc-v2 {
        padding: calc(var(--space-y) * 2.6) var(--space-x) 0;
        background: var(--bg-page);
        color: var(--fg-on-page);
    }

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

    .hero-arc-v2 h1 {
        margin: 0;
        font-size: clamp(2rem, 4.2vw, 3.4rem);
        line-height: 1.08;
        max-width: 18ch;
    }

    .hero-arc-v2 .subtitle {
        margin: 0;
        max-width: 58ch;
        color: var(--fg-on-surface-light);
    }

    .hero-arc-v2 .split {
        display: grid;
        grid-template-columns:1.1fr .9fr;
        gap: calc(var(--gap) * 1.4);
        align-items: start;
    }

    .hero-arc-v2 .desc {
        margin: 0;
        max-width: 60ch;
    }

    .hero-arc-v2 .actions {
        display: grid;
        gap: .7rem;
        justify-items: start;
    }

    .hero-arc-v2 .actions a {
        display: inline-flex;
        padding: .66rem 1.1rem;
        border-radius: var(--radius-lg);
        text-decoration: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 700;
    }

    .hero-arc-v2 .actions a:nth-child(even) {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

    .hero-arc-v2 .media {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        padding: var(--gap);
        background: var(--surface-2);
        box-shadow: var(--shadow-sm);
    }

    .hero-arc-v2 .media img {
        width: 100%;
        display: block;
        border-radius: var(--radius-lg);
        aspect-ratio: 16/9;
        object-fit: cover;
    }

    .hero-arc-v2 .rail {
        margin-top: calc(var(--space-y) * 1.4);
        background: var(--surface-2);
        border-top: 1px solid var(--border-on-surface);
        display: grid;
        grid-template-columns:repeat(4, minmax(0, 1fr));
        gap: 1px;
    }

    .hero-arc-v2 .rail div {
        padding: 1rem var(--space-x);
        background: var(--surface-1);
        display: grid;
        gap: .3rem;
    }

    .hero-arc-v2 em {
        font-style: normal;
        color: var(--fg-on-surface-light);
        font-size: .88rem;
    }

    .hero-arc-v2 strong {
        font-size: 1.05rem;
    }

    @media (max-width: 900px) {
        .hero-arc-v2 .split {
            grid-template-columns:1fr;
        }

        .hero-arc-v2 .rail {
            grid-template-columns:repeat(2, minmax(0, 1fr));
        }
    }

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

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

    .values-beads-c3__head {
        margin-bottom: 1.1rem;
    }

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

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

    .values-beads-c3__head span {
        display: block;
        margin-top: .8rem;

    }

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

    .values-beads-c3__grid article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: rgba(255, 255, 255, .14);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .values-beads-c3__top {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .values-beads-c3__top i {
        font-style: normal;
    }

    .values-beads-c3__top strong {
        color: var(--bg-accent);
    }

    .values-beads-c3__grid h3 {
        margin: .75rem 0 .35rem;
    }

    .values-beads-c3__grid p {
        margin: 0;

    }

    .values-beads-c3__grid small {
        display: block;
        margin-top: .55rem;
        color: rgba(255, 255, 255, .76);
    }

.bloglist-fresh-v3 {
        padding: calc(var(--space-y) * 2.8) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-surface);
    }

    .bloglist-fresh-v3 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: 1rem;
    }

    .bloglist-fresh-v3 .cards {
        display: grid;
        grid-template-columns:repeat(4, minmax(0, 1fr));
        gap: var(--gap);
    }

    .bloglist-fresh-v3 article {
        display: grid;
        gap: .55rem;
        padding: .8rem;
        border-radius: var(--radius-md);
        border: 1px solid var(--border-on-surface);
        background: var(--surface-2);
    }

    .bloglist-fresh-v3 img {
        width: 100%;
        aspect-ratio: 4/3;
        border-radius: var(--radius-sm);
        object-fit: cover;
    }

    .bloglist-fresh-v3 h3 {
        margin: 0;
        font-size: 1.03rem;
    }

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

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

    .bloglist-fresh-v3 .more {
        color: var(--link);
        font-weight: 700;
        text-decoration: none;
    }

    @media (max-width: 1000px) {
        .bloglist-fresh-v3 .cards {
            grid-template-columns:repeat(2, minmax(0, 1fr));
        }
    }

    @media (max-width: 620px) {
        .bloglist-fresh-v3 .cards {
            grid-template-columns:1fr;
        }
    }

.why-choose-alt {

        background: var(--gradient-accent);
        color: var(--fg-on-primary);
        padding: clamp(40px, 6vw, 80px) clamp(16px, 3vw, 40px);
        position: relative;
        overflow: hidden;
    }

    .why-choose-alt::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);

        animation: backgroundPulse 4s ease-in-out infinite;
    }

    @keyframes backgroundPulse {
        0%, 100% {

            transform: scale(1);
        }
        50% {
            opacity: 1;
            transform: scale(1.1);
        }
    }

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

    .why-choose-alt .why-choose-alt__h {
        color: var(--fg-on-surface-light);
        text-align: center;
        margin-bottom: clamp(32px, 5vw, 64px);

    }

    .why-choose-alt h2 {
        font-size: clamp(32px, 5vw, 48px);
        margin: 0 0 1rem;
        color: var(--fg-on-surface-light);
    }

    .why-choose-alt .why-choose-alt__subtitle {
        font-size: clamp(16px, 2vw, 20px);
        margin: 0;
        opacity: 0.9;
    }

    .why-choose-alt .why-choose-alt__list {
        display: flex;
        flex-direction: column;
        gap: clamp(16px, 2vw, 24px);
    }

    .why-choose-alt .why-choose-alt__item {
        display: flex;
        gap: clamp(16px, 2vw, 24px);
        background: var(--surface-light);
        padding: clamp(20px, 3vw, 32px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface-light);
        align-items: flex-start;

        position: relative;
        overflow: hidden;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .why-choose-alt .why-choose-alt__item::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.6s ease;
    }

    .why-choose-alt .why-choose-alt__item:hover {
        transform: translateX(8px);
        box-shadow: -8px 8px 24px rgba(0, 0, 0, 0.15);
    }

    .why-choose-alt .why-choose-alt__item:hover::before {
        left: 100%;
    }

    .why-choose-alt .why-choose-alt__number {
        flex-shrink: 0;
        width: 56px;
        height: 56px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-radius: var(--radius-md);
        font-size: clamp(20px, 2.5vw, 28px);
        font-weight: 700;
        position: relative;
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .why-choose-alt .why-choose-alt__item:hover .why-choose-alt__number {
        transform: rotate(360deg) scale(1.1);
    }

    .why-choose-alt .why-choose-alt__number::after {
        content: '';
        position: absolute;
        top: -3px;
        left: -3px;
        right: -3px;
        bottom: -3px;
        border-radius: var(--radius-md);
        border: 2px solid var(--bg-accent);

        animation: numberPulse 2s ease-in-out infinite;
    }

    @keyframes numberPulse {
        0%, 100% {

            transform: scale(1);
        }
        50% {
            opacity: 0.6;
            transform: scale(1.2);
        }
    }

    .why-choose-alt .why-choose-alt__content {
        flex: 1;
    }

    .why-choose-alt .why-choose-alt__item h3 {
        font-size: clamp(18px, 2.2vw, 24px);
        margin: 0 0 0.75rem;
        color: var(--fg-on-surface-light);
        transition: color var(--anim-duration) var(--anim-ease);
    }

    .why-choose-alt .why-choose-alt__item:hover h3 {
        color: var(--bg-accent);
    }

    .why-choose-alt .why-choose-alt__item p {
        margin: 0;
        color: var(--fg-on-surface-light);
        opacity: 0.85;
        line-height: var(--line-height-base);
    }

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

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

.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 {
    color: var(--link-hover);
}

.header-nav {
    display: flex;
    align-items: center;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(var(--gap) * 2);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--gap);
}
.btn-search, .btn-menu {
    background: var(--btn-ghost-bg);
    border: 1px solid var(--border-on-surface-light);
    border-radius: var(--radius-md);
    color: var(--fg-on-surface);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--space-y) / 1.5) calc(var(--space-x) / 1.5);
    transition: all var(--anim-duration) var(--anim-ease);
}
.btn-search:hover, .btn-menu:hover {
    background-color: var(--btn-ghost-bg-hover);
    border-color: var(--brand);
}
.btn-search svg {
    display: block;
}
.btn-menu {
    display: none;
}
.menu-icon {
    display: block;
    width: 20px;
    height: 2px;
    background-color: currentColor;
    position: relative;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.menu-icon::before,
.menu-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: currentColor;
    left: 0;
    transition: transform var(--anim-duration) var(--anim-ease);
}
.menu-icon::before {
    top: -6px;
}
.menu-icon::after {
    bottom: -6px;
}
.btn-menu[aria-expanded="true"] .menu-icon {
    background-color: transparent;
}
.btn-menu[aria-expanded="true"] .menu-icon::before {
    transform: translateY(6px) rotate(45deg);
}
.btn-menu[aria-expanded="true"] .menu-icon::after {
    transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 767px) {
    .btn-menu {
        display: flex;
    }
    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 101;
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
    }
    .header-nav.active {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        margin-top: calc(var(--space-y) * 3);
    }
    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-lg);
    }
    .header-container {
        position: relative;
    }
}

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #dee2e6;
        color: #333;
        font-family: sans-serif;
        padding: 2.5rem 1rem;
        margin-top: 3rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    .footer-section {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 1.5rem 2.5rem;
    }
    .footer-logo {
        font-size: 1.5rem;
        font-weight: bold;
        color: #2c3e50;
    }
    .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: #495057;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #007bff;
    }
    .footer-contacts {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem 1.5rem;
        font-style: normal;
        line-height: 1.5;
    }
    .footer-contacts address {
        display: inline;
    }
    .footer-contacts a {
        color: #0066cc;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .footer-social {
        display: flex;
        gap: 1.2rem;
    }
    .footer-social a {
        color: #555;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .footer-social a:hover {
        color: #007bff;
    }
    .legal-links {
        font-size: 0.85rem;
        border-top: 1px solid #eee;
        border-bottom: 1px solid #eee;
        padding: 1rem 0;
    }
    .legal-links a {
        color: #666;
        text-decoration: none;
    }
    .legal-links a:hover {
        text-decoration: underline;
        color: #333;
    }
    .footer-disclaimer {
        text-align: center;
        font-size: 0.75rem;
        color: #6c757d;
        line-height: 1.4;
        max-width: 800px;
        margin: 0 auto;
        padding-top: 1rem;
    }
    @media (max-width: 768px) {
        .footer-section {
            flex-direction: column;
            gap: 1.2rem;
            text-align: center;
        }
        .footer-nav ul {
            justify-content: center;
        }
        .footer-contacts {
            flex-direction: column;
            gap: 0.5rem;
        }
        .legal-links {
            flex-direction: column;
            gap: 0.7rem;
        }
    }

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

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

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

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

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

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

.bloglist-fresh-v3 {
        padding: calc(var(--space-y) * 2.8) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-surface);
    }

    .bloglist-fresh-v3 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: 1rem;
    }

    .bloglist-fresh-v3 .cards {
        display: grid;
        grid-template-columns:repeat(4, minmax(0, 1fr));
        gap: var(--gap);
    }

    .bloglist-fresh-v3 article {
        display: grid;
        gap: .55rem;
        padding: .8rem;
        border-radius: var(--radius-md);
        border: 1px solid var(--border-on-surface);
        background: var(--surface-2);
    }

    .bloglist-fresh-v3 img {
        width: 100%;
        aspect-ratio: 4/3;
        border-radius: var(--radius-sm);
        object-fit: cover;
    }

    .bloglist-fresh-v3 h3 {
        margin: 0;
        font-size: 1.03rem;
    }

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

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

    .bloglist-fresh-v3 .more {
        color: var(--link);
        font-weight: 700;
        text-decoration: none;
    }

    @media (max-width: 1000px) {
        .bloglist-fresh-v3 .cards {
            grid-template-columns:repeat(2, minmax(0, 1fr));
        }
    }

    @media (max-width: 620px) {
        .bloglist-fresh-v3 .cards {
            grid-template-columns:1fr;
        }
    }

.index-recommendations-light {
        background: var(--bg-page);
        color: var(--fg-on-page);
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 40px);
    }

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

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

        transform: translateY(-18px);
    }

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

    .index-recommendations-light__h p {
        margin: 0;
        color: var(--neutral-600);
    }

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

    .index-recommendations-light__card {
        border-radius: var(--radius-xl);
        background: var(--surface-light);
        border: 1px solid var(--border-on-surface-light);
        box-shadow: var(--shadow-md);
        padding: clamp(18px, 3vw, 26px);

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

    .index-recommendations-light__card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 20% 15%, rgba(248, 225, 231, 0.45), transparent 55%);
        pointer-events: none;
    }

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

    .index-recommendations-light__card p {
        margin: 0 0 14px;
        position: relative;
        z-index: 1;
        color: var(--fg-on-surface-light);
        font-size: 14px;
        line-height: 1.65;
    }

    .index-recommendations-light__cta {
        position: relative;
        z-index: 1;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        text-decoration: none;
        padding: 10px 14px;
        border-radius: 999px;
        background: var(--bg-primary);
        border: 1px solid var(--ring);
        color: var(--fg-on-primary);
        font-weight: 800;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        font-size: 11px;
        transition: transform var(--anim-duration) var(--anim-ease), background var(--anim-duration) var(--anim-ease);
    }

    .index-recommendations-light__cta::after {
        content: '->';
        font-size: 12px;
    }

    .index-recommendations-light__cta:hover {
        background: var(--bg-primary-hover);
        transform: translateY(-2px);
    }

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

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

.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 {
    color: var(--link-hover);
}

.header-nav {
    display: flex;
    align-items: center;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(var(--gap) * 2);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--gap);
}
.btn-search, .btn-menu {
    background: var(--btn-ghost-bg);
    border: 1px solid var(--border-on-surface-light);
    border-radius: var(--radius-md);
    color: var(--fg-on-surface);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--space-y) / 1.5) calc(var(--space-x) / 1.5);
    transition: all var(--anim-duration) var(--anim-ease);
}
.btn-search:hover, .btn-menu:hover {
    background-color: var(--btn-ghost-bg-hover);
    border-color: var(--brand);
}
.btn-search svg {
    display: block;
}
.btn-menu {
    display: none;
}
.menu-icon {
    display: block;
    width: 20px;
    height: 2px;
    background-color: currentColor;
    position: relative;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.menu-icon::before,
.menu-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: currentColor;
    left: 0;
    transition: transform var(--anim-duration) var(--anim-ease);
}
.menu-icon::before {
    top: -6px;
}
.menu-icon::after {
    bottom: -6px;
}
.btn-menu[aria-expanded="true"] .menu-icon {
    background-color: transparent;
}
.btn-menu[aria-expanded="true"] .menu-icon::before {
    transform: translateY(6px) rotate(45deg);
}
.btn-menu[aria-expanded="true"] .menu-icon::after {
    transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 767px) {
    .btn-menu {
        display: flex;
    }
    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 101;
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
    }
    .header-nav.active {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        margin-top: calc(var(--space-y) * 3);
    }
    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-lg);
    }
    .header-container {
        position: relative;
    }
}

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #dee2e6;
        color: #333;
        font-family: sans-serif;
        padding: 2.5rem 1rem;
        margin-top: 3rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    .footer-section {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 1.5rem 2.5rem;
    }
    .footer-logo {
        font-size: 1.5rem;
        font-weight: bold;
        color: #2c3e50;
    }
    .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: #495057;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #007bff;
    }
    .footer-contacts {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem 1.5rem;
        font-style: normal;
        line-height: 1.5;
    }
    .footer-contacts address {
        display: inline;
    }
    .footer-contacts a {
        color: #0066cc;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .footer-social {
        display: flex;
        gap: 1.2rem;
    }
    .footer-social a {
        color: #555;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .footer-social a:hover {
        color: #007bff;
    }
    .legal-links {
        font-size: 0.85rem;
        border-top: 1px solid #eee;
        border-bottom: 1px solid #eee;
        padding: 1rem 0;
    }
    .legal-links a {
        color: #666;
        text-decoration: none;
    }
    .legal-links a:hover {
        text-decoration: underline;
        color: #333;
    }
    .footer-disclaimer {
        text-align: center;
        font-size: 0.75rem;
        color: #6c757d;
        line-height: 1.4;
        max-width: 800px;
        margin: 0 auto;
        padding-top: 1rem;
    }
    @media (max-width: 768px) {
        .footer-section {
            flex-direction: column;
            gap: 1.2rem;
            text-align: center;
        }
        .footer-nav ul {
            justify-content: center;
        }
        .footer-contacts {
            flex-direction: column;
            gap: 0.5rem;
        }
        .legal-links {
            flex-direction: column;
            gap: 0.7rem;
        }
    }

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

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

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

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

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

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

.blogitem-fresh-v3 {
        padding: calc(var(--space-y) * 2.9) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-surface);
    }

    .blogitem-fresh-v3 .shell {
        max-width: 980px;
        margin: 0 auto;
        display: grid;
        gap: 1rem;
    }

    .blogitem-fresh-v3 .meta {
        margin: 0;
        color: var(--fg-on-surface-light);
    }

    .blogitem-fresh-v3 h1 {
        margin: 0;
        font-size: clamp(2rem, 4vw, 3.1rem);
    }

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

    .blogitem-fresh-v3 .lead {
        margin: 0;
        max-width: 72ch;
        color: var(--fg-on-surface-light);
    }

    .blogitem-fresh-v3 .columns {
        columns: 2;
        column-gap: calc(var(--gap) * 1.5);
    }

    .blogitem-fresh-v3 .columns p {
        break-inside: avoid;
        margin: 0 0 .9rem;
    }

    @media (max-width: 780px) {
        .blogitem-fresh-v3 .columns {
            columns: 1;
        }
    }

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

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

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

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

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

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

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

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

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

.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 {
    color: var(--link-hover);
}

.header-nav {
    display: flex;
    align-items: center;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(var(--gap) * 2);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--gap);
}
.btn-search, .btn-menu {
    background: var(--btn-ghost-bg);
    border: 1px solid var(--border-on-surface-light);
    border-radius: var(--radius-md);
    color: var(--fg-on-surface);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--space-y) / 1.5) calc(var(--space-x) / 1.5);
    transition: all var(--anim-duration) var(--anim-ease);
}
.btn-search:hover, .btn-menu:hover {
    background-color: var(--btn-ghost-bg-hover);
    border-color: var(--brand);
}
.btn-search svg {
    display: block;
}
.btn-menu {
    display: none;
}
.menu-icon {
    display: block;
    width: 20px;
    height: 2px;
    background-color: currentColor;
    position: relative;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.menu-icon::before,
.menu-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: currentColor;
    left: 0;
    transition: transform var(--anim-duration) var(--anim-ease);
}
.menu-icon::before {
    top: -6px;
}
.menu-icon::after {
    bottom: -6px;
}
.btn-menu[aria-expanded="true"] .menu-icon {
    background-color: transparent;
}
.btn-menu[aria-expanded="true"] .menu-icon::before {
    transform: translateY(6px) rotate(45deg);
}
.btn-menu[aria-expanded="true"] .menu-icon::after {
    transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 767px) {
    .btn-menu {
        display: flex;
    }
    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 101;
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
    }
    .header-nav.active {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        margin-top: calc(var(--space-y) * 3);
    }
    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-lg);
    }
    .header-container {
        position: relative;
    }
}

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #dee2e6;
        color: #333;
        font-family: sans-serif;
        padding: 2.5rem 1rem;
        margin-top: 3rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    .footer-section {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 1.5rem 2.5rem;
    }
    .footer-logo {
        font-size: 1.5rem;
        font-weight: bold;
        color: #2c3e50;
    }
    .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: #495057;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #007bff;
    }
    .footer-contacts {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem 1.5rem;
        font-style: normal;
        line-height: 1.5;
    }
    .footer-contacts address {
        display: inline;
    }
    .footer-contacts a {
        color: #0066cc;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .footer-social {
        display: flex;
        gap: 1.2rem;
    }
    .footer-social a {
        color: #555;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .footer-social a:hover {
        color: #007bff;
    }
    .legal-links {
        font-size: 0.85rem;
        border-top: 1px solid #eee;
        border-bottom: 1px solid #eee;
        padding: 1rem 0;
    }
    .legal-links a {
        color: #666;
        text-decoration: none;
    }
    .legal-links a:hover {
        text-decoration: underline;
        color: #333;
    }
    .footer-disclaimer {
        text-align: center;
        font-size: 0.75rem;
        color: #6c757d;
        line-height: 1.4;
        max-width: 800px;
        margin: 0 auto;
        padding-top: 1rem;
    }
    @media (max-width: 768px) {
        .footer-section {
            flex-direction: column;
            gap: 1.2rem;
            text-align: center;
        }
        .footer-nav ul {
            justify-content: center;
        }
        .footer-contacts {
            flex-direction: column;
            gap: 0.5rem;
        }
        .legal-links {
            flex-direction: column;
            gap: 0.7rem;
        }
    }

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

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

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

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

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

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

.blogitem-fresh-v6 {
        padding: calc(var(--space-y) * 2.8) var(--space-x);
        background: var(--gradient-hero);
        color: var(--gradient-accent);
    }

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

    .blogitem-fresh-v6 h1 {
        margin: 0;
        font-size: clamp(1.9rem, 3.8vw, 2.8rem);
    }

    .blogitem-fresh-v6 .meta {
        margin: 0;
        color: var(--fg-on-surface-light);
        font-size: .86rem;
    }

    .blogitem-fresh-v6 img {
        width: 100%;
        aspect-ratio: 3/2;
        object-fit: cover;
        border-radius: var(--radius-md);
    }

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

    .blogitem-fresh-v6 .body p {
        margin: 0;
        padding-bottom: .8rem;
        border-bottom: 1px solid var(--border-on-surface);
    }

    .blogitem-fresh-v6 .body p:last-child {
        border-bottom: 0;
        padding-bottom: 0;
    }

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

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

.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 {
    color: var(--link-hover);
}

.header-nav {
    display: flex;
    align-items: center;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(var(--gap) * 2);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--gap);
}
.btn-search, .btn-menu {
    background: var(--btn-ghost-bg);
    border: 1px solid var(--border-on-surface-light);
    border-radius: var(--radius-md);
    color: var(--fg-on-surface);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--space-y) / 1.5) calc(var(--space-x) / 1.5);
    transition: all var(--anim-duration) var(--anim-ease);
}
.btn-search:hover, .btn-menu:hover {
    background-color: var(--btn-ghost-bg-hover);
    border-color: var(--brand);
}
.btn-search svg {
    display: block;
}
.btn-menu {
    display: none;
}
.menu-icon {
    display: block;
    width: 20px;
    height: 2px;
    background-color: currentColor;
    position: relative;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.menu-icon::before,
.menu-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: currentColor;
    left: 0;
    transition: transform var(--anim-duration) var(--anim-ease);
}
.menu-icon::before {
    top: -6px;
}
.menu-icon::after {
    bottom: -6px;
}
.btn-menu[aria-expanded="true"] .menu-icon {
    background-color: transparent;
}
.btn-menu[aria-expanded="true"] .menu-icon::before {
    transform: translateY(6px) rotate(45deg);
}
.btn-menu[aria-expanded="true"] .menu-icon::after {
    transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 767px) {
    .btn-menu {
        display: flex;
    }
    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 101;
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
    }
    .header-nav.active {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        margin-top: calc(var(--space-y) * 3);
    }
    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-lg);
    }
    .header-container {
        position: relative;
    }
}

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #dee2e6;
        color: #333;
        font-family: sans-serif;
        padding: 2.5rem 1rem;
        margin-top: 3rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    .footer-section {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 1.5rem 2.5rem;
    }
    .footer-logo {
        font-size: 1.5rem;
        font-weight: bold;
        color: #2c3e50;
    }
    .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: #495057;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #007bff;
    }
    .footer-contacts {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem 1.5rem;
        font-style: normal;
        line-height: 1.5;
    }
    .footer-contacts address {
        display: inline;
    }
    .footer-contacts a {
        color: #0066cc;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .footer-social {
        display: flex;
        gap: 1.2rem;
    }
    .footer-social a {
        color: #555;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .footer-social a:hover {
        color: #007bff;
    }
    .legal-links {
        font-size: 0.85rem;
        border-top: 1px solid #eee;
        border-bottom: 1px solid #eee;
        padding: 1rem 0;
    }
    .legal-links a {
        color: #666;
        text-decoration: none;
    }
    .legal-links a:hover {
        text-decoration: underline;
        color: #333;
    }
    .footer-disclaimer {
        text-align: center;
        font-size: 0.75rem;
        color: #6c757d;
        line-height: 1.4;
        max-width: 800px;
        margin: 0 auto;
        padding-top: 1rem;
    }
    @media (max-width: 768px) {
        .footer-section {
            flex-direction: column;
            gap: 1.2rem;
            text-align: center;
        }
        .footer-nav ul {
            justify-content: center;
        }
        .footer-contacts {
            flex-direction: column;
            gap: 0.5rem;
        }
        .legal-links {
            flex-direction: column;
            gap: 0.7rem;
        }
    }

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

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

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

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

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

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

.blogitem-fresh-v6 {
        padding: calc(var(--space-y) * 2.8) var(--space-x);
        background: var(--gradient-hero);
        color: var(--gradient-accent);
    }

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

    .blogitem-fresh-v6 h1 {
        margin: 0;
        font-size: clamp(1.9rem, 3.8vw, 2.8rem);
    }

    .blogitem-fresh-v6 .meta {
        margin: 0;
        color: var(--fg-on-surface-light);
        font-size: .86rem;
    }

    .blogitem-fresh-v6 img {
        width: 100%;
        aspect-ratio: 3/2;
        object-fit: cover;
        border-radius: var(--radius-md);
    }

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

    .blogitem-fresh-v6 .body p {
        margin: 0;
        padding-bottom: .8rem;
        border-bottom: 1px solid var(--border-on-surface);
    }

    .blogitem-fresh-v6 .body p:last-child {
        border-bottom: 0;
        padding-bottom: 0;
    }

.articles {

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

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

    .articles .articles__title {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 clamp(40px, 6vw, 56px);
        color: var(--fg-on-surface-light);
    }

    .articles .articles__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: clamp(28px, 4.5vw, 40px);
    }

    .articles .articles__card {
        background: var(--bg-page);
        border-radius: var(--radius-xl);
        overflow: hidden;
        transition: transform 0.3s;
    }

    .articles .articles__card:hover {
        transform: translateY(-6px);
    }

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

    .articles .articles__image {
        width: 100%;
        height: 220px;
        overflow: hidden;
    }

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

    .articles .articles__content {
        padding: clamp(24px, 4vw, 32px);
    }

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

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

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

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

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

.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 {
    color: var(--link-hover);
}

.header-nav {
    display: flex;
    align-items: center;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(var(--gap) * 2);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--gap);
}
.btn-search, .btn-menu {
    background: var(--btn-ghost-bg);
    border: 1px solid var(--border-on-surface-light);
    border-radius: var(--radius-md);
    color: var(--fg-on-surface);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--space-y) / 1.5) calc(var(--space-x) / 1.5);
    transition: all var(--anim-duration) var(--anim-ease);
}
.btn-search:hover, .btn-menu:hover {
    background-color: var(--btn-ghost-bg-hover);
    border-color: var(--brand);
}
.btn-search svg {
    display: block;
}
.btn-menu {
    display: none;
}
.menu-icon {
    display: block;
    width: 20px;
    height: 2px;
    background-color: currentColor;
    position: relative;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.menu-icon::before,
.menu-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: currentColor;
    left: 0;
    transition: transform var(--anim-duration) var(--anim-ease);
}
.menu-icon::before {
    top: -6px;
}
.menu-icon::after {
    bottom: -6px;
}
.btn-menu[aria-expanded="true"] .menu-icon {
    background-color: transparent;
}
.btn-menu[aria-expanded="true"] .menu-icon::before {
    transform: translateY(6px) rotate(45deg);
}
.btn-menu[aria-expanded="true"] .menu-icon::after {
    transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 767px) {
    .btn-menu {
        display: flex;
    }
    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 101;
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
    }
    .header-nav.active {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        margin-top: calc(var(--space-y) * 3);
    }
    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-lg);
    }
    .header-container {
        position: relative;
    }
}

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #dee2e6;
        color: #333;
        font-family: sans-serif;
        padding: 2.5rem 1rem;
        margin-top: 3rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    .footer-section {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 1.5rem 2.5rem;
    }
    .footer-logo {
        font-size: 1.5rem;
        font-weight: bold;
        color: #2c3e50;
    }
    .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: #495057;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #007bff;
    }
    .footer-contacts {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem 1.5rem;
        font-style: normal;
        line-height: 1.5;
    }
    .footer-contacts address {
        display: inline;
    }
    .footer-contacts a {
        color: #0066cc;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .footer-social {
        display: flex;
        gap: 1.2rem;
    }
    .footer-social a {
        color: #555;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .footer-social a:hover {
        color: #007bff;
    }
    .legal-links {
        font-size: 0.85rem;
        border-top: 1px solid #eee;
        border-bottom: 1px solid #eee;
        padding: 1rem 0;
    }
    .legal-links a {
        color: #666;
        text-decoration: none;
    }
    .legal-links a:hover {
        text-decoration: underline;
        color: #333;
    }
    .footer-disclaimer {
        text-align: center;
        font-size: 0.75rem;
        color: #6c757d;
        line-height: 1.4;
        max-width: 800px;
        margin: 0 auto;
        padding-top: 1rem;
    }
    @media (max-width: 768px) {
        .footer-section {
            flex-direction: column;
            gap: 1.2rem;
            text-align: center;
        }
        .footer-nav ul {
            justify-content: center;
        }
        .footer-contacts {
            flex-direction: column;
            gap: 0.5rem;
        }
        .legal-links {
            flex-direction: column;
            gap: 0.7rem;
        }
    }

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

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

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

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

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

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

.support-cv3 {
        padding: clamp(54px, 7vw, 94px) clamp(16px, 4vw, 36px);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

    .support-cv3__wrap {
        max-width: 900px;
        margin: 0 auto;
    }

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

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

    .support-cv3__head p {
        margin: 8px 0 0;
        opacity: .92;
    }

    .support-cv3__list {
        display: grid;
        gap: 10px;
    }

    .support-cv3__item {
        border: 1px solid rgba(255, 255, 255, 0.32);
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, 0.12);
        overflow: hidden;
    }

    .support-cv3__item button {
        width: 100%;
        border: 0;
        background: transparent;
        color: inherit;
        text-align: left;
        font: inherit;
        font-weight: 700;
        padding: 11px 12px;
        cursor: pointer;
    }

    .support-cv3__item p {
        margin: 0;
        max-height: 0;
        overflow: hidden;
        padding: 0 12px;
        transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
        opacity: .95;
    }

    .support-cv3__item.is-open p {
        max-height: 220px;
        padding: 0 12px 12px;
    }

.index-recommendations-light {
        background: var(--bg-page);
        color: var(--fg-on-page);
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 40px);
    }

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

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

        transform: translateY(-18px);
    }

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

    .index-recommendations-light__h p {
        margin: 0;
        color: var(--neutral-600);
    }

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

    .index-recommendations-light__card {
        border-radius: var(--radius-xl);
        background: var(--surface-light);
        border: 1px solid var(--border-on-surface-light);
        box-shadow: var(--shadow-md);
        padding: clamp(18px, 3vw, 26px);

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

    .index-recommendations-light__card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 20% 15%, rgba(248, 225, 231, 0.45), transparent 55%);
        pointer-events: none;
    }

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

    .index-recommendations-light__card p {
        margin: 0 0 14px;
        position: relative;
        z-index: 1;
        color: var(--fg-on-surface-light);
        font-size: 14px;
        line-height: 1.65;
    }

    .index-recommendations-light__cta {
        position: relative;
        z-index: 1;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        text-decoration: none;
        padding: 10px 14px;
        border-radius: 999px;
        background: var(--bg-primary);
        border: 1px solid var(--ring);
        color: var(--fg-on-primary);
        font-weight: 800;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        font-size: 11px;
        transition: transform var(--anim-duration) var(--anim-ease), background var(--anim-duration) var(--anim-ease);
    }

    .index-recommendations-light__cta::after {
        content: '->';
        font-size: 12px;
    }

    .index-recommendations-light__cta:hover {
        background: var(--bg-primary-hover);
        transform: translateY(-2px);
    }

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

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

.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 {
    color: var(--link-hover);
}

.header-nav {
    display: flex;
    align-items: center;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(var(--gap) * 2);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--gap);
}
.btn-search, .btn-menu {
    background: var(--btn-ghost-bg);
    border: 1px solid var(--border-on-surface-light);
    border-radius: var(--radius-md);
    color: var(--fg-on-surface);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--space-y) / 1.5) calc(var(--space-x) / 1.5);
    transition: all var(--anim-duration) var(--anim-ease);
}
.btn-search:hover, .btn-menu:hover {
    background-color: var(--btn-ghost-bg-hover);
    border-color: var(--brand);
}
.btn-search svg {
    display: block;
}
.btn-menu {
    display: none;
}
.menu-icon {
    display: block;
    width: 20px;
    height: 2px;
    background-color: currentColor;
    position: relative;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.menu-icon::before,
.menu-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: currentColor;
    left: 0;
    transition: transform var(--anim-duration) var(--anim-ease);
}
.menu-icon::before {
    top: -6px;
}
.menu-icon::after {
    bottom: -6px;
}
.btn-menu[aria-expanded="true"] .menu-icon {
    background-color: transparent;
}
.btn-menu[aria-expanded="true"] .menu-icon::before {
    transform: translateY(6px) rotate(45deg);
}
.btn-menu[aria-expanded="true"] .menu-icon::after {
    transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 767px) {
    .btn-menu {
        display: flex;
    }
    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 101;
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
    }
    .header-nav.active {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        margin-top: calc(var(--space-y) * 3);
    }
    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-lg);
    }
    .header-container {
        position: relative;
    }
}

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #dee2e6;
        color: #333;
        font-family: sans-serif;
        padding: 2.5rem 1rem;
        margin-top: 3rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    .footer-section {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 1.5rem 2.5rem;
    }
    .footer-logo {
        font-size: 1.5rem;
        font-weight: bold;
        color: #2c3e50;
    }
    .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: #495057;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #007bff;
    }
    .footer-contacts {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem 1.5rem;
        font-style: normal;
        line-height: 1.5;
    }
    .footer-contacts address {
        display: inline;
    }
    .footer-contacts a {
        color: #0066cc;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .footer-social {
        display: flex;
        gap: 1.2rem;
    }
    .footer-social a {
        color: #555;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .footer-social a:hover {
        color: #007bff;
    }
    .legal-links {
        font-size: 0.85rem;
        border-top: 1px solid #eee;
        border-bottom: 1px solid #eee;
        padding: 1rem 0;
    }
    .legal-links a {
        color: #666;
        text-decoration: none;
    }
    .legal-links a:hover {
        text-decoration: underline;
        color: #333;
    }
    .footer-disclaimer {
        text-align: center;
        font-size: 0.75rem;
        color: #6c757d;
        line-height: 1.4;
        max-width: 800px;
        margin: 0 auto;
        padding-top: 1rem;
    }
    @media (max-width: 768px) {
        .footer-section {
            flex-direction: column;
            gap: 1.2rem;
            text-align: center;
        }
        .footer-nav ul {
            justify-content: center;
        }
        .footer-contacts {
            flex-direction: column;
            gap: 0.5rem;
        }
        .legal-links {
            flex-direction: column;
            gap: 0.7rem;
        }
    }

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

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

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

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

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

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

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

    .form-layout-e .wrap {
        max-width: 820px;
        margin: 0 auto;
        background: white;
        color: black;
        border-radius: var(--radius-xl);
        padding: var(--space-x);
        box-shadow: var(--shadow-md);
    }

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

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

    .form-layout-e .section-head p {
        margin: 10px auto 0;
        max-width: 70ch;
    }

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

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

    .form-layout-e input:not([type="checkbox"]), .form-layout-e textarea {
        width: 100%;
        border: 1px solid var(--neutral-600);
        border-radius: var(--radius-sm);
        background: rgba(255, 255, 255, .07);
        color: var(--neutral-0);
        padding: 9px;
        font: inherit;
    }

    .form-layout-e .end {
        display: flex;
        justify-content: space-between;
        gap: 10px;
        align-items: center;
        flex-wrap: wrap;
        margin-top: 8px;
    }

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

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

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

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

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

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

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

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

    .contact-layout-b .item-card {
        background: var(--surface-1);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface-light);
        padding: 16px;
        box-shadow: var(--shadow-sm);
    }

    .contact-layout-b .item-card h3 {
        margin: 0;
        color: var(--brand);
    }

    .contact-layout-b .item-card p {
        margin: 8px 0 0;
        color: var(--neutral-700, var(--neutral-600));
    }

    .contact-layout-b footer {
        margin-top: 18px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        align-items: center;
    }

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

    .contact-layout-b .social a {
        text-decoration: none;
        color: var(--link);
        padding: 6px 10px;
        border: 1px solid var(--border-on-surface);
        border-radius: 999px;
    }

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

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

.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 {
    color: var(--link-hover);
}

.header-nav {
    display: flex;
    align-items: center;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(var(--gap) * 2);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--gap);
}
.btn-search, .btn-menu {
    background: var(--btn-ghost-bg);
    border: 1px solid var(--border-on-surface-light);
    border-radius: var(--radius-md);
    color: var(--fg-on-surface);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--space-y) / 1.5) calc(var(--space-x) / 1.5);
    transition: all var(--anim-duration) var(--anim-ease);
}
.btn-search:hover, .btn-menu:hover {
    background-color: var(--btn-ghost-bg-hover);
    border-color: var(--brand);
}
.btn-search svg {
    display: block;
}
.btn-menu {
    display: none;
}
.menu-icon {
    display: block;
    width: 20px;
    height: 2px;
    background-color: currentColor;
    position: relative;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.menu-icon::before,
.menu-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: currentColor;
    left: 0;
    transition: transform var(--anim-duration) var(--anim-ease);
}
.menu-icon::before {
    top: -6px;
}
.menu-icon::after {
    bottom: -6px;
}
.btn-menu[aria-expanded="true"] .menu-icon {
    background-color: transparent;
}
.btn-menu[aria-expanded="true"] .menu-icon::before {
    transform: translateY(6px) rotate(45deg);
}
.btn-menu[aria-expanded="true"] .menu-icon::after {
    transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 767px) {
    .btn-menu {
        display: flex;
    }
    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 101;
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
    }
    .header-nav.active {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        margin-top: calc(var(--space-y) * 3);
    }
    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-lg);
    }
    .header-container {
        position: relative;
    }
}

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #dee2e6;
        color: #333;
        font-family: sans-serif;
        padding: 2.5rem 1rem;
        margin-top: 3rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    .footer-section {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 1.5rem 2.5rem;
    }
    .footer-logo {
        font-size: 1.5rem;
        font-weight: bold;
        color: #2c3e50;
    }
    .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: #495057;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #007bff;
    }
    .footer-contacts {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem 1.5rem;
        font-style: normal;
        line-height: 1.5;
    }
    .footer-contacts address {
        display: inline;
    }
    .footer-contacts a {
        color: #0066cc;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .footer-social {
        display: flex;
        gap: 1.2rem;
    }
    .footer-social a {
        color: #555;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .footer-social a:hover {
        color: #007bff;
    }
    .legal-links {
        font-size: 0.85rem;
        border-top: 1px solid #eee;
        border-bottom: 1px solid #eee;
        padding: 1rem 0;
    }
    .legal-links a {
        color: #666;
        text-decoration: none;
    }
    .legal-links a:hover {
        text-decoration: underline;
        color: #333;
    }
    .footer-disclaimer {
        text-align: center;
        font-size: 0.75rem;
        color: #6c757d;
        line-height: 1.4;
        max-width: 800px;
        margin: 0 auto;
        padding-top: 1rem;
    }
    @media (max-width: 768px) {
        .footer-section {
            flex-direction: column;
            gap: 1.2rem;
            text-align: center;
        }
        .footer-nav ul {
            justify-content: center;
        }
        .footer-contacts {
            flex-direction: column;
            gap: 0.5rem;
        }
        .legal-links {
            flex-direction: column;
            gap: 0.7rem;
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.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 {
    color: var(--link-hover);
}

.header-nav {
    display: flex;
    align-items: center;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(var(--gap) * 2);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--gap);
}
.btn-search, .btn-menu {
    background: var(--btn-ghost-bg);
    border: 1px solid var(--border-on-surface-light);
    border-radius: var(--radius-md);
    color: var(--fg-on-surface);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--space-y) / 1.5) calc(var(--space-x) / 1.5);
    transition: all var(--anim-duration) var(--anim-ease);
}
.btn-search:hover, .btn-menu:hover {
    background-color: var(--btn-ghost-bg-hover);
    border-color: var(--brand);
}
.btn-search svg {
    display: block;
}
.btn-menu {
    display: none;
}
.menu-icon {
    display: block;
    width: 20px;
    height: 2px;
    background-color: currentColor;
    position: relative;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.menu-icon::before,
.menu-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: currentColor;
    left: 0;
    transition: transform var(--anim-duration) var(--anim-ease);
}
.menu-icon::before {
    top: -6px;
}
.menu-icon::after {
    bottom: -6px;
}
.btn-menu[aria-expanded="true"] .menu-icon {
    background-color: transparent;
}
.btn-menu[aria-expanded="true"] .menu-icon::before {
    transform: translateY(6px) rotate(45deg);
}
.btn-menu[aria-expanded="true"] .menu-icon::after {
    transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 767px) {
    .btn-menu {
        display: flex;
    }
    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 101;
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
    }
    .header-nav.active {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        margin-top: calc(var(--space-y) * 3);
    }
    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-lg);
    }
    .header-container {
        position: relative;
    }
}

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #dee2e6;
        color: #333;
        font-family: sans-serif;
        padding: 2.5rem 1rem;
        margin-top: 3rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    .footer-section {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 1.5rem 2.5rem;
    }
    .footer-logo {
        font-size: 1.5rem;
        font-weight: bold;
        color: #2c3e50;
    }
    .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: #495057;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #007bff;
    }
    .footer-contacts {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem 1.5rem;
        font-style: normal;
        line-height: 1.5;
    }
    .footer-contacts address {
        display: inline;
    }
    .footer-contacts a {
        color: #0066cc;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .footer-social {
        display: flex;
        gap: 1.2rem;
    }
    .footer-social a {
        color: #555;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .footer-social a:hover {
        color: #007bff;
    }
    .legal-links {
        font-size: 0.85rem;
        border-top: 1px solid #eee;
        border-bottom: 1px solid #eee;
        padding: 1rem 0;
    }
    .legal-links a {
        color: #666;
        text-decoration: none;
    }
    .legal-links a:hover {
        text-decoration: underline;
        color: #333;
    }
    .footer-disclaimer {
        text-align: center;
        font-size: 0.75rem;
        color: #6c757d;
        line-height: 1.4;
        max-width: 800px;
        margin: 0 auto;
        padding-top: 1rem;
    }
    @media (max-width: 768px) {
        .footer-section {
            flex-direction: column;
            gap: 1.2rem;
            text-align: center;
        }
        .footer-nav ul {
            justify-content: center;
        }
        .footer-contacts {
            flex-direction: column;
            gap: 0.5rem;
        }
        .legal-links {
            flex-direction: column;
            gap: 0.7rem;
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.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 {
    color: var(--link-hover);
}

.header-nav {
    display: flex;
    align-items: center;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(var(--gap) * 2);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--gap);
}
.btn-search, .btn-menu {
    background: var(--btn-ghost-bg);
    border: 1px solid var(--border-on-surface-light);
    border-radius: var(--radius-md);
    color: var(--fg-on-surface);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--space-y) / 1.5) calc(var(--space-x) / 1.5);
    transition: all var(--anim-duration) var(--anim-ease);
}
.btn-search:hover, .btn-menu:hover {
    background-color: var(--btn-ghost-bg-hover);
    border-color: var(--brand);
}
.btn-search svg {
    display: block;
}
.btn-menu {
    display: none;
}
.menu-icon {
    display: block;
    width: 20px;
    height: 2px;
    background-color: currentColor;
    position: relative;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.menu-icon::before,
.menu-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: currentColor;
    left: 0;
    transition: transform var(--anim-duration) var(--anim-ease);
}
.menu-icon::before {
    top: -6px;
}
.menu-icon::after {
    bottom: -6px;
}
.btn-menu[aria-expanded="true"] .menu-icon {
    background-color: transparent;
}
.btn-menu[aria-expanded="true"] .menu-icon::before {
    transform: translateY(6px) rotate(45deg);
}
.btn-menu[aria-expanded="true"] .menu-icon::after {
    transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 767px) {
    .btn-menu {
        display: flex;
    }
    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 101;
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
    }
    .header-nav.active {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        margin-top: calc(var(--space-y) * 3);
    }
    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-lg);
    }
    .header-container {
        position: relative;
    }
}

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #dee2e6;
        color: #333;
        font-family: sans-serif;
        padding: 2.5rem 1rem;
        margin-top: 3rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    .footer-section {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 1.5rem 2.5rem;
    }
    .footer-logo {
        font-size: 1.5rem;
        font-weight: bold;
        color: #2c3e50;
    }
    .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: #495057;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #007bff;
    }
    .footer-contacts {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem 1.5rem;
        font-style: normal;
        line-height: 1.5;
    }
    .footer-contacts address {
        display: inline;
    }
    .footer-contacts a {
        color: #0066cc;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .footer-social {
        display: flex;
        gap: 1.2rem;
    }
    .footer-social a {
        color: #555;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .footer-social a:hover {
        color: #007bff;
    }
    .legal-links {
        font-size: 0.85rem;
        border-top: 1px solid #eee;
        border-bottom: 1px solid #eee;
        padding: 1rem 0;
    }
    .legal-links a {
        color: #666;
        text-decoration: none;
    }
    .legal-links a:hover {
        text-decoration: underline;
        color: #333;
    }
    .footer-disclaimer {
        text-align: center;
        font-size: 0.75rem;
        color: #6c757d;
        line-height: 1.4;
        max-width: 800px;
        margin: 0 auto;
        padding-top: 1rem;
    }
    @media (max-width: 768px) {
        .footer-section {
            flex-direction: column;
            gap: 1.2rem;
            text-align: center;
        }
        .footer-nav ul {
            justify-content: center;
        }
        .footer-contacts {
            flex-direction: column;
            gap: 0.5rem;
        }
        .legal-links {
            flex-direction: column;
            gap: 0.7rem;
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

.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 {
    color: var(--link-hover);
}

.header-nav {
    display: flex;
    align-items: center;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(var(--gap) * 2);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--gap);
}
.btn-search, .btn-menu {
    background: var(--btn-ghost-bg);
    border: 1px solid var(--border-on-surface-light);
    border-radius: var(--radius-md);
    color: var(--fg-on-surface);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--space-y) / 1.5) calc(var(--space-x) / 1.5);
    transition: all var(--anim-duration) var(--anim-ease);
}
.btn-search:hover, .btn-menu:hover {
    background-color: var(--btn-ghost-bg-hover);
    border-color: var(--brand);
}
.btn-search svg {
    display: block;
}
.btn-menu {
    display: none;
}
.menu-icon {
    display: block;
    width: 20px;
    height: 2px;
    background-color: currentColor;
    position: relative;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.menu-icon::before,
.menu-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: currentColor;
    left: 0;
    transition: transform var(--anim-duration) var(--anim-ease);
}
.menu-icon::before {
    top: -6px;
}
.menu-icon::after {
    bottom: -6px;
}
.btn-menu[aria-expanded="true"] .menu-icon {
    background-color: transparent;
}
.btn-menu[aria-expanded="true"] .menu-icon::before {
    transform: translateY(6px) rotate(45deg);
}
.btn-menu[aria-expanded="true"] .menu-icon::after {
    transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 767px) {
    .btn-menu {
        display: flex;
    }
    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 101;
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
    }
    .header-nav.active {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        margin-top: calc(var(--space-y) * 3);
    }
    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-lg);
    }
    .header-container {
        position: relative;
    }
}

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #dee2e6;
        color: #333;
        font-family: sans-serif;
        padding: 2.5rem 1rem;
        margin-top: 3rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    .footer-section {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 1.5rem 2.5rem;
    }
    .footer-logo {
        font-size: 1.5rem;
        font-weight: bold;
        color: #2c3e50;
    }
    .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: #495057;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #007bff;
    }
    .footer-contacts {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem 1.5rem;
        font-style: normal;
        line-height: 1.5;
    }
    .footer-contacts address {
        display: inline;
    }
    .footer-contacts a {
        color: #0066cc;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .footer-social {
        display: flex;
        gap: 1.2rem;
    }
    .footer-social a {
        color: #555;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .footer-social a:hover {
        color: #007bff;
    }
    .legal-links {
        font-size: 0.85rem;
        border-top: 1px solid #eee;
        border-bottom: 1px solid #eee;
        padding: 1rem 0;
    }
    .legal-links a {
        color: #666;
        text-decoration: none;
    }
    .legal-links a:hover {
        text-decoration: underline;
        color: #333;
    }
    .footer-disclaimer {
        text-align: center;
        font-size: 0.75rem;
        color: #6c757d;
        line-height: 1.4;
        max-width: 800px;
        margin: 0 auto;
        padding-top: 1rem;
    }
    @media (max-width: 768px) {
        .footer-section {
            flex-direction: column;
            gap: 1.2rem;
            text-align: center;
        }
        .footer-nav ul {
            justify-content: center;
        }
        .footer-contacts {
            flex-direction: column;
            gap: 0.5rem;
        }
        .legal-links {
            flex-direction: column;
            gap: 0.7rem;
        }
    }

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

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

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

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

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

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

.err-slab-e {
        padding: clamp(56px, 10vw, 112px) 20px;
        background: repeating-linear-gradient(45deg, var(--bg-alt), var(--bg-alt) 14px, var(--neutral-0) 14px, var(--neutral-0) 28px);
        color: var(--fg-on-page);
    }

    .err-slab-e .inner {
        max-width: 700px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(26px, 4vw, 42px);
        background: var(--surface-1);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-md);
    }

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

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

    .err-slab-e a {
        display: inline-block;
        margin-top: 16px;
        color: var(--link);
        text-decoration: none;
        border-bottom: 2px solid var(--link);
        padding-bottom: 2px;
    }