:root {
  --font-family: "Rubik", sans-serif;
  --font-size-base: 15.1px;
  --line-height-base: 1.55;

  --max-w: 1180px;
  --space-x: 1rem;
  --space-y: 1.5rem;
  --gap: 0.7rem;

  --radius-xl: 0.94rem;
  --radius-lg: 0.75rem;
  --radius-md: 0.43rem;
  --radius-sm: 0.24rem;

  --shadow-sm: 0 2px 3px rgba(0,0,0,0.11);
  --shadow-md: 0 5px 12px rgba(0,0,0,0.14);
  --shadow-lg: 0 14px 30px rgba(0,0,0,0.18);

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

  --brand: #0052CC;
  --brand-contrast: #FFFFFF;
  --accent: #00B8D9;
  --accent-contrast: #FFFFFF;

  --neutral-0: #FFFFFF;
  --neutral-100: #F5F7FA;
  --neutral-300: #D8DEE6;
  --neutral-600: #6B778C;
  --neutral-800: #253858;
  --neutral-900: #091E42;

  --bg-page: #FFFFFF;
  --fg-on-page: #091E42;

  --bg-alt: #F5F7FA;
  --fg-on-alt: #253858;

  --surface-1: #FFFFFF;
  --surface-2: #F5F7FA;
  --fg-on-surface: #253858;
  --border-on-surface: #D8DEE6;

  --surface-light: #FFFFFF;
  --fg-on-surface-light: #091E42;
  --border-on-surface-light: #D8DEE6;

  --bg-primary: #0052CC;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #0747A6;
  --ring: #0052CC;

  --bg-accent: #E6F7FF;
  --fg-on-accent: #003366;
  --bg-accent-hover: #0091B3;

  --link: #0052CC;
  --link-hover: #0747A6;

  --gradient-hero: linear-gradient(135deg, #FFFFFF 0%, #F5F7FA 100%);
  --gradient-accent: linear-gradient(90deg, #0052CC 0%, #00B8D9 100%);

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

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    position: relative;
}

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

.logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand);
    flex-shrink: 0;
}

.cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
    flex-shrink: 0;
    white-space: nowrap;
}
.cta-button:hover {
    background-color: var(--bg-accent-hover);
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) * 0.5);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}
.burger-menu span {
    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);
}

.main-nav {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface);
}
.nav-list {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    list-style: none;
    display: flex;
    gap: var(--gap);
}
.nav-link {
    display: inline-block;
    padding: var(--space-y) 0;
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
    color: var(--link-hover);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width var(--anim-duration) var(--anim-ease);
}
.nav-link:hover::after {
    width: 100%;
}

@media (max-width: 767px) {
    .burger-menu {
        display: flex;
    }
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
        z-index: 1000;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease);
    }
    .main-nav.active {
        max-height: 500px;
    }
    .nav-list {
        flex-direction: column;
        padding: var(--space-y) var(--space-x);
        gap: 0;
    }
    .nav-link {
        padding: calc(var(--space-y) * 0.75) 0;
        width: 100%;
    }
    .burger-menu.active span:nth-child(1) {
        transform: translateY(0.625rem) rotate(45deg);
    }
    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }
    .burger-menu.active span:nth-child(3) {
        transform: translateY(-0.625rem) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #eaeaea;
        color: #333;
        font-family: 'Segoe UI', system-ui, sans-serif;
        padding: 2.5rem 1rem;
        margin-top: 3rem;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    @media (min-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr 1fr 1fr;
            grid-template-areas:
                "brand nav contacts"
                "legal legal legal";
        }
        .footer-brand { grid-area: brand; }
        .footer-nav { grid-area: nav; }
        .footer-contacts { grid-area: contacts; }
        .footer-legal { grid-area: legal; }
    }

    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }

    .footer-tagline {
        color: #666;
        font-size: 0.95rem;
        line-height: 1.4;
        max-width: 250px;
    }

    .nav-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .nav-list a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s ease;
        font-size: 0.95rem;
    }

    .nav-list a:hover {
        color: #007bff;
        text-decoration: underline;
    }

    .footer-contacts address {
        font-style: normal;
        line-height: 1.6;
    }

    .contact-line {
        margin-bottom: 0.5rem;
        font-size: 0.9rem;
    }

    .contact-line strong {
        color: #444;
        display: inline-block;
        min-width: 60px;
    }

    .contact-line a {
        color: #0066cc;
        text-decoration: none;
    }

    .contact-line a:hover {
        text-decoration: underline;
    }

    .footer-legal {
        border-top: 1px solid #ddd;
        padding-top: 1.5rem;
        margin-top: 1rem;
        text-align: center;
        grid-column: 1 / -1;
    }

    .legal-links {
        margin-bottom: 0.75rem;
        font-size: 0.85rem;
    }

    .legal-links a {
        color: #555;
        text-decoration: none;
        margin: 0 0.25rem;
    }

    .legal-links a:hover {
        text-decoration: underline;
        color: #333;
    }

    .copyright {
        font-size: 0.85rem;
        color: #777;
        margin-bottom: 0.5rem;
    }

    .disclaimer {
        font-size: 0.75rem;
        color: #888;
        line-height: 1.4;
        max-width: 800px;
        margin: 0 auto;
    }

.cookie-cv5 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: linear-gradient(90deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    }

    .cookie-cv5__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 10px var(--space-x);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

    .cookie-cv5__inner p {
        margin: 0;
    }

    .cookie-cv5__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

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

    .cookie-cv5__actions button[data-choice='accept'] {
        background: var(--neutral-0);
        color: var(--fg-on-page);
    }

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

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

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

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

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

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

    .hero__actions {
        display: flex;
        gap: var(--gap);
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero__btn {
        display: inline-block;
        padding: 12px 30px;
        border-radius: var(--radius-md);
        font-weight: 500;
        text-align: center;
        transition: all var(--anim-duration) var(--anim-ease);
        cursor: pointer;
        border: 1px solid transparent;
        font-size: 1rem;
    }

    .hero__btn--primary {
        background-color: var(--bg-primary);
        color: var(--fg-on-primary);
        border-color: var(--bg-primary);
    }

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

    .hero__btn--outline {
        background-color: transparent;
        color: var(--fg-on-primary);
        border-color: var(--fg-on-primary);
    }

    .hero__btn--outline:hover {
        background-color: var(--btn-ghost-bg-hover);
    }

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

    .next-check .wrap {
        max-width: 780px;
        margin: 0 auto;
        background: var(--neutral-0);
        border: 1px solid var(--border-on-surface-light);
        border-radius: 18px;
        padding: clamp(18px, 3vw, 28px);
    }

    .next-check .k {
        margin: 0;
        color: var(--bg-primary);
        font-weight: 600;
    }

    .next-check h2 {
        margin: 8px 0;
        font-size: clamp(30px, 4.2vw, 44px);
    }

    .next-check .text {
        margin: 0;
        color: var(--fg-on-accent);
    }

    .next-check ul {
        margin: 14px 0 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 8px;
    }

    .next-check li a {
        text-decoration: none;
        color: var(--fg-on-page);
        border: 1px solid var(--border-on-surface-light);
        background: var(--surface-2);
        border-radius: 10px;
        padding: 9px 12px;
        display: flex;
        justify-content: space-between;
        gap: 8px;
    }

    .next-check .cta {
        display: inline-block;
        margin-top: 12px;
        text-decoration: none;
        background: var(--bg-primary);
        color: var(--neutral-0);
        border-radius: 10px;
        padding: 10px 14px;
    }

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

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

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

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

    .value-grid .header p {
        margin: 10px 0 0;
        opacity: 0.9;
        color: var(--fg-on-page);
    }

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

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

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

    .value-grid h3 {
        margin: 0 0 6px;
        color: var(--fg-on-page);
    }

    .value-grid article p {
        margin: 0 0 6px;
        opacity: 0.9;
        color: var(--fg-on-page);
    }

    .value-grid article span {
        font-size: .85rem;
        opacity: 0.8;
        color: var(--fg-on-page);
    }

.clarifications-l2 {

        padding: clamp(18px, 3vw, 44px);
        background: var(--bg-alt);
        color: var(--fg-on-alt);
    }

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

    .clarifications-l2__h {
        margin-bottom: clamp(14px, 2.2vw, 22px);
    }

    .clarifications-l2__title {
        margin: 0;
        font-size: clamp(24px, 4.2vw, 40px);
        letter-spacing: -.02em;
        line-height: 1.1;
        color: var(--fg-on-alt);
    }

    .clarifications-l2__sub {
        margin: 10px 0 0;
        max-width: 72ch;
        color: var(--neutral-600);
    }

    .clarifications-l2__panel {
        position: relative;
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-lg);
        overflow: hidden;
    }

    /* permanent scan */
    .clarifications-l2__scan {
        position: absolute;
        left: 0;
        top: -40%;
        width: 100%;
        height: 42%;
        background: linear-gradient(180deg, transparent, rgba(0, 86, 179, 0.08), transparent);
        animation: l2Scan 4.8s linear infinite;
        pointer-events: none;
    }

    @keyframes l2Scan {
        0% {
            transform: translateY(0%)
        }
        100% {
            transform: translateY(240%)
        }
    }

    .clarifications-l2__list {
        display: grid;
        gap: 10px;
        padding: 12px;
    }

    .clarifications-l2__row {
        display: grid;
        grid-template-columns: 110px 1fr;
        gap: 12px;
        padding: 12px 14px;
        text-align: left;
        border-radius: var(--radius-lg);
        background: var(--surface-2);
        border: 1px solid var(--border-on-surface);
        cursor: pointer;
        transition: transform var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
    }

    .clarifications-l2__row:hover {
        transform: translateY(-2px);
        border-color: rgba(0, 86, 179, 0.35);
    }

    .clarifications-l2__k {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        height: 34px;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border: 1px solid rgba(0, 0, 0, 0.06);
        font-weight: 900;
    }

    .clarifications-l2__q {
        display: block;
        font-weight: 900;
        color: var(--fg-on-page);
        letter-spacing: -.01em;
        margin-bottom: 6px;
    }

    .clarifications-l2__a {
        display: block;
        color: var(--neutral-600);
        line-height: var(--line-height-base);
    }

    /* JS will add "floating" highlight for active row */
    .clarifications-l2__row.is-focus {
        border-color: rgba(255, 107, 53, 0.45);
        box-shadow: 0 0 0 6px rgba(255, 107, 53, 0.08);
    }

    @media (max-width: 720px) {
        .clarifications-l2__row {
            grid-template-columns:1fr
        }

        .clarifications-l2__k {
            justify-self: start;
            padding: 0 12px
        }
    }

    @media (prefers-reduced-motion: reduce) {
        .clarifications-l2__scan {
            animation: none;
        }
    }

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

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

.two-column-section__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: calc(var(--gap) * 2);
    align-items: start;
}

.two-column-section--split .two-column-section__text {
    padding: 0 0 0 0;
    border-left: 2px solid var(--border-on-surface);
    padding-left: var(--space-x);
}

.two-column-section--split .two-column-section__text:first-child {
    border-left: 0;
    padding-left: 0;
}

.two-column-section__text h2 {
    margin-bottom: var(--space-y);
    color: var(--fg-on-page);
}

.two-column-section__text p {
    margin-bottom: var(--space-y);
    color: var(--neutral-600);
}

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    position: relative;
}

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

.logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand);
    flex-shrink: 0;
}

.cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
    flex-shrink: 0;
    white-space: nowrap;
}
.cta-button:hover {
    background-color: var(--bg-accent-hover);
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) * 0.5);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}
.burger-menu span {
    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);
}

.main-nav {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface);
}
.nav-list {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    list-style: none;
    display: flex;
    gap: var(--gap);
}
.nav-link {
    display: inline-block;
    padding: var(--space-y) 0;
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
    color: var(--link-hover);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width var(--anim-duration) var(--anim-ease);
}
.nav-link:hover::after {
    width: 100%;
}

@media (max-width: 767px) {
    .burger-menu {
        display: flex;
    }
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
        z-index: 1000;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease);
    }
    .main-nav.active {
        max-height: 500px;
    }
    .nav-list {
        flex-direction: column;
        padding: var(--space-y) var(--space-x);
        gap: 0;
    }
    .nav-link {
        padding: calc(var(--space-y) * 0.75) 0;
        width: 100%;
    }
    .burger-menu.active span:nth-child(1) {
        transform: translateY(0.625rem) rotate(45deg);
    }
    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }
    .burger-menu.active span:nth-child(3) {
        transform: translateY(-0.625rem) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #eaeaea;
        color: #333;
        font-family: 'Segoe UI', system-ui, sans-serif;
        padding: 2.5rem 1rem;
        margin-top: 3rem;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    @media (min-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr 1fr 1fr;
            grid-template-areas:
                "brand nav contacts"
                "legal legal legal";
        }
        .footer-brand { grid-area: brand; }
        .footer-nav { grid-area: nav; }
        .footer-contacts { grid-area: contacts; }
        .footer-legal { grid-area: legal; }
    }

    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }

    .footer-tagline {
        color: #666;
        font-size: 0.95rem;
        line-height: 1.4;
        max-width: 250px;
    }

    .nav-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .nav-list a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s ease;
        font-size: 0.95rem;
    }

    .nav-list a:hover {
        color: #007bff;
        text-decoration: underline;
    }

    .footer-contacts address {
        font-style: normal;
        line-height: 1.6;
    }

    .contact-line {
        margin-bottom: 0.5rem;
        font-size: 0.9rem;
    }

    .contact-line strong {
        color: #444;
        display: inline-block;
        min-width: 60px;
    }

    .contact-line a {
        color: #0066cc;
        text-decoration: none;
    }

    .contact-line a:hover {
        text-decoration: underline;
    }

    .footer-legal {
        border-top: 1px solid #ddd;
        padding-top: 1.5rem;
        margin-top: 1rem;
        text-align: center;
        grid-column: 1 / -1;
    }

    .legal-links {
        margin-bottom: 0.75rem;
        font-size: 0.85rem;
    }

    .legal-links a {
        color: #555;
        text-decoration: none;
        margin: 0 0.25rem;
    }

    .legal-links a:hover {
        text-decoration: underline;
        color: #333;
    }

    .copyright {
        font-size: 0.85rem;
        color: #777;
        margin-bottom: 0.5rem;
    }

    .disclaimer {
        font-size: 0.75rem;
        color: #888;
        line-height: 1.4;
        max-width: 800px;
        margin: 0 auto;
    }

.cookie-cv5 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: linear-gradient(90deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    }

    .cookie-cv5__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 10px var(--space-x);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

    .cookie-cv5__inner p {
        margin: 0;
    }

    .cookie-cv5__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

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

    .cookie-cv5__actions button[data-choice='accept'] {
        background: var(--neutral-0);
        color: var(--fg-on-page);
    }

.messages {

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

    .messages .messages__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: var(--space-x);
        height: 600px;
    }

    @media (max-width: 767px) {
        .messages .messages__c {
            grid-template-columns: 1fr;
            height: auto;
        }

        .messages .messages__chat-form {
            flex-direction: column;
        }
    }

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

    .messages .messages__list {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, 0.2);
        padding: 1rem;
        overflow-y: auto;
    }

    .messages h2 {
        margin: 0 0 1rem;
        color: var(--fg-on-page);
        font-size: 1.25rem;
    }

    .messages .messages__items {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .messages .messages__item {
        display: flex;
        gap: 1rem;
        padding: 1rem;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, 0.1);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .messages .messages__item:hover {
        background: rgba(255, 255, 255, 0.2);
    }

    .messages .messages__avatar {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
        color: var(--fg-on-page);
        flex-shrink: 0;
    }

    .messages .messages__info {
        flex: 1;
        min-width: 0;
    }

    .messages h4 {
        margin: 0 0 0.25rem;
        color: var(--fg-on-page);
        font-size: 1rem;
    }

    .messages .messages__info p {
        margin: 0 0 0.25rem;
        color: rgba(255, 255, 255, 0.9);
        font-size: 0.875rem;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .messages .messages__time {
        font-size: 0.75rem;
        color: rgba(255, 255, 255, 0.7);
    }

    .messages .messages__chat {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, 0.2);
        display: flex;
        flex-direction: column;
    }

    .messages .messages__chat-header {
        padding: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .messages h3 {
        margin: 0;
        color: var(--fg-on-page);
    }

    .messages .messages__chat-messages {
        flex: 1;
        padding: 1rem;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .messages .messages__message {
        background: rgba(255, 255, 255, 0.1);
        padding: 0.875rem 1rem;
        border-radius: var(--radius-md);
        max-width: 70%;
    }

    .messages .messages__message-text {
        color: var(--fg-on-page);
        margin-bottom: 0.25rem;
    }

    .messages .messages__message-time {
        font-size: 0.75rem;
        color: rgba(255, 255, 255, 0.7);
    }

    .messages .messages__chat-form {
        display: flex;
        gap: 0.5rem;
        padding: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .messages .messages__chat-form input {
        flex: 1;
        padding: 0.875rem;
        border-radius: var(--radius-md);
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.1);
        color: var(--fg-on-page);
        outline: none;
    }

    .messages .messages__chat-form input::placeholder {
        color: rgba(255, 255, 255, 0.7);
    }

    .messages .messages__chat-form button {
        padding: 0.875rem 1.5rem;
        border-radius: var(--radius-md);
        border: none;
        background: var(--bg-page);
        color: var(--bg-primary);
        font-weight: 600;
        cursor: pointer;
    }

.partners {

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

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

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

    .partners .partners__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: clamp(32px, 5vw, 48px);
    }

    .partners .partners__item {
        display: flex;
        flex-direction: column;
        gap: clamp(20px, 3vw, 28px);
        align-items: center;
        padding: clamp(24px, 4vw, 32px);
        background: var(--surface-1);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface);
    }

    .partners .partners__logo {
        flex-shrink: 0;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .partners .partners__logo img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

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

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

    @media (max-width: 768px) {
        .partners .partners__item {
            flex-direction: column;
            text-align: center;
        }
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    position: relative;
}

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

.logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand);
    flex-shrink: 0;
}

.cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
    flex-shrink: 0;
    white-space: nowrap;
}
.cta-button:hover {
    background-color: var(--bg-accent-hover);
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) * 0.5);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}
.burger-menu span {
    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);
}

.main-nav {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface);
}
.nav-list {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    list-style: none;
    display: flex;
    gap: var(--gap);
}
.nav-link {
    display: inline-block;
    padding: var(--space-y) 0;
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
    color: var(--link-hover);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width var(--anim-duration) var(--anim-ease);
}
.nav-link:hover::after {
    width: 100%;
}

@media (max-width: 767px) {
    .burger-menu {
        display: flex;
    }
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
        z-index: 1000;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease);
    }
    .main-nav.active {
        max-height: 500px;
    }
    .nav-list {
        flex-direction: column;
        padding: var(--space-y) var(--space-x);
        gap: 0;
    }
    .nav-link {
        padding: calc(var(--space-y) * 0.75) 0;
        width: 100%;
    }
    .burger-menu.active span:nth-child(1) {
        transform: translateY(0.625rem) rotate(45deg);
    }
    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }
    .burger-menu.active span:nth-child(3) {
        transform: translateY(-0.625rem) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #eaeaea;
        color: #333;
        font-family: 'Segoe UI', system-ui, sans-serif;
        padding: 2.5rem 1rem;
        margin-top: 3rem;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    @media (min-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr 1fr 1fr;
            grid-template-areas:
                "brand nav contacts"
                "legal legal legal";
        }
        .footer-brand { grid-area: brand; }
        .footer-nav { grid-area: nav; }
        .footer-contacts { grid-area: contacts; }
        .footer-legal { grid-area: legal; }
    }

    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }

    .footer-tagline {
        color: #666;
        font-size: 0.95rem;
        line-height: 1.4;
        max-width: 250px;
    }

    .nav-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .nav-list a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s ease;
        font-size: 0.95rem;
    }

    .nav-list a:hover {
        color: #007bff;
        text-decoration: underline;
    }

    .footer-contacts address {
        font-style: normal;
        line-height: 1.6;
    }

    .contact-line {
        margin-bottom: 0.5rem;
        font-size: 0.9rem;
    }

    .contact-line strong {
        color: #444;
        display: inline-block;
        min-width: 60px;
    }

    .contact-line a {
        color: #0066cc;
        text-decoration: none;
    }

    .contact-line a:hover {
        text-decoration: underline;
    }

    .footer-legal {
        border-top: 1px solid #ddd;
        padding-top: 1.5rem;
        margin-top: 1rem;
        text-align: center;
        grid-column: 1 / -1;
    }

    .legal-links {
        margin-bottom: 0.75rem;
        font-size: 0.85rem;
    }

    .legal-links a {
        color: #555;
        text-decoration: none;
        margin: 0 0.25rem;
    }

    .legal-links a:hover {
        text-decoration: underline;
        color: #333;
    }

    .copyright {
        font-size: 0.85rem;
        color: #777;
        margin-bottom: 0.5rem;
    }

    .disclaimer {
        font-size: 0.75rem;
        color: #888;
        line-height: 1.4;
        max-width: 800px;
        margin: 0 auto;
    }

.cookie-cv5 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: linear-gradient(90deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    }

    .cookie-cv5__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 10px var(--space-x);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

    .cookie-cv5__inner p {
        margin: 0;
    }

    .cookie-cv5__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

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

    .cookie-cv5__actions button[data-choice='accept'] {
        background: var(--neutral-0);
        color: var(--fg-on-page);
    }

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

    .touch-bulletin .wrap {
        max-width: 860px;
        margin: 0 auto;
    }

    .touch-bulletin .header {
        margin-bottom: 14px;
    }

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

    .touch-bulletin .header p {
        margin: 10px 0 0;
        color: var(--neutral-600);
        line-height: var(--line-height-base);
    }

    .touch-bulletin ul {
        margin: 24px 0 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 8px;
    }

    .touch-bulletin li {
        border: 1px solid var(--border-on-surface);
        border-radius: 12px;
        background: var(--neutral-0);
        padding: 10px 12px;
        display: grid;
        grid-template-columns: auto 1fr auto;
        gap: 8px;
        align-items: center;
    }

    .touch-bulletin span {
        color: var(--neutral-600);
        font-size: .85rem;
    }

    .touch-bulletin a {
        color: var(--bg-primary);
        text-decoration: none;
        font-weight: 500;
    }

    .touch-bulletin a:hover {
        color: var(--link-hover);
        text-decoration: underline;
    }

    .touch-bulletin .cta {
        display: inline-block;
        text-decoration: none;
        background: var(--bg-primary);
        color: var(--neutral-0);
        border-radius: 10px;
        padding: 12px 24px;
        font-weight: 600;
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .touch-bulletin .cta:hover {
        background: var(--bg-primary-hover);
    }

    .subscribe-form input:focus {
        outline: none;
        border-color: var(--ring);
        box-shadow: 0 0 0 2px rgba(0, 82, 204, 0.2);
    }

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

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

    .plans-cv2__head {
        margin-bottom: 16px;
    }

    .plans-cv2__head h2 {
        margin: 0;
        font-size: clamp(30px, 5vw, 48px);
    }

    .plans-cv2__head p {
        margin: 8px 0 0;
        opacity: .92;
    }

    .plans-cv2__grid {
        display: grid;
        gap: var(--gap);
        grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    }

    .plans-cv2__card {
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.12);
        padding: var(--space-y) var(--space-x);
        transition: transform var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
    }

    .plans-cv2__card.is-active {
        transform: translateY(-4px);
        border-color: var(--bg-accent);
    }

    .plans-cv2__line {
        display: flex;
        justify-content: space-between;
        gap: 8px;
        align-items: center;
    }

    .plans-cv2__line h3 {
        margin: 0;
    }

    .plans-cv2__line span {
        font-size: .82rem;
        padding: 4px 8px;
        border-radius: 999px;
        background: var(--chip-bg);
    }

    .plans-cv2__price {
        margin: 10px 0 8px;
        font-size: 1.45rem;
        font-weight: 800;
    }

    .plans-cv2__list p {
        margin: 0 0 6px;
        opacity: .92;
    }

    .plans-cv2__card button {
        width: 100%;
        margin-top: 8px;
        border: 0;
        border-radius: var(--radius-sm);
        padding: 9px 12px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    position: relative;
}

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

.logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand);
    flex-shrink: 0;
}

.cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
    flex-shrink: 0;
    white-space: nowrap;
}
.cta-button:hover {
    background-color: var(--bg-accent-hover);
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) * 0.5);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}
.burger-menu span {
    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);
}

.main-nav {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface);
}
.nav-list {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    list-style: none;
    display: flex;
    gap: var(--gap);
}
.nav-link {
    display: inline-block;
    padding: var(--space-y) 0;
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
    color: var(--link-hover);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width var(--anim-duration) var(--anim-ease);
}
.nav-link:hover::after {
    width: 100%;
}

@media (max-width: 767px) {
    .burger-menu {
        display: flex;
    }
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
        z-index: 1000;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease);
    }
    .main-nav.active {
        max-height: 500px;
    }
    .nav-list {
        flex-direction: column;
        padding: var(--space-y) var(--space-x);
        gap: 0;
    }
    .nav-link {
        padding: calc(var(--space-y) * 0.75) 0;
        width: 100%;
    }
    .burger-menu.active span:nth-child(1) {
        transform: translateY(0.625rem) rotate(45deg);
    }
    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }
    .burger-menu.active span:nth-child(3) {
        transform: translateY(-0.625rem) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #eaeaea;
        color: #333;
        font-family: 'Segoe UI', system-ui, sans-serif;
        padding: 2.5rem 1rem;
        margin-top: 3rem;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    @media (min-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr 1fr 1fr;
            grid-template-areas:
                "brand nav contacts"
                "legal legal legal";
        }
        .footer-brand { grid-area: brand; }
        .footer-nav { grid-area: nav; }
        .footer-contacts { grid-area: contacts; }
        .footer-legal { grid-area: legal; }
    }

    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }

    .footer-tagline {
        color: #666;
        font-size: 0.95rem;
        line-height: 1.4;
        max-width: 250px;
    }

    .nav-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .nav-list a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s ease;
        font-size: 0.95rem;
    }

    .nav-list a:hover {
        color: #007bff;
        text-decoration: underline;
    }

    .footer-contacts address {
        font-style: normal;
        line-height: 1.6;
    }

    .contact-line {
        margin-bottom: 0.5rem;
        font-size: 0.9rem;
    }

    .contact-line strong {
        color: #444;
        display: inline-block;
        min-width: 60px;
    }

    .contact-line a {
        color: #0066cc;
        text-decoration: none;
    }

    .contact-line a:hover {
        text-decoration: underline;
    }

    .footer-legal {
        border-top: 1px solid #ddd;
        padding-top: 1.5rem;
        margin-top: 1rem;
        text-align: center;
        grid-column: 1 / -1;
    }

    .legal-links {
        margin-bottom: 0.75rem;
        font-size: 0.85rem;
    }

    .legal-links a {
        color: #555;
        text-decoration: none;
        margin: 0 0.25rem;
    }

    .legal-links a:hover {
        text-decoration: underline;
        color: #333;
    }

    .copyright {
        font-size: 0.85rem;
        color: #777;
        margin-bottom: 0.5rem;
    }

    .disclaimer {
        font-size: 0.75rem;
        color: #888;
        line-height: 1.4;
        max-width: 800px;
        margin: 0 auto;
    }

.cookie-cv5 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: linear-gradient(90deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    }

    .cookie-cv5__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 10px var(--space-x);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

    .cookie-cv5__inner p {
        margin: 0;
    }

    .cookie-cv5__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

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

    .cookie-cv5__actions button[data-choice='accept'] {
        background: var(--neutral-0);
        color: var(--fg-on-page);
    }

.support-lv6 {
        padding: clamp(50px, 7vw, 90px) clamp(16px, 4vw, 36px);
        background: linear-gradient(180deg, var(--surface-2), var(--surface-1));
        color: var(--fg-on-page);
    }

    .support-lv6__wrap {
        max-width: 920px;
        margin: 0 auto;
    }

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

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

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

    .support-lv6__table {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        overflow: hidden;
    }

    .support-lv6__table article {
        display: grid;
        grid-template-columns: .8fr 1.2fr;
        gap: 12px;
        padding: 12px;
        border-bottom: 1px solid var(--border-on-surface-light);
        background: var(--surface-1);
    }

    .support-lv6__table article:last-child {
        border-bottom: 0;
    }

    .support-lv6__table h3 {
        margin: 0;
        color: var(--brand);
        font-size: 1rem;
    }

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

    @media (max-width: 700px) {
        .support-lv6__table article {
            grid-template-columns: 1fr;
        }
    }

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

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

    .faq-layout-a .section-head p {
        margin: 10px 0 0;
        opacity: .92;
    }

    .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;
        color: var(--fg-on-primary);
        text-align: left;
        padding: 12px;
        font: inherit;
        font-weight: 600;
        cursor: pointer;
    }

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

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

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

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

.gallery__title {
    margin: 0 0 12px;
    font-size: clamp(22px,3.5vw,28px);
    color: var(--neutral-900);
}

.gallery__strip {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(120px, 1fr);
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.gallery__thumb {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--surface-light);
    border: 1px solid var(--border-on-surface-light);
    min-width: 120px;
    transition: transform var(--anim-duration) var(--anim-ease);
    cursor: pointer;
}

.gallery__thumb:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.gallery__thumb img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    display: block;
}

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    position: relative;
}

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

.logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand);
    flex-shrink: 0;
}

.cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
    flex-shrink: 0;
    white-space: nowrap;
}
.cta-button:hover {
    background-color: var(--bg-accent-hover);
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) * 0.5);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}
.burger-menu span {
    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);
}

.main-nav {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface);
}
.nav-list {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    list-style: none;
    display: flex;
    gap: var(--gap);
}
.nav-link {
    display: inline-block;
    padding: var(--space-y) 0;
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
    color: var(--link-hover);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width var(--anim-duration) var(--anim-ease);
}
.nav-link:hover::after {
    width: 100%;
}

@media (max-width: 767px) {
    .burger-menu {
        display: flex;
    }
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
        z-index: 1000;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease);
    }
    .main-nav.active {
        max-height: 500px;
    }
    .nav-list {
        flex-direction: column;
        padding: var(--space-y) var(--space-x);
        gap: 0;
    }
    .nav-link {
        padding: calc(var(--space-y) * 0.75) 0;
        width: 100%;
    }
    .burger-menu.active span:nth-child(1) {
        transform: translateY(0.625rem) rotate(45deg);
    }
    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }
    .burger-menu.active span:nth-child(3) {
        transform: translateY(-0.625rem) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #eaeaea;
        color: #333;
        font-family: 'Segoe UI', system-ui, sans-serif;
        padding: 2.5rem 1rem;
        margin-top: 3rem;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    @media (min-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr 1fr 1fr;
            grid-template-areas:
                "brand nav contacts"
                "legal legal legal";
        }
        .footer-brand { grid-area: brand; }
        .footer-nav { grid-area: nav; }
        .footer-contacts { grid-area: contacts; }
        .footer-legal { grid-area: legal; }
    }

    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }

    .footer-tagline {
        color: #666;
        font-size: 0.95rem;
        line-height: 1.4;
        max-width: 250px;
    }

    .nav-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .nav-list a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s ease;
        font-size: 0.95rem;
    }

    .nav-list a:hover {
        color: #007bff;
        text-decoration: underline;
    }

    .footer-contacts address {
        font-style: normal;
        line-height: 1.6;
    }

    .contact-line {
        margin-bottom: 0.5rem;
        font-size: 0.9rem;
    }

    .contact-line strong {
        color: #444;
        display: inline-block;
        min-width: 60px;
    }

    .contact-line a {
        color: #0066cc;
        text-decoration: none;
    }

    .contact-line a:hover {
        text-decoration: underline;
    }

    .footer-legal {
        border-top: 1px solid #ddd;
        padding-top: 1.5rem;
        margin-top: 1rem;
        text-align: center;
        grid-column: 1 / -1;
    }

    .legal-links {
        margin-bottom: 0.75rem;
        font-size: 0.85rem;
    }

    .legal-links a {
        color: #555;
        text-decoration: none;
        margin: 0 0.25rem;
    }

    .legal-links a:hover {
        text-decoration: underline;
        color: #333;
    }

    .copyright {
        font-size: 0.85rem;
        color: #777;
        margin-bottom: 0.5rem;
    }

    .disclaimer {
        font-size: 0.75rem;
        color: #888;
        line-height: 1.4;
        max-width: 800px;
        margin: 0 auto;
    }

.cookie-cv5 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: linear-gradient(90deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    }

    .cookie-cv5__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 10px var(--space-x);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

    .cookie-cv5__inner p {
        margin: 0;
    }

    .cookie-cv5__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

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

    .cookie-cv5__actions button[data-choice='accept'] {
        background: var(--neutral-0);
        color: var(--fg-on-page);
    }

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

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

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

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

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

    .contact-layout-e .rail {
        display: grid;
        grid-template-columns: 260px 1fr;
        gap: 16px;
    }

    .contact-layout-e aside {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-radius: var(--radius-lg);
        padding: 16px;
    }

    .contact-layout-e aside h3 {
        margin: 0 0 10px;
    }

    .contact-layout-e aside p {
        margin: 0 0 10px;
        opacity: .9;
    }

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

    .contact-layout-e .social a {
        text-decoration: none;
        color: var(--fg-on-primary);
        background: rgba(255, 255, 255, .16);
        padding: 6px 10px;
        border-radius: var(--radius-sm);
    }

    .contact-layout-e .content {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        display: grid;
        gap: 10px;
    }

    .contact-layout-e .row {
        display: grid;
        gap: 3px;
        padding-bottom: 10px;
        border-bottom: 1px dashed var(--neutral-300);
    }

    .contact-layout-e .row:last-child {
        border-bottom: 0;
        padding-bottom: 0;
    }

    .contact-layout-e .row a {
        color: var(--link);
        text-decoration: none;
    }

    .contact-layout-e .row a:hover {
        color: var(--link-hover);
        text-decoration: underline;
    }

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

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

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

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

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

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

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

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

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

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

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

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    position: relative;
}

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

.logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand);
    flex-shrink: 0;
}

.cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
    flex-shrink: 0;
    white-space: nowrap;
}
.cta-button:hover {
    background-color: var(--bg-accent-hover);
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) * 0.5);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}
.burger-menu span {
    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);
}

.main-nav {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface);
}
.nav-list {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    list-style: none;
    display: flex;
    gap: var(--gap);
}
.nav-link {
    display: inline-block;
    padding: var(--space-y) 0;
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
    color: var(--link-hover);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width var(--anim-duration) var(--anim-ease);
}
.nav-link:hover::after {
    width: 100%;
}

@media (max-width: 767px) {
    .burger-menu {
        display: flex;
    }
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
        z-index: 1000;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease);
    }
    .main-nav.active {
        max-height: 500px;
    }
    .nav-list {
        flex-direction: column;
        padding: var(--space-y) var(--space-x);
        gap: 0;
    }
    .nav-link {
        padding: calc(var(--space-y) * 0.75) 0;
        width: 100%;
    }
    .burger-menu.active span:nth-child(1) {
        transform: translateY(0.625rem) rotate(45deg);
    }
    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }
    .burger-menu.active span:nth-child(3) {
        transform: translateY(-0.625rem) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #eaeaea;
        color: #333;
        font-family: 'Segoe UI', system-ui, sans-serif;
        padding: 2.5rem 1rem;
        margin-top: 3rem;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    @media (min-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr 1fr 1fr;
            grid-template-areas:
                "brand nav contacts"
                "legal legal legal";
        }
        .footer-brand { grid-area: brand; }
        .footer-nav { grid-area: nav; }
        .footer-contacts { grid-area: contacts; }
        .footer-legal { grid-area: legal; }
    }

    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }

    .footer-tagline {
        color: #666;
        font-size: 0.95rem;
        line-height: 1.4;
        max-width: 250px;
    }

    .nav-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .nav-list a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s ease;
        font-size: 0.95rem;
    }

    .nav-list a:hover {
        color: #007bff;
        text-decoration: underline;
    }

    .footer-contacts address {
        font-style: normal;
        line-height: 1.6;
    }

    .contact-line {
        margin-bottom: 0.5rem;
        font-size: 0.9rem;
    }

    .contact-line strong {
        color: #444;
        display: inline-block;
        min-width: 60px;
    }

    .contact-line a {
        color: #0066cc;
        text-decoration: none;
    }

    .contact-line a:hover {
        text-decoration: underline;
    }

    .footer-legal {
        border-top: 1px solid #ddd;
        padding-top: 1.5rem;
        margin-top: 1rem;
        text-align: center;
        grid-column: 1 / -1;
    }

    .legal-links {
        margin-bottom: 0.75rem;
        font-size: 0.85rem;
    }

    .legal-links a {
        color: #555;
        text-decoration: none;
        margin: 0 0.25rem;
    }

    .legal-links a:hover {
        text-decoration: underline;
        color: #333;
    }

    .copyright {
        font-size: 0.85rem;
        color: #777;
        margin-bottom: 0.5rem;
    }

    .disclaimer {
        font-size: 0.75rem;
        color: #888;
        line-height: 1.4;
        max-width: 800px;
        margin: 0 auto;
    }

.cookie-cv5 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: linear-gradient(90deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    }

    .cookie-cv5__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 10px var(--space-x);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

    .cookie-cv5__inner p {
        margin: 0;
    }

    .cookie-cv5__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

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

    .cookie-cv5__actions button[data-choice='accept'] {
        background: var(--neutral-0);
        color: var(--fg-on-page);
    }

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

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

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

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

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

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

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

    .policy-layout-a .meta {
        margin: 0;
        color: var(--brand);
        font-weight: 600;
    }

    .policy-layout-a h3 {
        margin: 8px 0;
    }

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

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    position: relative;
}

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

.logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand);
    flex-shrink: 0;
}

.cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
    flex-shrink: 0;
    white-space: nowrap;
}
.cta-button:hover {
    background-color: var(--bg-accent-hover);
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) * 0.5);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}
.burger-menu span {
    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);
}

.main-nav {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface);
}
.nav-list {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    list-style: none;
    display: flex;
    gap: var(--gap);
}
.nav-link {
    display: inline-block;
    padding: var(--space-y) 0;
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
    color: var(--link-hover);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width var(--anim-duration) var(--anim-ease);
}
.nav-link:hover::after {
    width: 100%;
}

@media (max-width: 767px) {
    .burger-menu {
        display: flex;
    }
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
        z-index: 1000;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease);
    }
    .main-nav.active {
        max-height: 500px;
    }
    .nav-list {
        flex-direction: column;
        padding: var(--space-y) var(--space-x);
        gap: 0;
    }
    .nav-link {
        padding: calc(var(--space-y) * 0.75) 0;
        width: 100%;
    }
    .burger-menu.active span:nth-child(1) {
        transform: translateY(0.625rem) rotate(45deg);
    }
    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }
    .burger-menu.active span:nth-child(3) {
        transform: translateY(-0.625rem) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #eaeaea;
        color: #333;
        font-family: 'Segoe UI', system-ui, sans-serif;
        padding: 2.5rem 1rem;
        margin-top: 3rem;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    @media (min-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr 1fr 1fr;
            grid-template-areas:
                "brand nav contacts"
                "legal legal legal";
        }
        .footer-brand { grid-area: brand; }
        .footer-nav { grid-area: nav; }
        .footer-contacts { grid-area: contacts; }
        .footer-legal { grid-area: legal; }
    }

    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }

    .footer-tagline {
        color: #666;
        font-size: 0.95rem;
        line-height: 1.4;
        max-width: 250px;
    }

    .nav-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .nav-list a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s ease;
        font-size: 0.95rem;
    }

    .nav-list a:hover {
        color: #007bff;
        text-decoration: underline;
    }

    .footer-contacts address {
        font-style: normal;
        line-height: 1.6;
    }

    .contact-line {
        margin-bottom: 0.5rem;
        font-size: 0.9rem;
    }

    .contact-line strong {
        color: #444;
        display: inline-block;
        min-width: 60px;
    }

    .contact-line a {
        color: #0066cc;
        text-decoration: none;
    }

    .contact-line a:hover {
        text-decoration: underline;
    }

    .footer-legal {
        border-top: 1px solid #ddd;
        padding-top: 1.5rem;
        margin-top: 1rem;
        text-align: center;
        grid-column: 1 / -1;
    }

    .legal-links {
        margin-bottom: 0.75rem;
        font-size: 0.85rem;
    }

    .legal-links a {
        color: #555;
        text-decoration: none;
        margin: 0 0.25rem;
    }

    .legal-links a:hover {
        text-decoration: underline;
        color: #333;
    }

    .copyright {
        font-size: 0.85rem;
        color: #777;
        margin-bottom: 0.5rem;
    }

    .disclaimer {
        font-size: 0.75rem;
        color: #888;
        line-height: 1.4;
        max-width: 800px;
        margin: 0 auto;
    }

.cookie-cv5 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: linear-gradient(90deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    }

    .cookie-cv5__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 10px var(--space-x);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

    .cookie-cv5__inner p {
        margin: 0;
    }

    .cookie-cv5__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

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

    .cookie-cv5__actions button[data-choice='accept'] {
        background: var(--neutral-0);
        color: var(--fg-on-page);
    }

.policy-layout-c {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

    .policy-layout-c .wrap {
        max-width: 920px;
        margin: 0 auto;
    }

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

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

    .policy-layout-c .section-head p {
        margin: 10px 0 0;
        opacity: .92;
        color: var(--neutral-800);
    }

    .policy-layout-c .stack {
        display: grid;
        gap: 10px;
    }

    .policy-layout-c article {
        border: 1px solid rgba(255, 255, 255, .3);
        border-radius: var(--radius-md);
        padding: 12px;
        background: rgba(255, 255, 255, .1);
        border-color: var(--border-on-surface);
        background: var(--surface-1);
    }

    .policy-layout-c h3 {
        margin: 0;
        display: flex;
        gap: 8px;
        align-items: center;
        color: var(--neutral-900);
    }

    .policy-layout-c h3 span {
        display: inline-grid;
        place-items: center;
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: rgba(255, 255, 255, .18);
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-size: 0.9em;
    }

    .policy-layout-c article p {
        margin: 8px 0 0;
        opacity: .95;
        color: var(--neutral-800);
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    position: relative;
}

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

.logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand);
    flex-shrink: 0;
}

.cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
    flex-shrink: 0;
    white-space: nowrap;
}
.cta-button:hover {
    background-color: var(--bg-accent-hover);
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) * 0.5);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}
.burger-menu span {
    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);
}

.main-nav {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface);
}
.nav-list {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    list-style: none;
    display: flex;
    gap: var(--gap);
}
.nav-link {
    display: inline-block;
    padding: var(--space-y) 0;
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
    color: var(--link-hover);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width var(--anim-duration) var(--anim-ease);
}
.nav-link:hover::after {
    width: 100%;
}

@media (max-width: 767px) {
    .burger-menu {
        display: flex;
    }
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
        z-index: 1000;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease);
    }
    .main-nav.active {
        max-height: 500px;
    }
    .nav-list {
        flex-direction: column;
        padding: var(--space-y) var(--space-x);
        gap: 0;
    }
    .nav-link {
        padding: calc(var(--space-y) * 0.75) 0;
        width: 100%;
    }
    .burger-menu.active span:nth-child(1) {
        transform: translateY(0.625rem) rotate(45deg);
    }
    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }
    .burger-menu.active span:nth-child(3) {
        transform: translateY(-0.625rem) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #eaeaea;
        color: #333;
        font-family: 'Segoe UI', system-ui, sans-serif;
        padding: 2.5rem 1rem;
        margin-top: 3rem;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    @media (min-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr 1fr 1fr;
            grid-template-areas:
                "brand nav contacts"
                "legal legal legal";
        }
        .footer-brand { grid-area: brand; }
        .footer-nav { grid-area: nav; }
        .footer-contacts { grid-area: contacts; }
        .footer-legal { grid-area: legal; }
    }

    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }

    .footer-tagline {
        color: #666;
        font-size: 0.95rem;
        line-height: 1.4;
        max-width: 250px;
    }

    .nav-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .nav-list a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s ease;
        font-size: 0.95rem;
    }

    .nav-list a:hover {
        color: #007bff;
        text-decoration: underline;
    }

    .footer-contacts address {
        font-style: normal;
        line-height: 1.6;
    }

    .contact-line {
        margin-bottom: 0.5rem;
        font-size: 0.9rem;
    }

    .contact-line strong {
        color: #444;
        display: inline-block;
        min-width: 60px;
    }

    .contact-line a {
        color: #0066cc;
        text-decoration: none;
    }

    .contact-line a:hover {
        text-decoration: underline;
    }

    .footer-legal {
        border-top: 1px solid #ddd;
        padding-top: 1.5rem;
        margin-top: 1rem;
        text-align: center;
        grid-column: 1 / -1;
    }

    .legal-links {
        margin-bottom: 0.75rem;
        font-size: 0.85rem;
    }

    .legal-links a {
        color: #555;
        text-decoration: none;
        margin: 0 0.25rem;
    }

    .legal-links a:hover {
        text-decoration: underline;
        color: #333;
    }

    .copyright {
        font-size: 0.85rem;
        color: #777;
        margin-bottom: 0.5rem;
    }

    .disclaimer {
        font-size: 0.75rem;
        color: #888;
        line-height: 1.4;
        max-width: 800px;
        margin: 0 auto;
    }

.cookie-cv5 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: linear-gradient(90deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    }

    .cookie-cv5__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 10px var(--space-x);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

    .cookie-cv5__inner p {
        margin: 0;
    }

    .cookie-cv5__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

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

    .cookie-cv5__actions button[data-choice='accept'] {
        background: var(--neutral-0);
        color: var(--fg-on-page);
    }

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

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

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

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

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

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    position: relative;
}

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

.logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand);
    flex-shrink: 0;
}

.cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
    flex-shrink: 0;
    white-space: nowrap;
}
.cta-button:hover {
    background-color: var(--bg-accent-hover);
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) * 0.5);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}
.burger-menu span {
    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);
}

.main-nav {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface);
}
.nav-list {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    list-style: none;
    display: flex;
    gap: var(--gap);
}
.nav-link {
    display: inline-block;
    padding: var(--space-y) 0;
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
    color: var(--link-hover);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width var(--anim-duration) var(--anim-ease);
}
.nav-link:hover::after {
    width: 100%;
}

@media (max-width: 767px) {
    .burger-menu {
        display: flex;
    }
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
        z-index: 1000;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease);
    }
    .main-nav.active {
        max-height: 500px;
    }
    .nav-list {
        flex-direction: column;
        padding: var(--space-y) var(--space-x);
        gap: 0;
    }
    .nav-link {
        padding: calc(var(--space-y) * 0.75) 0;
        width: 100%;
    }
    .burger-menu.active span:nth-child(1) {
        transform: translateY(0.625rem) rotate(45deg);
    }
    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }
    .burger-menu.active span:nth-child(3) {
        transform: translateY(-0.625rem) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #eaeaea;
        color: #333;
        font-family: 'Segoe UI', system-ui, sans-serif;
        padding: 2.5rem 1rem;
        margin-top: 3rem;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    @media (min-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr 1fr 1fr;
            grid-template-areas:
                "brand nav contacts"
                "legal legal legal";
        }
        .footer-brand { grid-area: brand; }
        .footer-nav { grid-area: nav; }
        .footer-contacts { grid-area: contacts; }
        .footer-legal { grid-area: legal; }
    }

    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }

    .footer-tagline {
        color: #666;
        font-size: 0.95rem;
        line-height: 1.4;
        max-width: 250px;
    }

    .nav-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .nav-list a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s ease;
        font-size: 0.95rem;
    }

    .nav-list a:hover {
        color: #007bff;
        text-decoration: underline;
    }

    .footer-contacts address {
        font-style: normal;
        line-height: 1.6;
    }

    .contact-line {
        margin-bottom: 0.5rem;
        font-size: 0.9rem;
    }

    .contact-line strong {
        color: #444;
        display: inline-block;
        min-width: 60px;
    }

    .contact-line a {
        color: #0066cc;
        text-decoration: none;
    }

    .contact-line a:hover {
        text-decoration: underline;
    }

    .footer-legal {
        border-top: 1px solid #ddd;
        padding-top: 1.5rem;
        margin-top: 1rem;
        text-align: center;
        grid-column: 1 / -1;
    }

    .legal-links {
        margin-bottom: 0.75rem;
        font-size: 0.85rem;
    }

    .legal-links a {
        color: #555;
        text-decoration: none;
        margin: 0 0.25rem;
    }

    .legal-links a:hover {
        text-decoration: underline;
        color: #333;
    }

    .copyright {
        font-size: 0.85rem;
        color: #777;
        margin-bottom: 0.5rem;
    }

    .disclaimer {
        font-size: 0.75rem;
        color: #888;
        line-height: 1.4;
        max-width: 800px;
        margin: 0 auto;
    }

.cookie-cv5 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: linear-gradient(90deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    }

    .cookie-cv5__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 10px var(--space-x);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

    .cookie-cv5__inner p {
        margin: 0;
    }

    .cookie-cv5__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

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

    .cookie-cv5__actions button[data-choice='accept'] {
        background: var(--neutral-0);
        color: var(--fg-on-page);
    }

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

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

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

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

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