:root {
  --font-family: "Roboto", sans-serif;
  --font-size-base: 16px;
  --line-height-base: 1.6;

  --max-w: 1200px;
  --space-x: 24px;
  --space-y: 20px;
  --gap: 16px;

  --radius-xl: 24px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.1);

  --overlay: rgba(0, 0, 0, 0.5);
  --anim-duration: 0.3s;
  --anim-ease: cubic-bezier(0.4, 0, 0.2, 1);
  --random-number: 2;

  --brand: #0056B3;
  --brand-contrast: #FFFFFF;
  --accent: #FF6B35;
  --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.9);
  --fg-on-surface-light: #343A40;
  --border-on-surface-light: rgba(222, 226, 230, 0.7);

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

  --bg-accent: #FFF2ED;
  --fg-on-accent: #8A2C0D;
  --bg-accent-hover: #FF8B5C;

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

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

  --btn-ghost-bg: transparent;
  --btn-ghost-bg-hover: rgba(255,255,255,0.06);
  --chip-bg: rgba(255,255,255,0.08);
  --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);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
}
.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}
.header-logo {
    font-weight: 700;
    font-size: calc(var(--font-size-base) * 1.5);
    color: var(--brand);
    white-space: nowrap;
}
.header-nav {
    display: flex;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav-link {
    color: var(--link);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    display: block;
}
.nav-link:hover,
.nav-link:focus {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
    outline: none;
}
.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}
.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }
    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        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: calc(var(--gap) * 1.5);
    }
    .nav-link {
        padding: var(--space-y) var(--space-x);
        font-size: calc(var(--font-size-base) * 1.1);
    }
    .burger-btn.active .burger-line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }
    .burger-btn.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-btn.active .burger-line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 2.5rem 1rem;
        font-family: sans-serif;
        border-top: 1px solid #dee2e6;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }
    .footer-section {
        display: flex;
        flex-direction: column;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #2c3e50;
        margin-bottom: 1rem;
    }
    .footer-disclaimer {
        font-size: 0.85rem;
        color: #666;
        line-height: 1.4;
        margin-top: 0.5rem;
    }
    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #2c3e50;
    }
    .footer-nav, .social-links, .legal-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-nav li, .social-links a, .legal-links a {
        margin-bottom: 0.6rem;
    }
    .footer-nav a, .social-links a, .legal-links a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-nav a:hover, .social-links a:hover, .legal-links a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-contacts p {
        margin: 0.5rem 0;
        line-height: 1.5;
    }
    .footer-contacts a {
        color: #555;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .social-links, .legal-links {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    .footer-bottom {
        max-width: 1200px;
        margin: 2rem auto 0;
        padding-top: 1.5rem;
        border-top: 1px solid #dee2e6;
        text-align: center;
        font-size: 0.9rem;
        color: #777;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        .footer-section {
            align-items: center;
            text-align: center;
        }
    }

.cookies--light-v6 {
        width: 100%;
        position: fixed;
        bottom: 0;
        z-index: 1000;
        padding: 40px 20px;
        background: var(--bg-page);
        color: var(--fg-on-page);
        border-top: 1px solid var(--border-on-surface-light);
    }

    .cookies__inner {
        width: var(--max-w);
        margin: 0 auto;
        font-size: 0.9rem;
        color: var(--neutral-700);
    }

    .cookies__inner h2 {
        margin: 0 0 6px;
        font-size: 1rem;
    }

    .cookies__inner p {
        margin: 0;
    }

    .cookie-banner__buttons {
        margin-top: 1rem;
        display: flex;
        gap: 1rem;
        flex-shrink: 0;
    }

    .cookie-banner__btn {
        padding: 1rem 2rem;
        border: 2px solid var(--ring);
        border-radius: var(--radius-lg);
        font-size: 1rem;
        cursor: pointer;
        transition: all .25s;
        white-space: nowrap;
        font-weight: 500;
    }

    .cookie-banner__accept {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent);
    }

    .cookie-banner__accept:hover {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

    .cookie-banner__reject {
        background: transparent;
        color: var(--fg-on-page);
    }

    .cookie-banner__reject:hover {
        background: var(--bg-alt);
    }

    .cookie-banner__manage {
        background: transparent;
        color: var(--link);
        border-color: var(--link);
    }

    .cookie-banner__manage:hover {
        background: var(--link);
        color: var(--bg-page);
    }

    @media (max-width: 767px) {
        .cookie-banner__c {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .cookie-banner__buttons {
            width: 100%;
            flex-wrap: wrap;
        }

        .cookie-banner__btn {
            flex: 1;
            min-width: 0;
            padding: 0.85rem 1.5rem;
        }
    }

.hero {
        position: relative;
        min-height: 600px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: var(--fg-on-primary);
        overflow: hidden;
    }

    .hero--compact {
        min-height: 400px;
    }

    .hero__bg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -2;
    }

    .hero__overlay {
        position: absolute;
        inset: 0;
        background: var(--gradient-hero);
        opacity: 0.7;
        z-index: -1;
    }

    .hero__content {
        max-width: 900px;
        padding: clamp(16px, 3vw, 32px);
        z-index: 1;
    }

    .hero--left .hero__content {
        text-align: left;
        max-width: 720px;
    }

    .hero h1 {
        font-size: clamp(28px, 5vw, 48px);
        font-weight: 700;
        margin-bottom: var(--space-y);
        text-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    }

    .hero p {
        font-size: clamp(16px, 2.5vw, 20px);
        font-weight: 400;
        margin: 0 auto 0;
        max-width: 700px;
    }

.value-grid {
        padding: clamp(60px, 8vw, 110px) clamp(16px, 3vw, 40px);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

    .value-grid .wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .value-grid .header {
        text-align: center;
        margin-bottom: 14px;
    }

    .value-grid h2 {
        margin: 0;
        font-size: clamp(30px, 4.8vw, 52px);
    }

    .value-grid .header p {
        margin: 10px 0 0;
        opacity: 0.9;
    }

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

    .value-grid article {
        border: 1px solid var(--chip-bg);
        border-radius: var(--radius-lg);
        background: var(--chip-bg);
        padding: 14px;
    }

    .value-grid .icon {
        margin: 0 0 8px;
        font-size: 1.5rem;
    }

    .value-grid h3 {
        margin: 0 0 6px;
    }

    .value-grid article p {
        margin: 0 0 6px;
        opacity: 0.9;
    }

    .value-grid article span {
        font-size: .85rem;
        opacity: 0.8;
    }

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

.features--alt {
    background-color: var(--bg-alt);
    color: var(--fg-on-alt);
}

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

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

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

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

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

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

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

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

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

.visual-highlights-carousel {

        background: var(--bg-alt);
        color: var(--fg-on-alt);
        padding: clamp(60px, 8vw, 108px) clamp(18px, 4vw, 56px);
    }

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

    .visual-highlights-carousel__h {
        text-align: center;
        margin-bottom: clamp(40px, 6vw, 72px);

        transform: translateY(-20px);
    }

    .visual-highlights-carousel__h p {
        margin: 0 0 0.75rem;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--brand);
        font-size: 13px;
    }

    .visual-highlights-carousel__h h2 {
        margin: 0;
        font-size: clamp(30px, 4.8vw, 50px);
        font-weight: 800;
        color: var(--fg-on-alt);
    }

    .visual-highlights-carousel__row {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: clamp(20px, 3vw, 32px);
    }

    .visual-highlights-carousel__slide {
        border-radius: var(--radius-lg);
        background: var(--surface-light);
        border: 1px solid var(--border-on-surface-light);
        overflow: hidden;

        transform: translateY(30px);
        box-shadow: var(--shadow-lg);
        display: flex;
        flex-direction: column;
    }

    .visual-highlights-carousel__img {
        position: relative;
        padding-top: 60%;
    }

    .visual-highlights-carousel__img img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .visual-highlights-carousel__slide:hover img {
        transform: scale(1.05);
    }

    .visual-highlights-carousel__flag {
        position: absolute;
        top: 16px;
        right: 16px;
        background: var(--bg-page);
        border-radius: 999px;
        padding: 6px 14px;
        font-size: 12px;
        color: var(--accent);
        font-weight: 600;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        box-shadow: 0 12px 20px rgba(0, 86, 179, 0.15);
    }

    .visual-highlights-carousel__text {
        padding: clamp(20px, 3vw, 28px);
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .visual-highlights-carousel__text h3 {
        margin: 0;
        font-size: clamp(18px, 2.4vw, 24px);
        color: var(--fg-on-page);
    }

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

    .visual-highlights-carousel__note {
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: 0.18em;
        color: var(--brand);
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
}
.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}
.header-logo {
    font-weight: 700;
    font-size: calc(var(--font-size-base) * 1.5);
    color: var(--brand);
    white-space: nowrap;
}
.header-nav {
    display: flex;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav-link {
    color: var(--link);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    display: block;
}
.nav-link:hover,
.nav-link:focus {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
    outline: none;
}
.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}
.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }
    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        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: calc(var(--gap) * 1.5);
    }
    .nav-link {
        padding: var(--space-y) var(--space-x);
        font-size: calc(var(--font-size-base) * 1.1);
    }
    .burger-btn.active .burger-line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }
    .burger-btn.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-btn.active .burger-line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 2.5rem 1rem;
        font-family: sans-serif;
        border-top: 1px solid #dee2e6;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }
    .footer-section {
        display: flex;
        flex-direction: column;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #2c3e50;
        margin-bottom: 1rem;
    }
    .footer-disclaimer {
        font-size: 0.85rem;
        color: #666;
        line-height: 1.4;
        margin-top: 0.5rem;
    }
    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #2c3e50;
    }
    .footer-nav, .social-links, .legal-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-nav li, .social-links a, .legal-links a {
        margin-bottom: 0.6rem;
    }
    .footer-nav a, .social-links a, .legal-links a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-nav a:hover, .social-links a:hover, .legal-links a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-contacts p {
        margin: 0.5rem 0;
        line-height: 1.5;
    }
    .footer-contacts a {
        color: #555;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .social-links, .legal-links {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    .footer-bottom {
        max-width: 1200px;
        margin: 2rem auto 0;
        padding-top: 1.5rem;
        border-top: 1px solid #dee2e6;
        text-align: center;
        font-size: 0.9rem;
        color: #777;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        .footer-section {
            align-items: center;
            text-align: center;
        }
    }

.cookies--light-v6 {
        width: 100%;
        position: fixed;
        bottom: 0;
        z-index: 1000;
        padding: 40px 20px;
        background: var(--bg-page);
        color: var(--fg-on-page);
        border-top: 1px solid var(--border-on-surface-light);
    }

    .cookies__inner {
        width: var(--max-w);
        margin: 0 auto;
        font-size: 0.9rem;
        color: var(--neutral-700);
    }

    .cookies__inner h2 {
        margin: 0 0 6px;
        font-size: 1rem;
    }

    .cookies__inner p {
        margin: 0;
    }

    .cookie-banner__buttons {
        margin-top: 1rem;
        display: flex;
        gap: 1rem;
        flex-shrink: 0;
    }

    .cookie-banner__btn {
        padding: 1rem 2rem;
        border: 2px solid var(--ring);
        border-radius: var(--radius-lg);
        font-size: 1rem;
        cursor: pointer;
        transition: all .25s;
        white-space: nowrap;
        font-weight: 500;
    }

    .cookie-banner__accept {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent);
    }

    .cookie-banner__accept:hover {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

    .cookie-banner__reject {
        background: transparent;
        color: var(--fg-on-page);
    }

    .cookie-banner__reject:hover {
        background: var(--bg-alt);
    }

    .cookie-banner__manage {
        background: transparent;
        color: var(--link);
        border-color: var(--link);
    }

    .cookie-banner__manage:hover {
        background: var(--link);
        color: var(--bg-page);
    }

    @media (max-width: 767px) {
        .cookie-banner__c {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .cookie-banner__buttons {
            width: 100%;
            flex-wrap: wrap;
        }

        .cookie-banner__btn {
            flex: 1;
            min-width: 0;
            padding: 0.85rem 1.5rem;
        }
    }

.blog-list {

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

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

    .blog-list .blog-list__h {
        text-align: center;
        margin-bottom: var(--space-y);
        color: var(--fg-on-primary);
    }

    .blog-list h1 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 0.5rem;
    }

    .blog-list .blog-list__grid {
        display: grid;
        gap: var(--space-x);
    }

    @media (min-width: 768px) {
        .blog-list .blog-list__grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
    }

    @media (min-width: 1024px) {
        .blog-list .blog-list__grid {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }
    }

    .blog-list .blog-list__card {
        background: white;
        color: black;
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow-md);
        transition: transform var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    }

    .blog-list__card {
        position: relative;
        overflow: hidden;
    }

    .blog-list__card::after {
        animation-duration: 6s;
        opacity: 0.3;
    }

    @keyframes fall {
        from {
            transform: translateY(-80px);
        }
        to {
            transform: translateY(80px);
        }
    }

    .blog-list .blog-list__card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
    }

    .blog-list .blog-list__image img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    .blog-list .blog-list__content {
        padding: clamp(16px, 2vw, 24px);
    }

    .blog-list .blog-list__date {
        font-size: 0.875rem;
        color: var(--neutral-600);
    }

    .blog-list h3 {
        margin: 0.5rem 0;
        font-size: clamp(18px, 2.2vw, 22px);
        color: var(--neutral-900);
    }

    .blog-list h3 a {
        text-decoration: none;
        color: var(--neutral-900);
    }

    .blog-list h3 a:hover {
        color: var(--link);
    }

    .blog-list p {
        margin: 0.5rem 0 1rem;
        color: var(--neutral-800);
        line-height: var(--line-height-base);
    }

    .blog-list .blog-list__read-more {
        color: var(--bg-primary);
        text-decoration: none;
        font-weight: 600;
        display: inline-block;
    }

    .blog-list .blog-list__read-more:hover {
        text-decoration: underline;
        color: var(--link-hover);
    }

.next-dock {
        padding: clamp(60px, 9vw, 108px) clamp(16px, 3vw, 36px);
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

    .next-dock .wrap {
        max-width: 880px;
        margin: 0 auto;
    }

    .next-dock header {
        margin-bottom: 12px;
    }

    .next-dock header p {
        margin: 0 0 8px;
        color: var(--neutral-600);
    }

    .next-dock h2 {
        margin: 0 0 8px;
        font-size: clamp(30px, 4vw, 42px);
    }

    .next-dock nav {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .next-dock nav a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 10px 14px;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .next-dock nav a:hover {
        transform: translateY(-2px);
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
}
.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}
.header-logo {
    font-weight: 700;
    font-size: calc(var(--font-size-base) * 1.5);
    color: var(--brand);
    white-space: nowrap;
}
.header-nav {
    display: flex;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav-link {
    color: var(--link);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    display: block;
}
.nav-link:hover,
.nav-link:focus {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
    outline: none;
}
.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}
.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }
    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        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: calc(var(--gap) * 1.5);
    }
    .nav-link {
        padding: var(--space-y) var(--space-x);
        font-size: calc(var(--font-size-base) * 1.1);
    }
    .burger-btn.active .burger-line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }
    .burger-btn.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-btn.active .burger-line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 2.5rem 1rem;
        font-family: sans-serif;
        border-top: 1px solid #dee2e6;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }
    .footer-section {
        display: flex;
        flex-direction: column;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #2c3e50;
        margin-bottom: 1rem;
    }
    .footer-disclaimer {
        font-size: 0.85rem;
        color: #666;
        line-height: 1.4;
        margin-top: 0.5rem;
    }
    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #2c3e50;
    }
    .footer-nav, .social-links, .legal-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-nav li, .social-links a, .legal-links a {
        margin-bottom: 0.6rem;
    }
    .footer-nav a, .social-links a, .legal-links a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-nav a:hover, .social-links a:hover, .legal-links a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-contacts p {
        margin: 0.5rem 0;
        line-height: 1.5;
    }
    .footer-contacts a {
        color: #555;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .social-links, .legal-links {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    .footer-bottom {
        max-width: 1200px;
        margin: 2rem auto 0;
        padding-top: 1.5rem;
        border-top: 1px solid #dee2e6;
        text-align: center;
        font-size: 0.9rem;
        color: #777;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        .footer-section {
            align-items: center;
            text-align: center;
        }
    }

.cookies--light-v6 {
        width: 100%;
        position: fixed;
        bottom: 0;
        z-index: 1000;
        padding: 40px 20px;
        background: var(--bg-page);
        color: var(--fg-on-page);
        border-top: 1px solid var(--border-on-surface-light);
    }

    .cookies__inner {
        width: var(--max-w);
        margin: 0 auto;
        font-size: 0.9rem;
        color: var(--neutral-700);
    }

    .cookies__inner h2 {
        margin: 0 0 6px;
        font-size: 1rem;
    }

    .cookies__inner p {
        margin: 0;
    }

    .cookie-banner__buttons {
        margin-top: 1rem;
        display: flex;
        gap: 1rem;
        flex-shrink: 0;
    }

    .cookie-banner__btn {
        padding: 1rem 2rem;
        border: 2px solid var(--ring);
        border-radius: var(--radius-lg);
        font-size: 1rem;
        cursor: pointer;
        transition: all .25s;
        white-space: nowrap;
        font-weight: 500;
    }

    .cookie-banner__accept {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent);
    }

    .cookie-banner__accept:hover {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

    .cookie-banner__reject {
        background: transparent;
        color: var(--fg-on-page);
    }

    .cookie-banner__reject:hover {
        background: var(--bg-alt);
    }

    .cookie-banner__manage {
        background: transparent;
        color: var(--link);
        border-color: var(--link);
    }

    .cookie-banner__manage:hover {
        background: var(--link);
        color: var(--bg-page);
    }

    @media (max-width: 767px) {
        .cookie-banner__c {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .cookie-banner__buttons {
            width: 100%;
            flex-wrap: wrap;
        }

        .cookie-banner__btn {
            flex: 1;
            min-width: 0;
            padding: 0.85rem 1.5rem;
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

.author {

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

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

    .author .author__card {
        max-width: 600px;
        margin: 0 auto;
        text-align: center;
        background: var(--surface-1);
        padding: clamp(32px, 5vw, 48px);
        border-radius: var(--radius-xl);
    }

    .author .author__image {
        width: clamp(140px, 20vw, 200px);
        height: clamp(140px, 20vw, 200px);
        margin: 0 auto clamp(24px, 4vw, 32px);
        border-radius: 50%;
        overflow: hidden;
    }

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

    .author .author__info h3 {
        font-size: clamp(26px, 4.5vw, 36px);
        margin: 0 0 0.5rem;
        color: var(--fg-on-surface);
    }

    .author .author__role {
        font-size: clamp(16px, 2.5vw, 18px);
        color: var(--bg-accent);
        margin: 0 0 1.5rem;
        font-weight: 600;
    }

    .author .author__bio {
        font-size: clamp(15px, 2.2vw, 17px);
        line-height: 1.7;
        color: var(--neutral-600);
        margin: 0;
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
}
.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}
.header-logo {
    font-weight: 700;
    font-size: calc(var(--font-size-base) * 1.5);
    color: var(--brand);
    white-space: nowrap;
}
.header-nav {
    display: flex;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav-link {
    color: var(--link);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    display: block;
}
.nav-link:hover,
.nav-link:focus {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
    outline: none;
}
.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}
.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }
    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        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: calc(var(--gap) * 1.5);
    }
    .nav-link {
        padding: var(--space-y) var(--space-x);
        font-size: calc(var(--font-size-base) * 1.1);
    }
    .burger-btn.active .burger-line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }
    .burger-btn.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-btn.active .burger-line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 2.5rem 1rem;
        font-family: sans-serif;
        border-top: 1px solid #dee2e6;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }
    .footer-section {
        display: flex;
        flex-direction: column;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #2c3e50;
        margin-bottom: 1rem;
    }
    .footer-disclaimer {
        font-size: 0.85rem;
        color: #666;
        line-height: 1.4;
        margin-top: 0.5rem;
    }
    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #2c3e50;
    }
    .footer-nav, .social-links, .legal-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-nav li, .social-links a, .legal-links a {
        margin-bottom: 0.6rem;
    }
    .footer-nav a, .social-links a, .legal-links a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-nav a:hover, .social-links a:hover, .legal-links a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-contacts p {
        margin: 0.5rem 0;
        line-height: 1.5;
    }
    .footer-contacts a {
        color: #555;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .social-links, .legal-links {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    .footer-bottom {
        max-width: 1200px;
        margin: 2rem auto 0;
        padding-top: 1.5rem;
        border-top: 1px solid #dee2e6;
        text-align: center;
        font-size: 0.9rem;
        color: #777;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        .footer-section {
            align-items: center;
            text-align: center;
        }
    }

.cookies--light-v6 {
        width: 100%;
        position: fixed;
        bottom: 0;
        z-index: 1000;
        padding: 40px 20px;
        background: var(--bg-page);
        color: var(--fg-on-page);
        border-top: 1px solid var(--border-on-surface-light);
    }

    .cookies__inner {
        width: var(--max-w);
        margin: 0 auto;
        font-size: 0.9rem;
        color: var(--neutral-700);
    }

    .cookies__inner h2 {
        margin: 0 0 6px;
        font-size: 1rem;
    }

    .cookies__inner p {
        margin: 0;
    }

    .cookie-banner__buttons {
        margin-top: 1rem;
        display: flex;
        gap: 1rem;
        flex-shrink: 0;
    }

    .cookie-banner__btn {
        padding: 1rem 2rem;
        border: 2px solid var(--ring);
        border-radius: var(--radius-lg);
        font-size: 1rem;
        cursor: pointer;
        transition: all .25s;
        white-space: nowrap;
        font-weight: 500;
    }

    .cookie-banner__accept {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent);
    }

    .cookie-banner__accept:hover {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

    .cookie-banner__reject {
        background: transparent;
        color: var(--fg-on-page);
    }

    .cookie-banner__reject:hover {
        background: var(--bg-alt);
    }

    .cookie-banner__manage {
        background: transparent;
        color: var(--link);
        border-color: var(--link);
    }

    .cookie-banner__manage:hover {
        background: var(--link);
        color: var(--bg-page);
    }

    @media (max-width: 767px) {
        .cookie-banner__c {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .cookie-banner__buttons {
            width: 100%;
            flex-wrap: wrap;
        }

        .cookie-banner__btn {
            flex: 1;
            min-width: 0;
            padding: 0.85rem 1.5rem;
        }
    }

.blog-item {

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

    .blog-item .blog-item__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: var(--space-x);
    }

    @media (min-width: 1024px) {
        .blog-item .blog-item__c {
            grid-template-columns: 1fr 300px;
        }
    }

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

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

    .blog-item .blog-item__meta {
        display: flex;
        gap: 1rem;
        color: var(--neutral-600);
        font-size: 0.875rem;
    }

    .blog-item .blog-item__content {
        line-height: 1.8;
        color: var(--fg-on-primary);
    }

    .blog-item .blog-item__content p {
        margin-bottom: 1.5rem;
    }

    .blog-item .blog-item__content ul {
        margin-bottom: 1.5rem;
        padding-left: 1.5rem;
    }

    .blog-item .blog-item__content li {
        margin-bottom: 0.5rem;
    }

    .blog-item .blog-item__related {
        background: var(--surface-light);
        padding: clamp(16px, 2vw, 24px);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-sm);
    }

    .blog-item .blog-item__related h3 {
        margin: 0 0 1rem;
        font-size: 1.25rem;
        color: var(--fg-on-primary);
    }

    .blog-item .blog-item__related-list {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .blog-item .blog-item__related-item a {
        color: var(--bg-primary);
        text-decoration: none;
    }

    .blog-item .blog-item__related-item a:hover {
        text-decoration: underline;
    }

.identity-canvas {
        background: var(--fg-on-primary);
        color: var(--bg-primary);
        padding: clamp(56px, 8vw, 100px) clamp(18px, 4vw, 48px);
    }

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

    .identity-canvas__h {
        margin-bottom: clamp(32px, 5vw, 64px);
        text-align: center;

        transform: translateY(-16px);
    }

    .identity-canvas__h h2 {
        margin: 0 0 0.5rem;
        font-size: clamp(30px, 4.5vw, 52px);
    }

    .identity-canvas__h p {
        margin: 0 auto;
        max-width: 640px;
        color: var(--neutral-500);
    }

    .identity-canvas__stack {
        display: flex;
        flex-direction: column;
        gap: clamp(16px, 3vw, 24px);
    }

    .identity-canvas__row {
        display: grid;
        grid-template-columns: minmax(120px, 180px) 1fr;
        gap: clamp(16px, 3vw, 32px);
        background: var(--bg-page);
        border-radius: var(--radius-lg);
        border: 1px solid var(--neutral-200);
        padding: clamp(18px, 3vw, 32px);
        box-shadow: 0 15px 40px rgba(9, 24, 56, 0.08);

        transform: translateY(20px);
    }

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

    .identity-canvas__mark {
        align-self: start;
        font-size: 0.85rem;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: rgba(14, 27, 60, 0.5);
        border-left: 4px solid var(--bg-accent);
        padding-left: 1rem;
    }

    .identity-canvas__body h3 {
        margin: 0 0 0.75rem;
        font-size: clamp(20px, 2.4vw, 28px);
    }

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

    .identity-canvas__body blockquote {
        margin: 0;
        padding: 0.75rem 1rem;
        border-radius: var(--radius-sm);
        background: var(--neutral-100);
        border-left: 4px solid var(--bg-accent);
        font-weight: 600;
        color: var(--accent);
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
}
.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}
.header-logo {
    font-weight: 700;
    font-size: calc(var(--font-size-base) * 1.5);
    color: var(--brand);
    white-space: nowrap;
}
.header-nav {
    display: flex;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav-link {
    color: var(--link);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    display: block;
}
.nav-link:hover,
.nav-link:focus {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
    outline: none;
}
.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}
.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }
    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        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: calc(var(--gap) * 1.5);
    }
    .nav-link {
        padding: var(--space-y) var(--space-x);
        font-size: calc(var(--font-size-base) * 1.1);
    }
    .burger-btn.active .burger-line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }
    .burger-btn.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-btn.active .burger-line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 2.5rem 1rem;
        font-family: sans-serif;
        border-top: 1px solid #dee2e6;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }
    .footer-section {
        display: flex;
        flex-direction: column;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #2c3e50;
        margin-bottom: 1rem;
    }
    .footer-disclaimer {
        font-size: 0.85rem;
        color: #666;
        line-height: 1.4;
        margin-top: 0.5rem;
    }
    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #2c3e50;
    }
    .footer-nav, .social-links, .legal-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-nav li, .social-links a, .legal-links a {
        margin-bottom: 0.6rem;
    }
    .footer-nav a, .social-links a, .legal-links a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-nav a:hover, .social-links a:hover, .legal-links a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-contacts p {
        margin: 0.5rem 0;
        line-height: 1.5;
    }
    .footer-contacts a {
        color: #555;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .social-links, .legal-links {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    .footer-bottom {
        max-width: 1200px;
        margin: 2rem auto 0;
        padding-top: 1.5rem;
        border-top: 1px solid #dee2e6;
        text-align: center;
        font-size: 0.9rem;
        color: #777;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        .footer-section {
            align-items: center;
            text-align: center;
        }
    }

.cookies--light-v6 {
        width: 100%;
        position: fixed;
        bottom: 0;
        z-index: 1000;
        padding: 40px 20px;
        background: var(--bg-page);
        color: var(--fg-on-page);
        border-top: 1px solid var(--border-on-surface-light);
    }

    .cookies__inner {
        width: var(--max-w);
        margin: 0 auto;
        font-size: 0.9rem;
        color: var(--neutral-700);
    }

    .cookies__inner h2 {
        margin: 0 0 6px;
        font-size: 1rem;
    }

    .cookies__inner p {
        margin: 0;
    }

    .cookie-banner__buttons {
        margin-top: 1rem;
        display: flex;
        gap: 1rem;
        flex-shrink: 0;
    }

    .cookie-banner__btn {
        padding: 1rem 2rem;
        border: 2px solid var(--ring);
        border-radius: var(--radius-lg);
        font-size: 1rem;
        cursor: pointer;
        transition: all .25s;
        white-space: nowrap;
        font-weight: 500;
    }

    .cookie-banner__accept {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent);
    }

    .cookie-banner__accept:hover {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

    .cookie-banner__reject {
        background: transparent;
        color: var(--fg-on-page);
    }

    .cookie-banner__reject:hover {
        background: var(--bg-alt);
    }

    .cookie-banner__manage {
        background: transparent;
        color: var(--link);
        border-color: var(--link);
    }

    .cookie-banner__manage:hover {
        background: var(--link);
        color: var(--bg-page);
    }

    @media (max-width: 767px) {
        .cookie-banner__c {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .cookie-banner__buttons {
            width: 100%;
            flex-wrap: wrap;
        }

        .cookie-banner__btn {
            flex: 1;
            min-width: 0;
            padding: 0.85rem 1.5rem;
        }
    }

.blog-item {

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

    .blog-item .blog-item__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: var(--space-x);
    }

    @media (min-width: 1024px) {
        .blog-item .blog-item__c {
            grid-template-columns: 1fr 300px;
        }
    }

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

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

    .blog-item .blog-item__meta {
        display: flex;
        gap: 1rem;
        color: var(--neutral-600);
        font-size: 0.875rem;
    }

    .blog-item .blog-item__content {
        line-height: 1.8;
        color: var(--fg-on-primary);
    }

    .blog-item .blog-item__content p {
        margin-bottom: 1.5rem;
    }

    .blog-item .blog-item__content ul {
        margin-bottom: 1.5rem;
        padding-left: 1.5rem;
    }

    .blog-item .blog-item__content li {
        margin-bottom: 0.5rem;
    }

    .blog-item .blog-item__related {
        background: var(--surface-light);
        padding: clamp(16px, 2vw, 24px);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-sm);
    }

    .blog-item .blog-item__related h3 {
        margin: 0 0 1rem;
        font-size: 1.25rem;
        color: var(--fg-on-primary);
    }

    .blog-item .blog-item__related-list {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .blog-item .blog-item__related-item a {
        color: var(--bg-primary);
        text-decoration: none;
    }

    .blog-item .blog-item__related-item a:hover {
        text-decoration: underline;
    }

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

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

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

    .faq-rows .lead {
        margin: 10px 0 16px;
        color: var(--neutral-600);
    }

    .faq-rows ol {
        margin: 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 10px;
    }

    .faq-rows li {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
        background: var(--surface-1);
        padding: 12px;
    }

    .faq-rows h3 {
        margin: 0 0 8px;
        font-size: 1.05rem;
    }

    .faq-rows p {
        margin: 0;
        color: var(--neutral-600);
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
}
.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}
.header-logo {
    font-weight: 700;
    font-size: calc(var(--font-size-base) * 1.5);
    color: var(--brand);
    white-space: nowrap;
}
.header-nav {
    display: flex;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav-link {
    color: var(--link);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    display: block;
}
.nav-link:hover,
.nav-link:focus {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
    outline: none;
}
.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}
.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }
    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        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: calc(var(--gap) * 1.5);
    }
    .nav-link {
        padding: var(--space-y) var(--space-x);
        font-size: calc(var(--font-size-base) * 1.1);
    }
    .burger-btn.active .burger-line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }
    .burger-btn.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-btn.active .burger-line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 2.5rem 1rem;
        font-family: sans-serif;
        border-top: 1px solid #dee2e6;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }
    .footer-section {
        display: flex;
        flex-direction: column;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #2c3e50;
        margin-bottom: 1rem;
    }
    .footer-disclaimer {
        font-size: 0.85rem;
        color: #666;
        line-height: 1.4;
        margin-top: 0.5rem;
    }
    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #2c3e50;
    }
    .footer-nav, .social-links, .legal-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-nav li, .social-links a, .legal-links a {
        margin-bottom: 0.6rem;
    }
    .footer-nav a, .social-links a, .legal-links a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-nav a:hover, .social-links a:hover, .legal-links a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-contacts p {
        margin: 0.5rem 0;
        line-height: 1.5;
    }
    .footer-contacts a {
        color: #555;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .social-links, .legal-links {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    .footer-bottom {
        max-width: 1200px;
        margin: 2rem auto 0;
        padding-top: 1.5rem;
        border-top: 1px solid #dee2e6;
        text-align: center;
        font-size: 0.9rem;
        color: #777;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        .footer-section {
            align-items: center;
            text-align: center;
        }
    }

.cookies--light-v6 {
        width: 100%;
        position: fixed;
        bottom: 0;
        z-index: 1000;
        padding: 40px 20px;
        background: var(--bg-page);
        color: var(--fg-on-page);
        border-top: 1px solid var(--border-on-surface-light);
    }

    .cookies__inner {
        width: var(--max-w);
        margin: 0 auto;
        font-size: 0.9rem;
        color: var(--neutral-700);
    }

    .cookies__inner h2 {
        margin: 0 0 6px;
        font-size: 1rem;
    }

    .cookies__inner p {
        margin: 0;
    }

    .cookie-banner__buttons {
        margin-top: 1rem;
        display: flex;
        gap: 1rem;
        flex-shrink: 0;
    }

    .cookie-banner__btn {
        padding: 1rem 2rem;
        border: 2px solid var(--ring);
        border-radius: var(--radius-lg);
        font-size: 1rem;
        cursor: pointer;
        transition: all .25s;
        white-space: nowrap;
        font-weight: 500;
    }

    .cookie-banner__accept {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent);
    }

    .cookie-banner__accept:hover {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

    .cookie-banner__reject {
        background: transparent;
        color: var(--fg-on-page);
    }

    .cookie-banner__reject:hover {
        background: var(--bg-alt);
    }

    .cookie-banner__manage {
        background: transparent;
        color: var(--link);
        border-color: var(--link);
    }

    .cookie-banner__manage:hover {
        background: var(--link);
        color: var(--bg-page);
    }

    @media (max-width: 767px) {
        .cookie-banner__c {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .cookie-banner__buttons {
            width: 100%;
            flex-wrap: wrap;
        }

        .cookie-banner__btn {
            flex: 1;
            min-width: 0;
            padding: 0.85rem 1.5rem;
        }
    }

.contact-support--light-v4 {
        padding: 56px 20px;
        background:
                radial-gradient(120% 120% at 0% 0%, rgba(59, 130, 246, 0.15), transparent 55%),
                radial-gradient(120% 120% at 100% 20%, rgba(16, 185, 129, 0.15), transparent 55%),
                #fff;
        color: var(--fg-on-page);

    }

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

    .contact-support__columns {
        display: grid;
        gap: 16px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-support__col {
        padding: 20px 22px;
        border-radius: 20px;
        background: #fff;
        border: 1px solid var(--ring);
        box-shadow: 0 14px 26px rgba(15, 23, 42, 0.1);
        position: relative;
        overflow: hidden;
    }

    .contact-support__col::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(120deg, rgba(59, 130, 246, 0.08), transparent 60%);
        pointer-events: none;
    }

    .contact-support__col h4 {
        margin: 0 0 6px;
        font-size: 1.05rem;

    }

    .contact-support__col p {
        margin: 0;
        color: var(--neutral-600);
    }

    @media (max-width: 767px) {
        .contact-support__columns {
            grid-template-columns: repeat(1, minmax(0, 1fr));
        }
    }

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

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

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

        transform: translateY(-18px);
    }

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

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

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

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

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

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

    .index-recommendations__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        margin-bottom: 12px;
        position: relative;
        z-index: 1;
    }

    .index-recommendations__icon {
        width: 52px;
        height: 52px;
        border-radius: 18px;
        background: var(--bg-page);
        border: 1px solid var(--border-on-surface);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 26px;
        flex: 0 0 auto;
    }

    .index-recommendations__tag {
        padding: 6px 10px;
        border-radius: 999px;
        background: var(--bg-accent);
        border: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-accent);
        font-size: 10px;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        white-space: nowrap;
        flex: 0 0 auto;
    }

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

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

    .index-recommendations__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__cta::after {
        content: '->';
        font-size: 12px;
    }

    .index-recommendations__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);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
}
.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}
.header-logo {
    font-weight: 700;
    font-size: calc(var(--font-size-base) * 1.5);
    color: var(--brand);
    white-space: nowrap;
}
.header-nav {
    display: flex;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav-link {
    color: var(--link);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    display: block;
}
.nav-link:hover,
.nav-link:focus {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
    outline: none;
}
.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}
.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }
    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        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: calc(var(--gap) * 1.5);
    }
    .nav-link {
        padding: var(--space-y) var(--space-x);
        font-size: calc(var(--font-size-base) * 1.1);
    }
    .burger-btn.active .burger-line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }
    .burger-btn.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-btn.active .burger-line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 2.5rem 1rem;
        font-family: sans-serif;
        border-top: 1px solid #dee2e6;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }
    .footer-section {
        display: flex;
        flex-direction: column;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #2c3e50;
        margin-bottom: 1rem;
    }
    .footer-disclaimer {
        font-size: 0.85rem;
        color: #666;
        line-height: 1.4;
        margin-top: 0.5rem;
    }
    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #2c3e50;
    }
    .footer-nav, .social-links, .legal-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-nav li, .social-links a, .legal-links a {
        margin-bottom: 0.6rem;
    }
    .footer-nav a, .social-links a, .legal-links a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-nav a:hover, .social-links a:hover, .legal-links a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-contacts p {
        margin: 0.5rem 0;
        line-height: 1.5;
    }
    .footer-contacts a {
        color: #555;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .social-links, .legal-links {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    .footer-bottom {
        max-width: 1200px;
        margin: 2rem auto 0;
        padding-top: 1.5rem;
        border-top: 1px solid #dee2e6;
        text-align: center;
        font-size: 0.9rem;
        color: #777;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        .footer-section {
            align-items: center;
            text-align: center;
        }
    }

.cookies--light-v6 {
        width: 100%;
        position: fixed;
        bottom: 0;
        z-index: 1000;
        padding: 40px 20px;
        background: var(--bg-page);
        color: var(--fg-on-page);
        border-top: 1px solid var(--border-on-surface-light);
    }

    .cookies__inner {
        width: var(--max-w);
        margin: 0 auto;
        font-size: 0.9rem;
        color: var(--neutral-700);
    }

    .cookies__inner h2 {
        margin: 0 0 6px;
        font-size: 1rem;
    }

    .cookies__inner p {
        margin: 0;
    }

    .cookie-banner__buttons {
        margin-top: 1rem;
        display: flex;
        gap: 1rem;
        flex-shrink: 0;
    }

    .cookie-banner__btn {
        padding: 1rem 2rem;
        border: 2px solid var(--ring);
        border-radius: var(--radius-lg);
        font-size: 1rem;
        cursor: pointer;
        transition: all .25s;
        white-space: nowrap;
        font-weight: 500;
    }

    .cookie-banner__accept {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent);
    }

    .cookie-banner__accept:hover {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

    .cookie-banner__reject {
        background: transparent;
        color: var(--fg-on-page);
    }

    .cookie-banner__reject:hover {
        background: var(--bg-alt);
    }

    .cookie-banner__manage {
        background: transparent;
        color: var(--link);
        border-color: var(--link);
    }

    .cookie-banner__manage:hover {
        background: var(--link);
        color: var(--bg-page);
    }

    @media (max-width: 767px) {
        .cookie-banner__c {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .cookie-banner__buttons {
            width: 100%;
            flex-wrap: wrap;
        }

        .cookie-banner__btn {
            flex: 1;
            min-width: 0;
            padding: 0.85rem 1.5rem;
        }
    }

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

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

    .contact-rail .intro {
        margin-bottom: 18px;
        max-width: 720px;
    }

    .contact-rail h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 40px);
        letter-spacing: -0.02em;
    }

    .contact-rail .intro p {
        margin: 10px 0 0;
        color: var(--neutral-600);
    }

    .contact-rail .layout {
        display: grid;
        grid-template-columns: minmax(260px, 1fr) minmax(220px, 320px);
        gap: 16px;
        position: relative;
    }

    .contact-rail .layout::before {
        content: '';
        position: absolute;
        left: -10px;
        top: 0;
        width: 3px;
        height: 100%;
        background: var(--bg-primary);
        border-radius: 999px;
        opacity: 0.25;
    }

    .contact-rail .info,
    .contact-rail .social-box {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        padding: 16px;
        box-shadow: var(--shadow-sm);
    }

    .contact-rail h3 {
        margin: 0 0 12px;
    }

    .contact-rail .items {
        display: grid;
        gap: 10px;
    }

    .contact-rail .item {
        padding: 10px 12px;
        border-radius: var(--radius-md);
        background: var(--surface-2);
        border: 1px solid var(--border-on-surface);
    }

    .contact-rail .label {
        display: block;
        font-size: 12px;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--neutral-600);
        margin-bottom: 6px;
    }

    .contact-rail .value {
        color: var(--fg-on-page);
        font-weight: 600;
    }

    .contact-rail .social-title {
        margin: 0 0 10px;
        font-weight: 600;
        color: var(--fg-on-page);
    }

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

    .contact-rail .social a {
        width: 34px;
        height: 34px;
        display: grid;
        place-items: center;
        border: 1px solid var(--border-on-surface);
        border-radius: 50%;
        color: var(--fg-on-page);
        text-decoration: none;
        background: var(--surface-2);
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .contact-rail .social a:hover {
        transform: translateY(-2px);
    }

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

        .contact-rail .layout::before {
            display: none;
        }
    }

.form-layers {
        padding: clamp(56px, 8vw, 96px) 16px;
        background: var(--gradient-hero);
    }

    .form-layers .wrap {
        max-width: 980px;
        margin: 0 auto;
        display: grid;
        gap: 12px;
    }

    .form-layers .intro h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 42px);
        color: var(--fg-on-primary);
    }

    .form-layers .intro p {
        margin: 10px 0 0;
        color: var(--fg-on-primary);
    }

    .form-layers .layers {
        border: 1px solid var(--neutral-600);
        border-radius: 16px;
        background: var(--neutral-0);
        padding: 12px;
        display: grid;
        gap: 10px;
        color: var(--fg-on-surface);
    }

    .form-layers fieldset {
        border: 1px solid var(--neutral-300);
        border-radius: 12px;
        padding: 10px;
        display: grid;
        gap: 8px;
    }

    .form-layers legend {
        padding: 0 6px;
    }

    .form-layers label {
        display: grid;
        gap: 6px;
        color: var(--neutral-800);
    }

    .form-layers input:not([type="checkbox"]),
    .form-layers textarea {
        width: 100%;
        border: 1px solid var(--neutral-300);
        border-radius: 8px;
        background: var(--neutral-0);
        color: var(--neutral-900);
        padding: 9px;
        font: inherit;
    }

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

    .form-layers button {
        justify-self: start;
        border: 0;
        border-radius: 10px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        padding: 16px 32px;
        margin: 0 auto;
        font-weight: bold;
        cursor: pointer;
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .form-layers button:hover {
        background: var(--bg-accent-hover);
    }

    .form-layers .notes {
        border: 1px solid var(--neutral-600);
        border-radius: 14px;
        background: var(--fg-on-primary);
        padding: 12px;
    }

    .form-layers .notes p {
        margin: 0 0 6px;
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
}
.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}
.header-logo {
    font-weight: 700;
    font-size: calc(var(--font-size-base) * 1.5);
    color: var(--brand);
    white-space: nowrap;
}
.header-nav {
    display: flex;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav-link {
    color: var(--link);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    display: block;
}
.nav-link:hover,
.nav-link:focus {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
    outline: none;
}
.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}
.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }
    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        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: calc(var(--gap) * 1.5);
    }
    .nav-link {
        padding: var(--space-y) var(--space-x);
        font-size: calc(var(--font-size-base) * 1.1);
    }
    .burger-btn.active .burger-line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }
    .burger-btn.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-btn.active .burger-line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 2.5rem 1rem;
        font-family: sans-serif;
        border-top: 1px solid #dee2e6;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }
    .footer-section {
        display: flex;
        flex-direction: column;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #2c3e50;
        margin-bottom: 1rem;
    }
    .footer-disclaimer {
        font-size: 0.85rem;
        color: #666;
        line-height: 1.4;
        margin-top: 0.5rem;
    }
    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #2c3e50;
    }
    .footer-nav, .social-links, .legal-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-nav li, .social-links a, .legal-links a {
        margin-bottom: 0.6rem;
    }
    .footer-nav a, .social-links a, .legal-links a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-nav a:hover, .social-links a:hover, .legal-links a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-contacts p {
        margin: 0.5rem 0;
        line-height: 1.5;
    }
    .footer-contacts a {
        color: #555;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .social-links, .legal-links {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    .footer-bottom {
        max-width: 1200px;
        margin: 2rem auto 0;
        padding-top: 1.5rem;
        border-top: 1px solid #dee2e6;
        text-align: center;
        font-size: 0.9rem;
        color: #777;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        .footer-section {
            align-items: center;
            text-align: center;
        }
    }

.cookies--light-v6 {
        width: 100%;
        position: fixed;
        bottom: 0;
        z-index: 1000;
        padding: 40px 20px;
        background: var(--bg-page);
        color: var(--fg-on-page);
        border-top: 1px solid var(--border-on-surface-light);
    }

    .cookies__inner {
        width: var(--max-w);
        margin: 0 auto;
        font-size: 0.9rem;
        color: var(--neutral-700);
    }

    .cookies__inner h2 {
        margin: 0 0 6px;
        font-size: 1rem;
    }

    .cookies__inner p {
        margin: 0;
    }

    .cookie-banner__buttons {
        margin-top: 1rem;
        display: flex;
        gap: 1rem;
        flex-shrink: 0;
    }

    .cookie-banner__btn {
        padding: 1rem 2rem;
        border: 2px solid var(--ring);
        border-radius: var(--radius-lg);
        font-size: 1rem;
        cursor: pointer;
        transition: all .25s;
        white-space: nowrap;
        font-weight: 500;
    }

    .cookie-banner__accept {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent);
    }

    .cookie-banner__accept:hover {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

    .cookie-banner__reject {
        background: transparent;
        color: var(--fg-on-page);
    }

    .cookie-banner__reject:hover {
        background: var(--bg-alt);
    }

    .cookie-banner__manage {
        background: transparent;
        color: var(--link);
        border-color: var(--link);
    }

    .cookie-banner__manage:hover {
        background: var(--link);
        color: var(--bg-page);
    }

    @media (max-width: 767px) {
        .cookie-banner__c {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .cookie-banner__buttons {
            width: 100%;
            flex-wrap: wrap;
        }

        .cookie-banner__btn {
            flex: 1;
            min-width: 0;
            padding: 0.85rem 1.5rem;
        }
    }

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

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

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

    .policy-table .lead {
        margin: 10px 0 16px;
        color: var(--neutral-600);
    }

    .policy-table .rows {
        display: grid;
        gap: 8px;
    }

    .policy-table .row {
        display: grid;
        grid-template-columns: 56px 1fr auto;
        gap: 10px;
        align-items: start;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
        background: var(--surface-1);
        padding: 10px;
    }

    .policy-table .left {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: var(--bg-alt);
        display: grid;
        place-items: center;
        color: var(--neutral-800);
        font-weight: 600;
    }

    .policy-table h3 {
        margin: 0 0 6px;
    }

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

    .policy-table .right {
        color: var(--neutral-600);
        font-size: .9rem;
    }

    @media (max-width: 640px) {
        .policy-table .row {
            grid-template-columns: 1fr;
        }
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
}
.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}
.header-logo {
    font-weight: 700;
    font-size: calc(var(--font-size-base) * 1.5);
    color: var(--brand);
    white-space: nowrap;
}
.header-nav {
    display: flex;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav-link {
    color: var(--link);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    display: block;
}
.nav-link:hover,
.nav-link:focus {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
    outline: none;
}
.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}
.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }
    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        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: calc(var(--gap) * 1.5);
    }
    .nav-link {
        padding: var(--space-y) var(--space-x);
        font-size: calc(var(--font-size-base) * 1.1);
    }
    .burger-btn.active .burger-line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }
    .burger-btn.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-btn.active .burger-line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 2.5rem 1rem;
        font-family: sans-serif;
        border-top: 1px solid #dee2e6;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }
    .footer-section {
        display: flex;
        flex-direction: column;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #2c3e50;
        margin-bottom: 1rem;
    }
    .footer-disclaimer {
        font-size: 0.85rem;
        color: #666;
        line-height: 1.4;
        margin-top: 0.5rem;
    }
    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #2c3e50;
    }
    .footer-nav, .social-links, .legal-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-nav li, .social-links a, .legal-links a {
        margin-bottom: 0.6rem;
    }
    .footer-nav a, .social-links a, .legal-links a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-nav a:hover, .social-links a:hover, .legal-links a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-contacts p {
        margin: 0.5rem 0;
        line-height: 1.5;
    }
    .footer-contacts a {
        color: #555;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .social-links, .legal-links {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    .footer-bottom {
        max-width: 1200px;
        margin: 2rem auto 0;
        padding-top: 1.5rem;
        border-top: 1px solid #dee2e6;
        text-align: center;
        font-size: 0.9rem;
        color: #777;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        .footer-section {
            align-items: center;
            text-align: center;
        }
    }

.cookies--light-v6 {
        width: 100%;
        position: fixed;
        bottom: 0;
        z-index: 1000;
        padding: 40px 20px;
        background: var(--bg-page);
        color: var(--fg-on-page);
        border-top: 1px solid var(--border-on-surface-light);
    }

    .cookies__inner {
        width: var(--max-w);
        margin: 0 auto;
        font-size: 0.9rem;
        color: var(--neutral-700);
    }

    .cookies__inner h2 {
        margin: 0 0 6px;
        font-size: 1rem;
    }

    .cookies__inner p {
        margin: 0;
    }

    .cookie-banner__buttons {
        margin-top: 1rem;
        display: flex;
        gap: 1rem;
        flex-shrink: 0;
    }

    .cookie-banner__btn {
        padding: 1rem 2rem;
        border: 2px solid var(--ring);
        border-radius: var(--radius-lg);
        font-size: 1rem;
        cursor: pointer;
        transition: all .25s;
        white-space: nowrap;
        font-weight: 500;
    }

    .cookie-banner__accept {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent);
    }

    .cookie-banner__accept:hover {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

    .cookie-banner__reject {
        background: transparent;
        color: var(--fg-on-page);
    }

    .cookie-banner__reject:hover {
        background: var(--bg-alt);
    }

    .cookie-banner__manage {
        background: transparent;
        color: var(--link);
        border-color: var(--link);
    }

    .cookie-banner__manage:hover {
        background: var(--link);
        color: var(--bg-page);
    }

    @media (max-width: 767px) {
        .cookie-banner__c {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .cookie-banner__buttons {
            width: 100%;
            flex-wrap: wrap;
        }

        .cookie-banner__btn {
            flex: 1;
            min-width: 0;
            padding: 0.85rem 1.5rem;
        }
    }

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

    .terms-scroll .wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 240px 1fr;
        gap: 16px;
    }

    .terms-scroll .sidebar {
        position: sticky;
        top: 16px;
        align-self: start;
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-2);
        padding: 12px;
    }

    .terms-scroll .sidebar h2 {
        margin: 0;
        font-size: clamp(24px, 3vw, 30px);
    }

    .terms-scroll .sidebar p {
        margin: 8px 0 0;
        color: var(--neutral-600);
    }

    .terms-scroll .content {
        display: grid;
        gap: 10px;
    }

    .terms-scroll .block {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
        background: var(--surface-1);
        padding: 12px;
    }

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

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

    @media (max-width: 860px) {
        .terms-scroll .wrap {
            grid-template-columns: 1fr;
        }

        .terms-scroll .sidebar {
            position: static;
        }
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
}
.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}
.header-logo {
    font-weight: 700;
    font-size: calc(var(--font-size-base) * 1.5);
    color: var(--brand);
    white-space: nowrap;
}
.header-nav {
    display: flex;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav-link {
    color: var(--link);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    display: block;
}
.nav-link:hover,
.nav-link:focus {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
    outline: none;
}
.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}
.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }
    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        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: calc(var(--gap) * 1.5);
    }
    .nav-link {
        padding: var(--space-y) var(--space-x);
        font-size: calc(var(--font-size-base) * 1.1);
    }
    .burger-btn.active .burger-line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }
    .burger-btn.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-btn.active .burger-line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 2.5rem 1rem;
        font-family: sans-serif;
        border-top: 1px solid #dee2e6;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }
    .footer-section {
        display: flex;
        flex-direction: column;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #2c3e50;
        margin-bottom: 1rem;
    }
    .footer-disclaimer {
        font-size: 0.85rem;
        color: #666;
        line-height: 1.4;
        margin-top: 0.5rem;
    }
    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #2c3e50;
    }
    .footer-nav, .social-links, .legal-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-nav li, .social-links a, .legal-links a {
        margin-bottom: 0.6rem;
    }
    .footer-nav a, .social-links a, .legal-links a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-nav a:hover, .social-links a:hover, .legal-links a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-contacts p {
        margin: 0.5rem 0;
        line-height: 1.5;
    }
    .footer-contacts a {
        color: #555;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .social-links, .legal-links {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    .footer-bottom {
        max-width: 1200px;
        margin: 2rem auto 0;
        padding-top: 1.5rem;
        border-top: 1px solid #dee2e6;
        text-align: center;
        font-size: 0.9rem;
        color: #777;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        .footer-section {
            align-items: center;
            text-align: center;
        }
    }

.cookies--light-v6 {
        width: 100%;
        position: fixed;
        bottom: 0;
        z-index: 1000;
        padding: 40px 20px;
        background: var(--bg-page);
        color: var(--fg-on-page);
        border-top: 1px solid var(--border-on-surface-light);
    }

    .cookies__inner {
        width: var(--max-w);
        margin: 0 auto;
        font-size: 0.9rem;
        color: var(--neutral-700);
    }

    .cookies__inner h2 {
        margin: 0 0 6px;
        font-size: 1rem;
    }

    .cookies__inner p {
        margin: 0;
    }

    .cookie-banner__buttons {
        margin-top: 1rem;
        display: flex;
        gap: 1rem;
        flex-shrink: 0;
    }

    .cookie-banner__btn {
        padding: 1rem 2rem;
        border: 2px solid var(--ring);
        border-radius: var(--radius-lg);
        font-size: 1rem;
        cursor: pointer;
        transition: all .25s;
        white-space: nowrap;
        font-weight: 500;
    }

    .cookie-banner__accept {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent);
    }

    .cookie-banner__accept:hover {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

    .cookie-banner__reject {
        background: transparent;
        color: var(--fg-on-page);
    }

    .cookie-banner__reject:hover {
        background: var(--bg-alt);
    }

    .cookie-banner__manage {
        background: transparent;
        color: var(--link);
        border-color: var(--link);
    }

    .cookie-banner__manage:hover {
        background: var(--link);
        color: var(--bg-page);
    }

    @media (max-width: 767px) {
        .cookie-banner__c {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .cookie-banner__buttons {
            width: 100%;
            flex-wrap: wrap;
        }

        .cookie-banner__btn {
            flex: 1;
            min-width: 0;
            padding: 0.85rem 1.5rem;
        }
    }

.th-core-a {
        padding: clamp(56px, 10vw, 110px) 16px;
        background: var(--gradient-accent);
        color: var(--accent-contrast);
    }

    .th-core-a .box {
        max-width: 700px;
        margin: 0 auto;
        text-align: center;
    }

    .th-core-a h1 {
        margin: 0;
        font-size: clamp(30px, 5vw, 50px);
    }

    .th-core-a p {
        margin: 10px 0 0;
        opacity: .92;
    }

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

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
}
.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}
.header-logo {
    font-weight: 700;
    font-size: calc(var(--font-size-base) * 1.5);
    color: var(--brand);
    white-space: nowrap;
}
.header-nav {
    display: flex;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav-link {
    color: var(--link);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    display: block;
}
.nav-link:hover,
.nav-link:focus {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
    outline: none;
}
.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}
.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }
    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        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: calc(var(--gap) * 1.5);
    }
    .nav-link {
        padding: var(--space-y) var(--space-x);
        font-size: calc(var(--font-size-base) * 1.1);
    }
    .burger-btn.active .burger-line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }
    .burger-btn.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-btn.active .burger-line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 2.5rem 1rem;
        font-family: sans-serif;
        border-top: 1px solid #dee2e6;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }
    .footer-section {
        display: flex;
        flex-direction: column;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #2c3e50;
        margin-bottom: 1rem;
    }
    .footer-disclaimer {
        font-size: 0.85rem;
        color: #666;
        line-height: 1.4;
        margin-top: 0.5rem;
    }
    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #2c3e50;
    }
    .footer-nav, .social-links, .legal-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-nav li, .social-links a, .legal-links a {
        margin-bottom: 0.6rem;
    }
    .footer-nav a, .social-links a, .legal-links a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-nav a:hover, .social-links a:hover, .legal-links a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-contacts p {
        margin: 0.5rem 0;
        line-height: 1.5;
    }
    .footer-contacts a {
        color: #555;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .social-links, .legal-links {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    .footer-bottom {
        max-width: 1200px;
        margin: 2rem auto 0;
        padding-top: 1.5rem;
        border-top: 1px solid #dee2e6;
        text-align: center;
        font-size: 0.9rem;
        color: #777;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        .footer-section {
            align-items: center;
            text-align: center;
        }
    }

.cookies--light-v6 {
        width: 100%;
        position: fixed;
        bottom: 0;
        z-index: 1000;
        padding: 40px 20px;
        background: var(--bg-page);
        color: var(--fg-on-page);
        border-top: 1px solid var(--border-on-surface-light);
    }

    .cookies__inner {
        width: var(--max-w);
        margin: 0 auto;
        font-size: 0.9rem;
        color: var(--neutral-700);
    }

    .cookies__inner h2 {
        margin: 0 0 6px;
        font-size: 1rem;
    }

    .cookies__inner p {
        margin: 0;
    }

    .cookie-banner__buttons {
        margin-top: 1rem;
        display: flex;
        gap: 1rem;
        flex-shrink: 0;
    }

    .cookie-banner__btn {
        padding: 1rem 2rem;
        border: 2px solid var(--ring);
        border-radius: var(--radius-lg);
        font-size: 1rem;
        cursor: pointer;
        transition: all .25s;
        white-space: nowrap;
        font-weight: 500;
    }

    .cookie-banner__accept {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent);
    }

    .cookie-banner__accept:hover {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

    .cookie-banner__reject {
        background: transparent;
        color: var(--fg-on-page);
    }

    .cookie-banner__reject:hover {
        background: var(--bg-alt);
    }

    .cookie-banner__manage {
        background: transparent;
        color: var(--link);
        border-color: var(--link);
    }

    .cookie-banner__manage:hover {
        background: var(--link);
        color: var(--bg-page);
    }

    @media (max-width: 767px) {
        .cookie-banner__c {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .cookie-banner__buttons {
            width: 100%;
            flex-wrap: wrap;
        }

        .cookie-banner__btn {
            flex: 1;
            min-width: 0;
            padding: 0.85rem 1.5rem;
        }
    }

.nf-core-b {
        padding: clamp(56px, 10vw, 110px) 16px;
        background: var(--bg-page);
        color: var(--fg-on-page);
    }

    .nf-core-b .box {
        max-width: 700px;
        margin: 0 auto;
        text-align: center;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        padding: clamp(18px, 3vw, 30px);
    }

    .nf-core-b h1 {
        margin: 0;
        font-size: clamp(32px, 6vw, 56px);
    }

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

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