:root {
  --font-family: "Lato", sans-serif;
  --font-size-base: 16.7px;
  --line-height-base: 1.64;

  --max-w: 880px;
  --space-x: 1.11rem;
  --space-y: 1.5rem;
  --gap: 1.04rem;

  --radius-xl: 0.75rem;
  --radius-lg: 0.52rem;
  --radius-md: 0.3rem;
  --radius-sm: 0.18rem;

  --shadow-sm: 0 1px 1px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 8px rgba(0,0,0,0.05);
  --shadow-lg: 0 10px 28px rgba(0,0,0,0.06);

  --overlay: rgba(0, 0, 0, 0.4);
  --anim-duration: 470ms;
  --anim-ease: cubic-bezier(0.16,1,0.3,1);
  --random-number: 2;

  --brand: #2A6BFF;
  --brand-contrast: #FFFFFF;
  --accent: #FF6B2A;
  --accent-contrast: #FFFFFF;

  --neutral-0: #FFFFFF;
  --neutral-100: #F8FAFC;
  --neutral-300: #E2E8F0;
  --neutral-600: #64748B;
  --neutral-800: #1E293B;
  --neutral-900: #0F172A;

  --bg-page: #FFFFFF;
  --fg-on-page: #1E293B;

  --bg-alt: #F8FAFC;
  --fg-on-alt: #334155;

  --surface-1: #FFFFFF;
  --surface-2: #F8FAFC;
  --fg-on-surface: #1E293B;
  --border-on-surface: #E2E8F0;

  --surface-light: #FFFFFF;
  --fg-on-surface-light: #475569;
  --border-on-surface-light: #F1F5F9;

  --bg-primary: #2A6BFF;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #1A5BEF;
  --ring: #2A6BFF;

  --bg-accent: #FFF2EC;
  --fg-on-accent: #B34A1E;
  --bg-accent-hover: #FF8550;

  --link: #2A6BFF;
  --link-hover: #1A5BEF;

  --gradient-hero: linear-gradient(135deg, #2A6BFF 0%, #4F8AFF 100%);
  --gradient-accent: linear-gradient(135deg, #FF6B2A 0%, #FF8A4F 100%);

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

.header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background-color: var(--overlay);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        transition: background-color var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    }
    .header.scrolled {
        background-color: var(--surface-1);
        box-shadow: var(--shadow-md);
    }
    .header__container {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
    }
    .header__logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--fg-on-surface);
        text-decoration: none;
        transition: color var(--anim-duration) var(--anim-ease);
        flex-shrink: 0;
    }
    .header__logo:hover {
        color: var(--link-hover);
    }
    .header__nav {
        display: flex;
    }
    .nav__list {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: calc(var(--gap) * 1.5);
    }
    .nav__link {
        color: var(--fg-on-surface);
        text-decoration: none;
        font-weight: 500;
        padding: calc(var(--space-y) / 2) calc(var(--space-x) / 2);
        border-radius: var(--radius-sm);
        transition: all var(--anim-duration) var(--anim-ease);
        position: relative;
    }
    .nav__link:hover,
    .nav__link:focus-visible {
        color: var(--link-hover);
        background-color: var(--btn-ghost-bg-hover);
        outline: none;
    }
    .nav__link:focus-visible {
        box-shadow: 0 0 0 2px var(--ring);
    }
    .header__burger {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 22px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }
    .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);
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
        transform: translateY(9.5px) rotate(45deg);
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
        opacity: 0;
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
        transform: translateY(-9.5px) rotate(-45deg);
    }

    @media (max-width: 767px) {
        .header__burger {
            display: flex;
        }
        .header__nav {
            position: fixed;
            top: 0;
            right: 0;
            width: 80%;
            max-width: 300px;
            height: 100vh;
            background-color: var(--surface-1);
            box-shadow: var(--shadow-lg);
            transform: translateX(100%);
            transition: transform var(--anim-duration) var(--anim-ease);
            padding: 80px var(--space-x) var(--space-y);
            overflow-y: auto;
            z-index: 999;
        }
        .header__nav.active {
            transform: translateX(0);
        }
        .nav__list {
            flex-direction: column;
            gap: var(--gap);
        }
        .nav__link {
            display: block;
            padding: var(--space-y) var(--space-x);
            border-radius: var(--radius-md);
        }
        .header__container {
            padding: calc(var(--space-y) * 0.75) var(--space-x);
        }
    }

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2rem 1rem;
        font-family: sans-serif;
        font-size: 0.9rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .footer-section {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid #e9ecef;
    }
    .footer-section:last-of-type {
        border-bottom: none;
        padding-bottom: 0;
        justify-content: center;
        text-align: center;
    }
    .footer-logo {
        font-size: 1.5rem;
        font-weight: bold;
        color: #0056b3;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #0056b3;
        text-decoration: underline;
    }
    .footer-contacts {
        line-height: 1.6;
    }
    .footer-contacts a {
        color: #0056b3;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .footer-legal-links {
        margin-top: 0.5rem;
    }
    .footer-legal-links a {
        color: #6c757d;
        text-decoration: none;
        margin: 0 0.5rem;
    }
    .footer-legal-links a:hover {
        text-decoration: underline;
        color: #333;
    }
    .disclaimer p {
        margin: 0;
        color: #6c757d;
        font-size: 0.85rem;
        line-height: 1.4;
        max-width: 800px;
    }
    @media (max-width: 768px) {
        .footer-section {
            flex-direction: column;
            align-items: flex-start;
            gap: 1rem;
        }
        .footer-nav ul {
            flex-direction: column;
            gap: 0.75rem;
        }
        .footer-legal-links {
            align-self: stretch;
            text-align: center;
        }
        .disclaimer p {
            text-align: left;
        }
    }

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

    .cookie-cv7__card {
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        background: linear-gradient(140deg, var(--brand), var(--bg-primary-hover));
        color: var(--brand-contrast);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv7__card h3 {
        margin: 0 0 6px;
    }

    .cookie-cv7__card p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv7__actions {
        margin-top: 12px;
        display: grid;
        gap: 8px;
    }

    .cookie-cv7__actions button {
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.14);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

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

* {
        box-sizing: border-box;
    }

    .intro-tableau-l14 {
        padding: clamp(3.6rem, 8vw, 6.5rem) var(--space-x);
        background: linear-gradient(180deg, var(--surface-1), var(--bg-alt));
        color: var(--fg-on-page);
    }

    .intro-tableau-l14__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1.1fr .9fr;
        gap: 1rem;
        align-items: start;
    }

    .intro-tableau-l14__copy p {
        margin: 0;
        color: var(--neutral-600);
        font-size: .82rem;
        letter-spacing: .1em;
        text-transform: uppercase;
    }

    .intro-tableau-l14__copy h1 {
        margin: .6rem 0 0;
        font-size: clamp(2.4rem, 5vw, 4.1rem);
        line-height: 1.04;
    }

    .intro-tableau-l14__copy span {
        display: block;
        margin-top: .9rem;
        color: var(--neutral-600);
    }

    .intro-tableau-l14__stats {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: .75rem;
    }

    .intro-tableau-l14__stats div {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
    }

    .intro-tableau-l14__stats strong {
        display: block;
        color: var(--brand);
        font-size: 1.35rem;
    }

    .intro-tableau-l14__stats span {
        display: block;
        margin-top: .25rem;
        color: var(--neutral-600);
    }

    @media (max-width: 860px) {
        .intro-tableau-l14__wrap {
            grid-template-columns: 1fr;
        }
    }

.cta-struct-v3 {
        padding: calc(var(--space-y) * 1.9) var(--space-x);
        background: var(--gradient-hero);
        color: var(--brand-contrast)
    }

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

    .cta-struct-v3 h2, .cta-struct-v3 h3, .cta-struct-v3 p {
        margin: 0
    }

    .cta-struct-v3 a {
        text-decoration: none
    }

    .cta-struct-v3 .center, .cta-struct-v3 .banner, .cta-struct-v3 .stack, .cta-struct-v3 .bar, .cta-struct-v3 .split, .cta-struct-v3 .duo article {
        padding: .9rem;
        border-radius: var(--radius-xl);
        background: var(--chip-bg);
        border: 1px solid var(--border-on-surface)
    }

    .cta-struct-v3 .center {
        display: grid;
        gap: .5rem;
        justify-items: center;
        text-align: center
    }

    .cta-struct-v3 .split {
        display: grid;
        grid-template-columns:1fr auto;
        gap: var(--gap);
        align-items: center
    }

    .cta-struct-v3 .actions {
        display: flex;
        gap: .45rem;
        flex-wrap: wrap
    }

    .cta-struct-v3 .actions a, .cta-struct-v3 .center a, .cta-struct-v3 .banner > a, .cta-struct-v3 .duo a {
        display: inline-flex;
        min-height: 2.35rem;
        padding: 0 .85rem;
        align-items: center;
        border-radius: var(--radius-sm);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border: 1px solid var(--ring)
    }

    .cta-struct-v3 .banner {
        display: grid;
        gap: .6rem
    }

    .cta-struct-v3 .numbers {
        display: grid;
        grid-template-columns:repeat(3, minmax(0, 1fr));
        gap: .5rem
    }

    .cta-struct-v3 .numbers div {
        padding: .6rem;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light)
    }

    .cta-struct-v3 .duo {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: var(--gap)
    }

    .cta-struct-v3 .duo article {
        display: grid;
        gap: .45rem
    }

    .cta-struct-v3 .stack {
        display: grid;
        gap: .6rem;
        justify-items: start
    }

    .cta-struct-v3 .chips {
        display: flex;
        gap: .35rem;
        flex-wrap: wrap
    }

    .cta-struct-v3 .chips span {
        padding: .28rem .5rem;
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light)
    }

    .cta-struct-v3 .bar {
        display: grid;
        grid-template-columns:1fr auto;
        gap: var(--gap);
        align-items: center
    }

    @media (max-width: 820px) {
        .cta-struct-v3 .split, .cta-struct-v3 .bar, .cta-struct-v3 .duo {
            grid-template-columns:1fr
        }

        .cta-struct-v3 .numbers {
            grid-template-columns:1fr 1fr
        }
    }

    @media (max-width: 620px) {
        .cta-struct-v3 .numbers {
            grid-template-columns:1fr
        }
    }

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

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

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

        transform: translateY(-18px);
    }

    .index-recommendations-list__eyebrow {
        margin: 0 0 10px;
        text-transform: uppercase;
        letter-spacing: 0.22em;
        font-size: 12px;
        color: var(--neutral-600);
    }

    .index-recommendations-list__h h2 {
        margin: 0;
        font-size: clamp(28px, 4.6vw, 48px);
        letter-spacing: -0.02em;
        color: var(--fg-on-page);
    }

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

    .index-recommendations-list__row {
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface);
        background: var(--surface-light);
        box-shadow: var(--shadow-sm);
        overflow: hidden;

        transform: translateY(24px);
    }

    .index-recommendations-list__q {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        cursor: pointer;
        padding: 14px 16px;
        border: 0;
        background: transparent;
        color: var(--fg-on-page);
        font: inherit;
        text-align: left;
    }

    .index-recommendations-list__left {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        min-width: 0;
    }

    .index-recommendations-list__icon {
        width: 36px;
        height: 36px;
        border-radius: 12px;
        background: var(--bg-accent);
        border: 1px solid var(--border-on-surface);
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
    }

    .index-recommendations-list__title {
        font-weight: 900;
        font-size: 14px;
        color: var(--fg-on-page);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 30ch;
    }

    .index-recommendations-list__right {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        flex: 0 0 auto;
    }

    .index-recommendations-list__tag {
        padding: 6px 10px;
        border-radius: 999px;
        background: var(--surface-2);
        border: 1px solid var(--border-on-surface);
        color: var(--neutral-800);
        font-size: 10px;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        white-space: nowrap;
    }

    .index-recommendations-list__chev {
        width: 30px;
        height: 30px;
        border-radius: 999px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-primary);
        border: 1px solid var(--ring);
        color: var(--fg-on-primary);
        font-weight: 900;
        line-height: 1;
    }

    .index-recommendations-list__a {
        display: none;
        padding: 0 16px 14px;
        overflow: hidden;
    }

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

    .index-recommendations-list__actions {
        margin-top: 10px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        flex-wrap: wrap;
    }

    .index-recommendations-list__hint {
        font-size: 12px;
        color: var(--neutral-600);
        text-transform: uppercase;
        letter-spacing: 0.18em;
    }

    .index-recommendations-list__cta {
        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;
    }

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

    .index-recommendations-list__cta:hover {
        background: var(--bg-primary-hover);
    }

    @media (max-width: 560px) {
        .index-recommendations-list__tag {
            display: none;
        }
    }

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

.header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background-color: var(--overlay);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        transition: background-color var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    }
    .header.scrolled {
        background-color: var(--surface-1);
        box-shadow: var(--shadow-md);
    }
    .header__container {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
    }
    .header__logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--fg-on-surface);
        text-decoration: none;
        transition: color var(--anim-duration) var(--anim-ease);
        flex-shrink: 0;
    }
    .header__logo:hover {
        color: var(--link-hover);
    }
    .header__nav {
        display: flex;
    }
    .nav__list {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: calc(var(--gap) * 1.5);
    }
    .nav__link {
        color: var(--fg-on-surface);
        text-decoration: none;
        font-weight: 500;
        padding: calc(var(--space-y) / 2) calc(var(--space-x) / 2);
        border-radius: var(--radius-sm);
        transition: all var(--anim-duration) var(--anim-ease);
        position: relative;
    }
    .nav__link:hover,
    .nav__link:focus-visible {
        color: var(--link-hover);
        background-color: var(--btn-ghost-bg-hover);
        outline: none;
    }
    .nav__link:focus-visible {
        box-shadow: 0 0 0 2px var(--ring);
    }
    .header__burger {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 22px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }
    .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);
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
        transform: translateY(9.5px) rotate(45deg);
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
        opacity: 0;
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
        transform: translateY(-9.5px) rotate(-45deg);
    }

    @media (max-width: 767px) {
        .header__burger {
            display: flex;
        }
        .header__nav {
            position: fixed;
            top: 0;
            right: 0;
            width: 80%;
            max-width: 300px;
            height: 100vh;
            background-color: var(--surface-1);
            box-shadow: var(--shadow-lg);
            transform: translateX(100%);
            transition: transform var(--anim-duration) var(--anim-ease);
            padding: 80px var(--space-x) var(--space-y);
            overflow-y: auto;
            z-index: 999;
        }
        .header__nav.active {
            transform: translateX(0);
        }
        .nav__list {
            flex-direction: column;
            gap: var(--gap);
        }
        .nav__link {
            display: block;
            padding: var(--space-y) var(--space-x);
            border-radius: var(--radius-md);
        }
        .header__container {
            padding: calc(var(--space-y) * 0.75) var(--space-x);
        }
    }

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2rem 1rem;
        font-family: sans-serif;
        font-size: 0.9rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .footer-section {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid #e9ecef;
    }
    .footer-section:last-of-type {
        border-bottom: none;
        padding-bottom: 0;
        justify-content: center;
        text-align: center;
    }
    .footer-logo {
        font-size: 1.5rem;
        font-weight: bold;
        color: #0056b3;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #0056b3;
        text-decoration: underline;
    }
    .footer-contacts {
        line-height: 1.6;
    }
    .footer-contacts a {
        color: #0056b3;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .footer-legal-links {
        margin-top: 0.5rem;
    }
    .footer-legal-links a {
        color: #6c757d;
        text-decoration: none;
        margin: 0 0.5rem;
    }
    .footer-legal-links a:hover {
        text-decoration: underline;
        color: #333;
    }
    .disclaimer p {
        margin: 0;
        color: #6c757d;
        font-size: 0.85rem;
        line-height: 1.4;
        max-width: 800px;
    }
    @media (max-width: 768px) {
        .footer-section {
            flex-direction: column;
            align-items: flex-start;
            gap: 1rem;
        }
        .footer-nav ul {
            flex-direction: column;
            gap: 0.75rem;
        }
        .footer-legal-links {
            align-self: stretch;
            text-align: center;
        }
        .disclaimer p {
            text-align: left;
        }
    }

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

    .cookie-cv7__card {
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        background: linear-gradient(140deg, var(--brand), var(--bg-primary-hover));
        color: var(--brand-contrast);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv7__card h3 {
        margin: 0 0 6px;
    }

    .cookie-cv7__card p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv7__actions {
        margin-top: 12px;
        display: grid;
        gap: 8px;
    }

    .cookie-cv7__actions button {
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.14);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

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

.faq-layout-a {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--gradient-hero);
        color: var(--brand-contrast);
    }

    .faq-layout-a .wrap {
        max-width: 900px;
        margin: 0 auto;
    }

    .faq-layout-a .section-head {
        margin-bottom: 14px;
    }

    .faq-layout-a h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 40px);
        color: var(--brand-contrast);
    }

    .faq-layout-a .section-head p {
        margin: 10px 0 0;
        opacity: .92;
        color: var(--brand-contrast);
    }

    .faq-layout-a .list {
        display: grid;
        gap: 10px;
    }

    .faq-layout-a .item {
        border-radius: var(--radius-md);
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, .3);
        background: rgba(255, 255, 255, .1);
    }

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

    .faq-layout-a .a {
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease);
    }

    .faq-layout-a .a p {
        margin: 0;
        padding: 0 12px 12px;
        opacity: .95;
        color: var(--brand-contrast);
    }

    .faq-layout-a .item.open .a {
        max-height: 240px;
    }

.identity-lv4 {
        padding: clamp(50px, 7vw, 90px) clamp(16px, 4vw, 36px);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    .identity-lv4__wrap {
        max-width: 920px;
        margin: 0 auto;
    }

    .identity-lv4__head {
        margin-bottom: 15px;
    }

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

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

    .identity-lv4__head span {
        color: var(--neutral-600);
    }

    .identity-lv4__stack {
        display: grid;
        gap: 10px;
    }

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

    .identity-lv4__line {
        display: flex;
        align-items: baseline;
        gap: 8px;
        flex-wrap: wrap;
    }

    .identity-lv4__line i {
        font-style: normal;
        color: var(--link);
    }

    .identity-lv4__line h3 {
        margin: 0;
    }

    .identity-lv4__stack p {
        margin: 7px 0 6px;
        color: var(--neutral-600);
    }

    .identity-lv4__stack small {
        color: var(--neutral-800);
        font-weight: 600;
    }

.about-mission {

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

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

    .about-mission .about-mission__q {
        font-size: clamp(22px, 4.5vw, 40px);
        margin: 0 0 .6rem;
        font-weight: 700;
    }

    .about-mission .about-mission__txt {
        margin: 0;
        max-width: var(--max-w);
    }

.header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background-color: var(--overlay);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        transition: background-color var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    }
    .header.scrolled {
        background-color: var(--surface-1);
        box-shadow: var(--shadow-md);
    }
    .header__container {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
    }
    .header__logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--fg-on-surface);
        text-decoration: none;
        transition: color var(--anim-duration) var(--anim-ease);
        flex-shrink: 0;
    }
    .header__logo:hover {
        color: var(--link-hover);
    }
    .header__nav {
        display: flex;
    }
    .nav__list {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: calc(var(--gap) * 1.5);
    }
    .nav__link {
        color: var(--fg-on-surface);
        text-decoration: none;
        font-weight: 500;
        padding: calc(var(--space-y) / 2) calc(var(--space-x) / 2);
        border-radius: var(--radius-sm);
        transition: all var(--anim-duration) var(--anim-ease);
        position: relative;
    }
    .nav__link:hover,
    .nav__link:focus-visible {
        color: var(--link-hover);
        background-color: var(--btn-ghost-bg-hover);
        outline: none;
    }
    .nav__link:focus-visible {
        box-shadow: 0 0 0 2px var(--ring);
    }
    .header__burger {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 22px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }
    .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);
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
        transform: translateY(9.5px) rotate(45deg);
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
        opacity: 0;
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
        transform: translateY(-9.5px) rotate(-45deg);
    }

    @media (max-width: 767px) {
        .header__burger {
            display: flex;
        }
        .header__nav {
            position: fixed;
            top: 0;
            right: 0;
            width: 80%;
            max-width: 300px;
            height: 100vh;
            background-color: var(--surface-1);
            box-shadow: var(--shadow-lg);
            transform: translateX(100%);
            transition: transform var(--anim-duration) var(--anim-ease);
            padding: 80px var(--space-x) var(--space-y);
            overflow-y: auto;
            z-index: 999;
        }
        .header__nav.active {
            transform: translateX(0);
        }
        .nav__list {
            flex-direction: column;
            gap: var(--gap);
        }
        .nav__link {
            display: block;
            padding: var(--space-y) var(--space-x);
            border-radius: var(--radius-md);
        }
        .header__container {
            padding: calc(var(--space-y) * 0.75) var(--space-x);
        }
    }

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2rem 1rem;
        font-family: sans-serif;
        font-size: 0.9rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .footer-section {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid #e9ecef;
    }
    .footer-section:last-of-type {
        border-bottom: none;
        padding-bottom: 0;
        justify-content: center;
        text-align: center;
    }
    .footer-logo {
        font-size: 1.5rem;
        font-weight: bold;
        color: #0056b3;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #0056b3;
        text-decoration: underline;
    }
    .footer-contacts {
        line-height: 1.6;
    }
    .footer-contacts a {
        color: #0056b3;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .footer-legal-links {
        margin-top: 0.5rem;
    }
    .footer-legal-links a {
        color: #6c757d;
        text-decoration: none;
        margin: 0 0.5rem;
    }
    .footer-legal-links a:hover {
        text-decoration: underline;
        color: #333;
    }
    .disclaimer p {
        margin: 0;
        color: #6c757d;
        font-size: 0.85rem;
        line-height: 1.4;
        max-width: 800px;
    }
    @media (max-width: 768px) {
        .footer-section {
            flex-direction: column;
            align-items: flex-start;
            gap: 1rem;
        }
        .footer-nav ul {
            flex-direction: column;
            gap: 0.75rem;
        }
        .footer-legal-links {
            align-self: stretch;
            text-align: center;
        }
        .disclaimer p {
            text-align: left;
        }
    }

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

    .cookie-cv7__card {
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        background: linear-gradient(140deg, var(--brand), var(--bg-primary-hover));
        color: var(--brand-contrast);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv7__card h3 {
        margin: 0 0 6px;
    }

    .cookie-cv7__card p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv7__actions {
        margin-top: 12px;
        display: grid;
        gap: 8px;
    }

    .cookie-cv7__actions button {
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.14);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

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

.values-ranks-l10 {
        padding: clamp(3.1rem, 7vw, 5.7rem) var(--space-x);
        background: linear-gradient(180deg, var(--surface-1), var(--bg-alt));
        color: var(--fg-on-page);
    }

    .values-ranks-l10__wrap {
        max-width: 58rem;
        margin: 0 auto;
    }

    .values-ranks-l10__head {
        margin-bottom: 1.1rem;
        text-align: center;
    }

    .values-ranks-l10__head p {
        margin: 0;
        color: var(--brand);
        font-size: .82rem;
        text-transform: uppercase;
        letter-spacing: .1em;
    }

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

    .values-ranks-l10__head span {
        display: block;
        margin-top: .75rem;
        color: var(--neutral-600);
    }

    .values-ranks-l10__rows {
        display: grid;
        gap: .8rem;
    }

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

    .values-ranks-l10__rows strong {
        display: grid;
        place-items: center;
        width: 3rem;
        height: 3rem;
        border-radius: 999px;
        background: var(--surface-2);
        color: var(--brand);
    }

    .values-ranks-l10__rows h3 {
        margin: 0;
    }

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

    .values-ranks-l10__rows small {
        display: block;
        margin-top: .55rem;
        color: var(--neutral-800);
    }

.index-feedback-accordion {
        background: radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.75), transparent 60%),
        var(--gradient-hero);
        color: var(--fg-on-page);
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 40px);
    }

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

    .index-feedback-accordion__h {
        text-align: center;
        margin-bottom: clamp(22px, 5vw, 44px);

        transform: translateY(-18px);
    }

    .index-feedback-accordion__h h2 {
        margin: 0 0 10px;
        font-size: clamp(26px, 4.4vw, 44px);
        letter-spacing: -0.02em;
        color: var(--fg-on-page);
    }

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

    .index-feedback-accordion__list {
        display: grid;
        gap: 12px;
    }

    .index-feedback-accordion__row {
        border-radius: var(--radius-lg);
        border: 1px solid rgba(248, 225, 231, 0.95);
        background: rgba(58, 46, 61, 0.92);
        box-shadow: var(--shadow-sm);
        overflow: hidden;

        transform: translateY(24px);
    }

    .index-feedback-accordion__q {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        cursor: pointer;
        padding: 14px 16px;
        border: 0;
        background: transparent;
        color: var(--bg-page);
        font: inherit;
    }

    .index-feedback-accordion__left {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        min-width: 0;
    }

    .index-feedback-accordion__avatar {
        width: 36px;
        height: 36px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.12);
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
    }

    .index-feedback-accordion__name {
        font-weight: 800;
        font-size: 14px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 18ch;
    }

    .index-feedback-accordion__meta {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.75);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 24ch;
    }

    .index-feedback-accordion__right {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        flex: 0 0 auto;
        padding: 6px 10px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.14);
    }

    .index-feedback-accordion__stars {
        color: var(--brand);
        letter-spacing: 0.08em;
        font-size: 13px;
        line-height: 1;
    }

    .index-feedback-accordion__score {
        font-weight: 800;
        font-size: 12px;
        color: var(--bg-page);
    }

    .index-feedback-accordion__a {
        display: none;
        padding: 0 16px 14px;
        color: rgba(255, 255, 255, 0.85);
        overflow: hidden;
    }

    .index-feedback-accordion__quote {
        margin: 0;
        font-size: 14px;
        line-height: 1.65;
    }

    .index-feedback-accordion__badge {
        display: inline-flex;
        margin-top: 10px;
        padding: 6px 10px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.12);
        letter-spacing: 0.14em;
        text-transform: uppercase;
        font-size: 10px;
        color: rgba(255, 255, 255, 0.78);
    }

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

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

    .hiw-panels-l4__head {
        margin-bottom: 1.2rem;
        display: flex;
        justify-content: space-between;
        gap: 1rem;
        align-items: end;
        flex-wrap: wrap;
    }

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

    .hiw-panels-l4__head p {
        margin: 0;
        color: var(--neutral-600);
        max-width: 32rem;
    }

    .hiw-panels-l4__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
        gap: var(--gap);
    }

    .hiw-panels-l4__grid article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
        box-shadow: var(--shadow-sm);
    }

    .hiw-panels-l4__badge {
        display: inline-flex;
        padding: .35rem .65rem;
        border-radius: 999px;
        background: var(--surface-2);
        color: var(--brand);
        font-weight: 700;
    }

    .hiw-panels-l4__grid h3 {
        margin: .75rem 0 .35rem;
    }

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

.features-struct-v6 {
        padding: calc(var(--space-y) * 2) var(--space-x);
        background: var(--neutral-900);
        color: var(--neutral-0)
    }

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

    .features-struct-v6 h2, .features-struct-v6 h3, .features-struct-v6 p {
        margin: 0
    }

    .features-struct-v6 .head {
        display: grid;
        gap: calc(var(--gap) * .35)
    }

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

    .features-struct-v6 article {
        background: var(--neutral-800);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        padding: .9rem;
        display: grid;
        gap: .5rem
    }

    .features-struct-v6 .icon {
        min-height: 2rem;
        min-width: 2rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: var(--surface-1);
        border-radius: var(--radius-sm)
    }

    .features-struct-v6 a {
        display: inline-flex;
        min-height: 2.3rem;
        padding: 0 .8rem;
        align-items: center;
        border-radius: var(--radius-sm);
        text-decoration: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border: 1px solid var(--ring)
    }

    .features-struct-v6 .layout {
        display: grid;
        grid-template-columns:.9fr 1.1fr;
        gap: var(--gap)
    }

    .features-struct-v6 .chips {
        display: flex;
        flex-wrap: wrap;
        gap: .4rem
    }

    .features-struct-v6 .chips span {
        padding: .3rem .55rem;
        border-radius: var(--radius-sm);
        background: var(--neutral-800);
        border: 1px solid var(--border-on-surface)
    }

    .features-struct-v6 .list {
        display: grid;
        gap: .6rem
    }

    .features-struct-v6 .list div {
        padding: .75rem;
        border-radius: var(--radius-md);
        background: var(--neutral-800);
        border: 1px solid var(--border-on-surface)
    }

    .features-struct-v6 .timeline {
        display: grid;
        gap: .7rem
    }

    .features-struct-v6 .timeline article {
        position: relative;
        padding-left: 1.2rem
    }

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

    .features-struct-v6 .side img, .features-struct-v6 .media img {
        display: block;
        width: 100%;
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-md)
    }

    .features-struct-v6 .table {
        display: grid;
        gap: .45rem
    }

    .features-struct-v6 .row {
        display: grid;
        grid-template-columns:1fr 1fr 1fr;
        gap: .5rem;
        padding: .65rem;
        border-radius: var(--radius-md);
        background: var(--neutral-800);
        border: 1px solid var(--border-on-surface)
    }

    .features-struct-v6 .cards {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: var(--gap)
    }

    .features-struct-v6 .cta {
        display: flex;
        justify-content: flex-start
    }

    .features-struct-v6 .split {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: var(--gap)
    }

    .features-struct-v6 details {
        padding: .75rem;
        border-radius: var(--radius-md);
        background: var(--neutral-800);
        border: 1px solid var(--border-on-surface)
    }

    @media (max-width: 900px) {
        .features-struct-v6 .grid, .features-struct-v6 .cards {
            grid-template-columns:1fr 1fr
        }

        .features-struct-v6 .layout, .features-struct-v6 .split {
            grid-template-columns:1fr
        }
    }

    @media (max-width: 680px) {
        .features-struct-v6 .grid, .features-struct-v6 .cards, .features-struct-v6 .row {
            grid-template-columns:1fr
        }
    }

.header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background-color: var(--overlay);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        transition: background-color var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    }
    .header.scrolled {
        background-color: var(--surface-1);
        box-shadow: var(--shadow-md);
    }
    .header__container {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
    }
    .header__logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--fg-on-surface);
        text-decoration: none;
        transition: color var(--anim-duration) var(--anim-ease);
        flex-shrink: 0;
    }
    .header__logo:hover {
        color: var(--link-hover);
    }
    .header__nav {
        display: flex;
    }
    .nav__list {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: calc(var(--gap) * 1.5);
    }
    .nav__link {
        color: var(--fg-on-surface);
        text-decoration: none;
        font-weight: 500;
        padding: calc(var(--space-y) / 2) calc(var(--space-x) / 2);
        border-radius: var(--radius-sm);
        transition: all var(--anim-duration) var(--anim-ease);
        position: relative;
    }
    .nav__link:hover,
    .nav__link:focus-visible {
        color: var(--link-hover);
        background-color: var(--btn-ghost-bg-hover);
        outline: none;
    }
    .nav__link:focus-visible {
        box-shadow: 0 0 0 2px var(--ring);
    }
    .header__burger {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 22px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }
    .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);
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
        transform: translateY(9.5px) rotate(45deg);
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
        opacity: 0;
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
        transform: translateY(-9.5px) rotate(-45deg);
    }

    @media (max-width: 767px) {
        .header__burger {
            display: flex;
        }
        .header__nav {
            position: fixed;
            top: 0;
            right: 0;
            width: 80%;
            max-width: 300px;
            height: 100vh;
            background-color: var(--surface-1);
            box-shadow: var(--shadow-lg);
            transform: translateX(100%);
            transition: transform var(--anim-duration) var(--anim-ease);
            padding: 80px var(--space-x) var(--space-y);
            overflow-y: auto;
            z-index: 999;
        }
        .header__nav.active {
            transform: translateX(0);
        }
        .nav__list {
            flex-direction: column;
            gap: var(--gap);
        }
        .nav__link {
            display: block;
            padding: var(--space-y) var(--space-x);
            border-radius: var(--radius-md);
        }
        .header__container {
            padding: calc(var(--space-y) * 0.75) var(--space-x);
        }
    }

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2rem 1rem;
        font-family: sans-serif;
        font-size: 0.9rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .footer-section {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid #e9ecef;
    }
    .footer-section:last-of-type {
        border-bottom: none;
        padding-bottom: 0;
        justify-content: center;
        text-align: center;
    }
    .footer-logo {
        font-size: 1.5rem;
        font-weight: bold;
        color: #0056b3;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #0056b3;
        text-decoration: underline;
    }
    .footer-contacts {
        line-height: 1.6;
    }
    .footer-contacts a {
        color: #0056b3;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .footer-legal-links {
        margin-top: 0.5rem;
    }
    .footer-legal-links a {
        color: #6c757d;
        text-decoration: none;
        margin: 0 0.5rem;
    }
    .footer-legal-links a:hover {
        text-decoration: underline;
        color: #333;
    }
    .disclaimer p {
        margin: 0;
        color: #6c757d;
        font-size: 0.85rem;
        line-height: 1.4;
        max-width: 800px;
    }
    @media (max-width: 768px) {
        .footer-section {
            flex-direction: column;
            align-items: flex-start;
            gap: 1rem;
        }
        .footer-nav ul {
            flex-direction: column;
            gap: 0.75rem;
        }
        .footer-legal-links {
            align-self: stretch;
            text-align: center;
        }
        .disclaimer p {
            text-align: left;
        }
    }

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

    .cookie-cv7__card {
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        background: linear-gradient(140deg, var(--brand), var(--bg-primary-hover));
        color: var(--brand-contrast);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv7__card h3 {
        margin: 0 0 6px;
    }

    .cookie-cv7__card p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv7__actions {
        margin-top: 12px;
        display: grid;
        gap: 8px;
    }

    .cookie-cv7__actions button {
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.14);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

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

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

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

    .connect .connect__title {
        font-size: clamp(28px, 5vw, 48px);
        text-align: center;
        margin: 0 0 clamp(48px, 7vw, 72px);
        color: var(--fg-on-page);
    }

    .connect .connect__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
        gap: clamp(20px, 3vw, 28px);
    }

    .connect .connect__item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: clamp(12px, 2vw, 16px);
        padding: var(--space-x);
        background: var(--surface-1);
        border-radius: var(--radius-xl);
        border: 2px solid var(--border-on-surface);
        text-decoration: none;
        color: inherit;
        transition: all 0.3s;
    }

    .connect .connect__item:hover {
        transform: translateY(-6px);
        border-color: var(--bg-accent);
        box-shadow: var(--shadow-md);
    }

    .connect .connect__icon {
        font-size: clamp(46px, 8vw, 70px);
        width: clamp(95px, 13.5vw, 135px);
        height: clamp(95px, 13.5vw, 135px);
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--surface-2);
        border-radius: 50%;
        border: 2px solid var(--border-on-surface);
    }

    .connect .connect__item span {
        font-size: clamp(17px, 2.8vw, 20px);
        font-weight: 600;
        color: var(--fg-on-surface);
    }

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

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

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

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

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

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

    .form-layout-e label {
        display: grid;
        gap: 6px;
        margin-bottom: 10px;
        color: var(--neutral-800);
    }

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

    .form-layout-e input::placeholder,
    .form-layout-e textarea::placeholder {
        color: var(--input-placeholder);
    }

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

    .form-layout-e .agree {
        display: flex;
        gap: 8px;
        align-items: center;
        color: var(--neutral-600);
    }

    .form-layout-e button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 10px 14px;
        background: var(--gradient-accent);
        color: var(--accent-contrast);
        font-weight: bold;
        cursor: pointer;
        transition: background var(--anim-duration) var(--anim-ease);
    }

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

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

    .contacts-fresh-v3 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns:.9fr 1.1fr;
        gap: calc(var(--gap) * 2);
    }

    .contacts-fresh-v3 .left h2 {
        margin: .3rem 0;
        font-size: clamp(1.9rem, 3.8vw, 2.9rem);
    }

    .contacts-fresh-v3 .left p {
        max-width: 46ch;
        color: var(--fg-on-surface-light);
    }

    .contacts-fresh-v3 .right {
        display: grid;
        gap: var(--gap);
    }

    .contacts-fresh-v3 .row {
        padding: 1rem 1.1rem;
        border-left: 4px solid var(--bg-primary);
        background: var(--surface-2);
        border-radius: var(--radius-sm);
    }

    .contacts-fresh-v3 h3 {
        margin: 0 0 .3rem;
    }

    .contacts-fresh-v3 p {
        margin: 0;
        font-weight: 700;
    }

    .contacts-fresh-v3 small {
        color: var(--fg-on-surface-light);
    }

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

.touch-orbit {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 3vw, 36px);
        background: var(--gradient-accent);
        color: var(--accent-contrast);
    }

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

    .touch-orbit .header {
        margin-bottom: 14px;
        text-align: center;
    }

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

    .touch-orbit .header p {
        margin: 10px auto 0;
        max-width: 64ch;
        opacity: .92;
    }

    .touch-orbit .grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 10px;
    }

    .touch-orbit .card {
        border: 1px solid rgba(255, 255, 255, .35);
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .12);
        padding: 12px;
        animation: orbitIn 420ms ease both;
    }

    .touch-orbit .card:nth-child(2) {
        animation-delay: 90ms;
    }

    .touch-orbit .card:nth-child(3) {
        animation-delay: 180ms;
    }

    .touch-orbit .icon,
    .touch-orbit .badge,
    .touch-orbit h3,
    .touch-orbit .card p {
        margin: 0 0 8px;
    }

    .touch-orbit .card a {
        color: var(--accent-contrast);
        text-decoration: underline;
    }

    .touch-orbit .main {
        display: inline-block;
        text-decoration: none;
        padding: 10px 16px;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    @keyframes orbitIn {
        from {
            opacity: 0;
            transform: translateY(8px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

.header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background-color: var(--overlay);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        transition: background-color var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    }
    .header.scrolled {
        background-color: var(--surface-1);
        box-shadow: var(--shadow-md);
    }
    .header__container {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
    }
    .header__logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--fg-on-surface);
        text-decoration: none;
        transition: color var(--anim-duration) var(--anim-ease);
        flex-shrink: 0;
    }
    .header__logo:hover {
        color: var(--link-hover);
    }
    .header__nav {
        display: flex;
    }
    .nav__list {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: calc(var(--gap) * 1.5);
    }
    .nav__link {
        color: var(--fg-on-surface);
        text-decoration: none;
        font-weight: 500;
        padding: calc(var(--space-y) / 2) calc(var(--space-x) / 2);
        border-radius: var(--radius-sm);
        transition: all var(--anim-duration) var(--anim-ease);
        position: relative;
    }
    .nav__link:hover,
    .nav__link:focus-visible {
        color: var(--link-hover);
        background-color: var(--btn-ghost-bg-hover);
        outline: none;
    }
    .nav__link:focus-visible {
        box-shadow: 0 0 0 2px var(--ring);
    }
    .header__burger {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 22px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }
    .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);
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
        transform: translateY(9.5px) rotate(45deg);
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
        opacity: 0;
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
        transform: translateY(-9.5px) rotate(-45deg);
    }

    @media (max-width: 767px) {
        .header__burger {
            display: flex;
        }
        .header__nav {
            position: fixed;
            top: 0;
            right: 0;
            width: 80%;
            max-width: 300px;
            height: 100vh;
            background-color: var(--surface-1);
            box-shadow: var(--shadow-lg);
            transform: translateX(100%);
            transition: transform var(--anim-duration) var(--anim-ease);
            padding: 80px var(--space-x) var(--space-y);
            overflow-y: auto;
            z-index: 999;
        }
        .header__nav.active {
            transform: translateX(0);
        }
        .nav__list {
            flex-direction: column;
            gap: var(--gap);
        }
        .nav__link {
            display: block;
            padding: var(--space-y) var(--space-x);
            border-radius: var(--radius-md);
        }
        .header__container {
            padding: calc(var(--space-y) * 0.75) var(--space-x);
        }
    }

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2rem 1rem;
        font-family: sans-serif;
        font-size: 0.9rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .footer-section {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid #e9ecef;
    }
    .footer-section:last-of-type {
        border-bottom: none;
        padding-bottom: 0;
        justify-content: center;
        text-align: center;
    }
    .footer-logo {
        font-size: 1.5rem;
        font-weight: bold;
        color: #0056b3;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #0056b3;
        text-decoration: underline;
    }
    .footer-contacts {
        line-height: 1.6;
    }
    .footer-contacts a {
        color: #0056b3;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .footer-legal-links {
        margin-top: 0.5rem;
    }
    .footer-legal-links a {
        color: #6c757d;
        text-decoration: none;
        margin: 0 0.5rem;
    }
    .footer-legal-links a:hover {
        text-decoration: underline;
        color: #333;
    }
    .disclaimer p {
        margin: 0;
        color: #6c757d;
        font-size: 0.85rem;
        line-height: 1.4;
        max-width: 800px;
    }
    @media (max-width: 768px) {
        .footer-section {
            flex-direction: column;
            align-items: flex-start;
            gap: 1rem;
        }
        .footer-nav ul {
            flex-direction: column;
            gap: 0.75rem;
        }
        .footer-legal-links {
            align-self: stretch;
            text-align: center;
        }
        .disclaimer p {
            text-align: left;
        }
    }

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

    .cookie-cv7__card {
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        background: linear-gradient(140deg, var(--brand), var(--bg-primary-hover));
        color: var(--brand-contrast);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv7__card h3 {
        margin: 0 0 6px;
    }

    .cookie-cv7__card p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv7__actions {
        margin-top: 12px;
        display: grid;
        gap: 8px;
    }

    .cookie-cv7__actions button {
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.14);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

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

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

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

    .terms-layout-c .section-head {
        margin-bottom: 14px;
    }

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

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

    .terms-layout-c details {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--surface-1);
        padding: 10px 12px;
        margin-bottom: 10px;
    }

    .terms-layout-c summary {
        cursor: pointer;
        color: var(--brand);
        font-weight: 700;
    }

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

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

.header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background-color: var(--overlay);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        transition: background-color var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    }
    .header.scrolled {
        background-color: var(--surface-1);
        box-shadow: var(--shadow-md);
    }
    .header__container {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
    }
    .header__logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--fg-on-surface);
        text-decoration: none;
        transition: color var(--anim-duration) var(--anim-ease);
        flex-shrink: 0;
    }
    .header__logo:hover {
        color: var(--link-hover);
    }
    .header__nav {
        display: flex;
    }
    .nav__list {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: calc(var(--gap) * 1.5);
    }
    .nav__link {
        color: var(--fg-on-surface);
        text-decoration: none;
        font-weight: 500;
        padding: calc(var(--space-y) / 2) calc(var(--space-x) / 2);
        border-radius: var(--radius-sm);
        transition: all var(--anim-duration) var(--anim-ease);
        position: relative;
    }
    .nav__link:hover,
    .nav__link:focus-visible {
        color: var(--link-hover);
        background-color: var(--btn-ghost-bg-hover);
        outline: none;
    }
    .nav__link:focus-visible {
        box-shadow: 0 0 0 2px var(--ring);
    }
    .header__burger {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 22px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }
    .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);
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
        transform: translateY(9.5px) rotate(45deg);
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
        opacity: 0;
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
        transform: translateY(-9.5px) rotate(-45deg);
    }

    @media (max-width: 767px) {
        .header__burger {
            display: flex;
        }
        .header__nav {
            position: fixed;
            top: 0;
            right: 0;
            width: 80%;
            max-width: 300px;
            height: 100vh;
            background-color: var(--surface-1);
            box-shadow: var(--shadow-lg);
            transform: translateX(100%);
            transition: transform var(--anim-duration) var(--anim-ease);
            padding: 80px var(--space-x) var(--space-y);
            overflow-y: auto;
            z-index: 999;
        }
        .header__nav.active {
            transform: translateX(0);
        }
        .nav__list {
            flex-direction: column;
            gap: var(--gap);
        }
        .nav__link {
            display: block;
            padding: var(--space-y) var(--space-x);
            border-radius: var(--radius-md);
        }
        .header__container {
            padding: calc(var(--space-y) * 0.75) var(--space-x);
        }
    }

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2rem 1rem;
        font-family: sans-serif;
        font-size: 0.9rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .footer-section {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid #e9ecef;
    }
    .footer-section:last-of-type {
        border-bottom: none;
        padding-bottom: 0;
        justify-content: center;
        text-align: center;
    }
    .footer-logo {
        font-size: 1.5rem;
        font-weight: bold;
        color: #0056b3;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #0056b3;
        text-decoration: underline;
    }
    .footer-contacts {
        line-height: 1.6;
    }
    .footer-contacts a {
        color: #0056b3;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .footer-legal-links {
        margin-top: 0.5rem;
    }
    .footer-legal-links a {
        color: #6c757d;
        text-decoration: none;
        margin: 0 0.5rem;
    }
    .footer-legal-links a:hover {
        text-decoration: underline;
        color: #333;
    }
    .disclaimer p {
        margin: 0;
        color: #6c757d;
        font-size: 0.85rem;
        line-height: 1.4;
        max-width: 800px;
    }
    @media (max-width: 768px) {
        .footer-section {
            flex-direction: column;
            align-items: flex-start;
            gap: 1rem;
        }
        .footer-nav ul {
            flex-direction: column;
            gap: 0.75rem;
        }
        .footer-legal-links {
            align-self: stretch;
            text-align: center;
        }
        .disclaimer p {
            text-align: left;
        }
    }

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

    .cookie-cv7__card {
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        background: linear-gradient(140deg, var(--brand), var(--bg-primary-hover));
        color: var(--brand-contrast);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv7__card h3 {
        margin: 0 0 6px;
    }

    .cookie-cv7__card p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv7__actions {
        margin-top: 12px;
        display: grid;
        gap: 8px;
    }

    .cookie-cv7__actions button {
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.14);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

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

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

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

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

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

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

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

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

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

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

.header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background-color: var(--overlay);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        transition: background-color var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    }
    .header.scrolled {
        background-color: var(--surface-1);
        box-shadow: var(--shadow-md);
    }
    .header__container {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
    }
    .header__logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--fg-on-surface);
        text-decoration: none;
        transition: color var(--anim-duration) var(--anim-ease);
        flex-shrink: 0;
    }
    .header__logo:hover {
        color: var(--link-hover);
    }
    .header__nav {
        display: flex;
    }
    .nav__list {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: calc(var(--gap) * 1.5);
    }
    .nav__link {
        color: var(--fg-on-surface);
        text-decoration: none;
        font-weight: 500;
        padding: calc(var(--space-y) / 2) calc(var(--space-x) / 2);
        border-radius: var(--radius-sm);
        transition: all var(--anim-duration) var(--anim-ease);
        position: relative;
    }
    .nav__link:hover,
    .nav__link:focus-visible {
        color: var(--link-hover);
        background-color: var(--btn-ghost-bg-hover);
        outline: none;
    }
    .nav__link:focus-visible {
        box-shadow: 0 0 0 2px var(--ring);
    }
    .header__burger {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 22px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }
    .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);
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
        transform: translateY(9.5px) rotate(45deg);
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
        opacity: 0;
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
        transform: translateY(-9.5px) rotate(-45deg);
    }

    @media (max-width: 767px) {
        .header__burger {
            display: flex;
        }
        .header__nav {
            position: fixed;
            top: 0;
            right: 0;
            width: 80%;
            max-width: 300px;
            height: 100vh;
            background-color: var(--surface-1);
            box-shadow: var(--shadow-lg);
            transform: translateX(100%);
            transition: transform var(--anim-duration) var(--anim-ease);
            padding: 80px var(--space-x) var(--space-y);
            overflow-y: auto;
            z-index: 999;
        }
        .header__nav.active {
            transform: translateX(0);
        }
        .nav__list {
            flex-direction: column;
            gap: var(--gap);
        }
        .nav__link {
            display: block;
            padding: var(--space-y) var(--space-x);
            border-radius: var(--radius-md);
        }
        .header__container {
            padding: calc(var(--space-y) * 0.75) var(--space-x);
        }
    }

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2rem 1rem;
        font-family: sans-serif;
        font-size: 0.9rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .footer-section {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid #e9ecef;
    }
    .footer-section:last-of-type {
        border-bottom: none;
        padding-bottom: 0;
        justify-content: center;
        text-align: center;
    }
    .footer-logo {
        font-size: 1.5rem;
        font-weight: bold;
        color: #0056b3;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #0056b3;
        text-decoration: underline;
    }
    .footer-contacts {
        line-height: 1.6;
    }
    .footer-contacts a {
        color: #0056b3;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .footer-legal-links {
        margin-top: 0.5rem;
    }
    .footer-legal-links a {
        color: #6c757d;
        text-decoration: none;
        margin: 0 0.5rem;
    }
    .footer-legal-links a:hover {
        text-decoration: underline;
        color: #333;
    }
    .disclaimer p {
        margin: 0;
        color: #6c757d;
        font-size: 0.85rem;
        line-height: 1.4;
        max-width: 800px;
    }
    @media (max-width: 768px) {
        .footer-section {
            flex-direction: column;
            align-items: flex-start;
            gap: 1rem;
        }
        .footer-nav ul {
            flex-direction: column;
            gap: 0.75rem;
        }
        .footer-legal-links {
            align-self: stretch;
            text-align: center;
        }
        .disclaimer p {
            text-align: left;
        }
    }

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

    .cookie-cv7__card {
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        background: linear-gradient(140deg, var(--brand), var(--bg-primary-hover));
        color: var(--brand-contrast);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv7__card h3 {
        margin: 0 0 6px;
    }

    .cookie-cv7__card p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv7__actions {
        margin-top: 12px;
        display: grid;
        gap: 8px;
    }

    .cookie-cv7__actions button {
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.14);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

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

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

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

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

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

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

.header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background-color: var(--overlay);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        transition: background-color var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    }
    .header.scrolled {
        background-color: var(--surface-1);
        box-shadow: var(--shadow-md);
    }
    .header__container {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
    }
    .header__logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--fg-on-surface);
        text-decoration: none;
        transition: color var(--anim-duration) var(--anim-ease);
        flex-shrink: 0;
    }
    .header__logo:hover {
        color: var(--link-hover);
    }
    .header__nav {
        display: flex;
    }
    .nav__list {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: calc(var(--gap) * 1.5);
    }
    .nav__link {
        color: var(--fg-on-surface);
        text-decoration: none;
        font-weight: 500;
        padding: calc(var(--space-y) / 2) calc(var(--space-x) / 2);
        border-radius: var(--radius-sm);
        transition: all var(--anim-duration) var(--anim-ease);
        position: relative;
    }
    .nav__link:hover,
    .nav__link:focus-visible {
        color: var(--link-hover);
        background-color: var(--btn-ghost-bg-hover);
        outline: none;
    }
    .nav__link:focus-visible {
        box-shadow: 0 0 0 2px var(--ring);
    }
    .header__burger {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 22px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }
    .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);
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
        transform: translateY(9.5px) rotate(45deg);
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
        opacity: 0;
    }
    .header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
        transform: translateY(-9.5px) rotate(-45deg);
    }

    @media (max-width: 767px) {
        .header__burger {
            display: flex;
        }
        .header__nav {
            position: fixed;
            top: 0;
            right: 0;
            width: 80%;
            max-width: 300px;
            height: 100vh;
            background-color: var(--surface-1);
            box-shadow: var(--shadow-lg);
            transform: translateX(100%);
            transition: transform var(--anim-duration) var(--anim-ease);
            padding: 80px var(--space-x) var(--space-y);
            overflow-y: auto;
            z-index: 999;
        }
        .header__nav.active {
            transform: translateX(0);
        }
        .nav__list {
            flex-direction: column;
            gap: var(--gap);
        }
        .nav__link {
            display: block;
            padding: var(--space-y) var(--space-x);
            border-radius: var(--radius-md);
        }
        .header__container {
            padding: calc(var(--space-y) * 0.75) var(--space-x);
        }
    }

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2rem 1rem;
        font-family: sans-serif;
        font-size: 0.9rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .footer-section {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid #e9ecef;
    }
    .footer-section:last-of-type {
        border-bottom: none;
        padding-bottom: 0;
        justify-content: center;
        text-align: center;
    }
    .footer-logo {
        font-size: 1.5rem;
        font-weight: bold;
        color: #0056b3;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #0056b3;
        text-decoration: underline;
    }
    .footer-contacts {
        line-height: 1.6;
    }
    .footer-contacts a {
        color: #0056b3;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .footer-legal-links {
        margin-top: 0.5rem;
    }
    .footer-legal-links a {
        color: #6c757d;
        text-decoration: none;
        margin: 0 0.5rem;
    }
    .footer-legal-links a:hover {
        text-decoration: underline;
        color: #333;
    }
    .disclaimer p {
        margin: 0;
        color: #6c757d;
        font-size: 0.85rem;
        line-height: 1.4;
        max-width: 800px;
    }
    @media (max-width: 768px) {
        .footer-section {
            flex-direction: column;
            align-items: flex-start;
            gap: 1rem;
        }
        .footer-nav ul {
            flex-direction: column;
            gap: 0.75rem;
        }
        .footer-legal-links {
            align-self: stretch;
            text-align: center;
        }
        .disclaimer p {
            text-align: left;
        }
    }

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

    .cookie-cv7__card {
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        background: linear-gradient(140deg, var(--brand), var(--bg-primary-hover));
        color: var(--brand-contrast);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv7__card h3 {
        margin: 0 0 6px;
    }

    .cookie-cv7__card p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv7__actions {
        margin-top: 12px;
        display: grid;
        gap: 8px;
    }

    .cookie-cv7__actions button {
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.14);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

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

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

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

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

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

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