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

  --max-w: 1340px;
  --space-x: 2.35rem;
  --space-y: 1.5rem;
  --gap: 1.89rem;

  --radius-xl: 1.27rem;
  --radius-lg: 0.9rem;
  --radius-md: 0.42rem;
  --radius-sm: 0.3rem;

  --shadow-sm: 0 1px 6px rgba(0,0,0,0.15);
  --shadow-md: 0 8px 16px rgba(0,0,0,0.19);
  --shadow-lg: 0 22px 30px rgba(0,0,0,0.23);

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

  --brand: #005792;
  --brand-contrast: #ffffff;
  --accent: #00A8CC;
  --accent-contrast: #ffffff;

  --neutral-0: #ffffff;
  --neutral-100: #F5F7FA;
  --neutral-300: #D1D9E6;
  --neutral-600: #6C7A95;
  --neutral-800: #2C3E50;
  --neutral-900: #1A2530;

  --bg-page: #ffffff;
  --fg-on-page: #1A2530;

  --bg-alt: #F8FAFD;
  --fg-on-alt: #2C3E50;

  --surface-1: #ffffff;
  --surface-2: #F5F7FA;
  --fg-on-surface: #2C3E50;
  --border-on-surface: #E1E8F0;

  --surface-light: rgba(255, 255, 255, 0.85);
  --fg-on-surface-light: #2C3E50;
  --border-on-surface-light: rgba(0, 87, 146, 0.15);

  --bg-primary: #005792;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #004A7A;
  --ring: rgba(0, 87, 146, 0.4);

  --bg-accent: #E6F7FF;
  --fg-on-accent: #003F5C;
  --bg-accent-hover: #0097B5;

  --link: #005792;
  --link-hover: #003F5C;

  --gradient-hero: linear-gradient(135deg, #005792 0%, #00A8CC 100%);
  --gradient-accent: linear-gradient(90deg, #E6F7FF 0%, #F0FAFF 100%);

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

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

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

    .header__nav {
        display: flex;
        gap: var(--gap);
        flex: 1;
    }

    .header__nav--left {
        justify-content: flex-start;
    }

    .header__nav--right {
        justify-content: flex-end;
    }

    .header__logo {
        flex-shrink: 0;
        margin: 0 var(--space-x);
    }

    .logo-text {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        letter-spacing: -0.5px;
        white-space: nowrap;
    }

    .nav-link {
        color: var(--fg-on-surface);
        text-decoration: none;
        padding: calc(var(--space-y) / 2) var(--space-x);
        border-radius: var(--radius-md);
        transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }

    .nav-link:hover {
        background-color: var(--btn-ghost-bg-hover);
        color: var(--link-hover);
    }

    .burger-button {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 2.5rem;
        height: 2rem;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 101;
    }

    .burger-line {
        display: block;
        height: 3px;
        width: 100%;
        background-color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }

    .mobile-menu {
        display: none;
        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);
        padding: var(--space-y) var(--space-x);
        z-index: 99;
    }

    .mobile-menu[aria-hidden="false"] {
        display: block;
    }

    .mobile-nav {
        display: flex;
        flex-direction: column;
        gap: calc(var(--gap) / 2);
    }

    .mobile-nav-link {
        color: var(--fg-on-surface);
        text-decoration: none;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .mobile-nav-link:hover {
        background-color: var(--btn-ghost-bg-hover);
    }

    @media (max-width: 767px) {
        .header__nav {
            display: none;
        }

        .burger-button {
            display: flex;
        }

        .header__logo {
            margin: 0 auto;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
        }

        .burger-button[aria-expanded="true"] .burger-line:nth-child(1) {
            transform: translateY(0.7rem) rotate(45deg);
        }

        .burger-button[aria-expanded="true"] .burger-line:nth-child(2) {
            opacity: 0;
        }

        .burger-button[aria-expanded="true"] .burger-line:nth-child(3) {
            transform: translateY(-0.7rem) rotate(-45deg);
        }
    }

.footer {
        background-color: #f5f7fa;
        color: #333;
        padding: 3rem 1.5rem 1.5rem;
        font-family: sans-serif;
        border-top: 1px solid #e1e5eb;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto 2rem;
        display: flex;
        flex-wrap: wrap;
        gap: 3rem;
        justify-content: space-between;
    }
    .footer-brand {
        flex: 1;
        min-width: 250px;
    }
    .footer-brand .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #0056a6;
        margin-bottom: 0.5rem;
    }
    .footer-brand .tagline {
        color: #666;
        font-size: 0.95rem;
        line-height: 1.5;
    }
    .footer-right {
        flex: 2;
        min-width: 250px;
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        color: #333;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #0056a6;
        text-decoration: underline;
    }
    .footer-legal-links {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        font-size: 0.9rem;
    }
    .footer-legal-links a {
        color: #666;
        text-decoration: none;
    }
    .footer-legal-links a:hover {
        text-decoration: underline;
        color: #333;
    }
    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #e1e5eb;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1.5rem;
        font-size: 0.9rem;
    }
    .footer-contacts {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 1.5rem;
        color: #666;
    }
    .footer-contacts a {
        color: #666;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        color: #0056a6;
        text-decoration: underline;
    }
    .footer-disclaimer {
        color: #888;
        text-align: right;
        flex: 1;
        min-width: 300px;
        line-height: 1.5;
    }
    @media (max-width: 768px) {
        .footer-container, .footer-bottom {
            flex-direction: column;
            align-items: flex-start;
            gap: 2rem;
        }
        .footer-nav ul {
            flex-direction: column;
            gap: 1rem;
        }
        .footer-disclaimer {
            text-align: left;
        }
        .footer-contacts {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.75rem;
        }
    }

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

    .cookie-cv13__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, #0f172a, #1e293b);
        color: #e2e8f0;
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv13__stack strong {
        display: block;
        margin-bottom: 6px;
        color: #f8fafc;
    }

    .cookie-cv13__stack p {
        margin: 0;
        color: #cbd5e1;
    }

    .cookie-cv13__actions {
        margin-top: 12px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .cookie-cv13__actions a {
        text-decoration: none;
        color: #e2e8f0;
        border: 1px solid rgba(148, 163, 184, 0.5);
        border-radius: 999px;
        padding: 7px 12px;
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .cookie-cv13__actions a[data-choice='accept'] {
        background: #38bdf8;
        border-color: transparent;
        color: #0f172a;
        font-weight: 700;
    }

    .cookie-cv13__actions a:hover {
        background: rgba(148, 163, 184, 0.2);
    }

    .cookie-cv13__actions a[data-choice='accept']:hover {
        background: #67d3fb;
    }

.wp-lang-switcher-v10 {
        position: fixed;
        left: 2rem;

        bottom: clamp(14px, 2vw, 24px);
        z-index: 99999;
    }

    .wp-lang-switcher-v10__btn {
        border: 1px solid rgba(255, 255, 255, 0.28);
        border-radius: 999px;
        background: linear-gradient(145deg, #111827, #1f2937);
        color: #f9fafb;
        box-shadow: var(--shadow-lg);
        padding: 9px 14px;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        cursor: pointer;
    }

    .wp-lang-switcher-v10__emoji {
        font-size: 16px;
        line-height: 1;
    }

    .wp-lang-switcher-v10__value {
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.08em;
    }

    .wp-lang-switcher-v10__dropdown {
        position: absolute;
        bottom: 52px;
        left: 50%;
        transform: translate(-50%, 10px);
        opacity: 0;
        pointer-events: none;
        display: flex;
        gap: 6px;
        transition: opacity var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
    }

    .wp-lang-switcher-v10__dropdown.open {
        opacity: 1;
        pointer-events: auto;
        transform: translate(-50%, 0);
    }

    .wp-lang-switcher-v10__dropdown button,
    .wp-lang-switcher-v10__dropdown a {
        width: 42px;
        height: 34px;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(17, 24, 39, 0.92);
        color: #e5e7eb;
        text-decoration: none;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.04em;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .wp-lang-switcher-v10__dropdown button:hover,
    .wp-lang-switcher-v10__dropdown a:hover {
        background: #38bdf8;
        border-color: transparent;
        color: #06263a;
    }

.hero-arc-v3 {
        padding: calc(var(--space-y) * 2.8) var(--space-x);
        background: var(--bg-alt);
        color: var(--fg-on-alt);
    }

    .hero-arc-v3 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns:minmax(0, .82fr) minmax(0, 1.18fr);
        gap: calc(var(--gap) * 2);
        align-items: stretch;
    }

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

    .hero-arc-v3 img {
        width: 100%;
        height: 100%;
        min-height: 320px;
        object-fit: cover;
        border-radius: var(--radius-lg);
    }

    .hero-arc-v3 .copy {
        display: grid;
        gap: var(--gap);
        align-content: start;
    }

    .hero-arc-v3 h1 {
        margin: .2rem 0;
        font-size: clamp(2rem, 4vw, 3.2rem);
        line-height: 1.1;
    }

    .hero-arc-v3 .subtitle {
        margin: 0;
        color: var(--fg-on-surface-light);
    }

    .hero-arc-v3 .stats {
        display: grid;
        grid-template-columns:repeat(2, minmax(0, 1fr));
        gap: var(--gap);
    }

    .hero-arc-v3 .stats article {
        padding: 1rem;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
    }

    .hero-arc-v3 .stats p {
        margin: .3rem 0 0;
        color: var(--fg-on-surface-light);
        font-size: .92rem;
    }

    .hero-arc-v3 .actions {
        display: flex;
        flex-wrap: wrap;
        gap: var(--gap);
    }

    .hero-arc-v3 .actions a {
        text-decoration: none;
        padding: .7rem 1rem;
        border-radius: var(--radius-md);
        border: 1px solid var(--border-on-surface);
        color: var(--fg-on-surface);
        background: var(--surface-1);
    }

    .hero-arc-v3 .actions a:first-child {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-color: var(--bg-primary);
    }

    @media (max-width: 940px) {
        .hero-arc-v3 .shell {
            grid-template-columns:1fr;
        }

        .hero-arc-v3 .stats {
            grid-template-columns:1fr;
        }
    }

.next-pulse-c3 {
        padding: clamp(3.6rem, 8vw, 6.1rem) var(--space-x);
        background: radial-gradient(circle at 50% 0, rgba(255, 255, 255, .16), transparent 28%), var(--gradient-hero);
        color: var(--fg-on-primary);
        text-align: center;
    }

    .next-pulse-c3__wrap {
        max-width: 54rem;
        margin: 0 auto;
    }

    .next-pulse-c3__wrap p:first-child {
        margin: 0;
        color: rgba(255, 255, 255, .76);
    }

    .next-pulse-c3__wrap h2 {
        margin: .55rem 0 0;
        font-size: clamp(2.1rem, 4vw, 3.1rem);
    }

    .next-pulse-c3__row {
        margin-top: 1.15rem;
        display: flex;
        gap: .75rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .next-pulse-c3__row a {
        display: inline-flex;
        padding: .8rem 1rem;
        border-radius: 999px;
        background: rgba(255, 255, 255, .12);
        color: var(--fg-on-primary);
        border: 1px solid rgba(255, 255, 255, .18);
        text-decoration: none;
        animation: next_pulse_c3 2.4s ease-in-out infinite;
    }

    .next-pulse-c3__row a:nth-child(2n) {
        animation-delay: .35s;
    }

    @keyframes next_pulse_c3 {
        0%, 100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-3px);
        }
    }

    .next-pulse-c3__copy {
        margin-top: 1rem;

    }

    .next-pulse-c3__cta {
        display: inline-flex;
        margin-top: 1rem;
        min-height: 2.9rem;
        align-items: center;
        justify-content: center;
        padding: 0 1rem;
        border-radius: var(--radius-md);
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        text-decoration: none;
    }

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

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

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

        transform: translateY(-18px);
    }

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

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

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

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

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

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

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

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

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

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

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

.why-choose-alt {

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

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

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

    @keyframes backgroundPulse {
        0%, 100% {

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

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

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

    }

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

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

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

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

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

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

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

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

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

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

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

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

    @keyframes numberPulse {
        0%, 100% {

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

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

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

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

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

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

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

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

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

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

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

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

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

    .touch-gridline .row a {
        color: var(--link);
        text-decoration: none;
    }

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

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

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

    .header__nav {
        display: flex;
        gap: var(--gap);
        flex: 1;
    }

    .header__nav--left {
        justify-content: flex-start;
    }

    .header__nav--right {
        justify-content: flex-end;
    }

    .header__logo {
        flex-shrink: 0;
        margin: 0 var(--space-x);
    }

    .logo-text {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        letter-spacing: -0.5px;
        white-space: nowrap;
    }

    .nav-link {
        color: var(--fg-on-surface);
        text-decoration: none;
        padding: calc(var(--space-y) / 2) var(--space-x);
        border-radius: var(--radius-md);
        transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }

    .nav-link:hover {
        background-color: var(--btn-ghost-bg-hover);
        color: var(--link-hover);
    }

    .burger-button {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 2.5rem;
        height: 2rem;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 101;
    }

    .burger-line {
        display: block;
        height: 3px;
        width: 100%;
        background-color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }

    .mobile-menu {
        display: none;
        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);
        padding: var(--space-y) var(--space-x);
        z-index: 99;
    }

    .mobile-menu[aria-hidden="false"] {
        display: block;
    }

    .mobile-nav {
        display: flex;
        flex-direction: column;
        gap: calc(var(--gap) / 2);
    }

    .mobile-nav-link {
        color: var(--fg-on-surface);
        text-decoration: none;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .mobile-nav-link:hover {
        background-color: var(--btn-ghost-bg-hover);
    }

    @media (max-width: 767px) {
        .header__nav {
            display: none;
        }

        .burger-button {
            display: flex;
        }

        .header__logo {
            margin: 0 auto;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
        }

        .burger-button[aria-expanded="true"] .burger-line:nth-child(1) {
            transform: translateY(0.7rem) rotate(45deg);
        }

        .burger-button[aria-expanded="true"] .burger-line:nth-child(2) {
            opacity: 0;
        }

        .burger-button[aria-expanded="true"] .burger-line:nth-child(3) {
            transform: translateY(-0.7rem) rotate(-45deg);
        }
    }

.footer {
        background-color: #f5f7fa;
        color: #333;
        padding: 3rem 1.5rem 1.5rem;
        font-family: sans-serif;
        border-top: 1px solid #e1e5eb;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto 2rem;
        display: flex;
        flex-wrap: wrap;
        gap: 3rem;
        justify-content: space-between;
    }
    .footer-brand {
        flex: 1;
        min-width: 250px;
    }
    .footer-brand .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #0056a6;
        margin-bottom: 0.5rem;
    }
    .footer-brand .tagline {
        color: #666;
        font-size: 0.95rem;
        line-height: 1.5;
    }
    .footer-right {
        flex: 2;
        min-width: 250px;
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        color: #333;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #0056a6;
        text-decoration: underline;
    }
    .footer-legal-links {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        font-size: 0.9rem;
    }
    .footer-legal-links a {
        color: #666;
        text-decoration: none;
    }
    .footer-legal-links a:hover {
        text-decoration: underline;
        color: #333;
    }
    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #e1e5eb;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1.5rem;
        font-size: 0.9rem;
    }
    .footer-contacts {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 1.5rem;
        color: #666;
    }
    .footer-contacts a {
        color: #666;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        color: #0056a6;
        text-decoration: underline;
    }
    .footer-disclaimer {
        color: #888;
        text-align: right;
        flex: 1;
        min-width: 300px;
        line-height: 1.5;
    }
    @media (max-width: 768px) {
        .footer-container, .footer-bottom {
            flex-direction: column;
            align-items: flex-start;
            gap: 2rem;
        }
        .footer-nav ul {
            flex-direction: column;
            gap: 1rem;
        }
        .footer-disclaimer {
            text-align: left;
        }
        .footer-contacts {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.75rem;
        }
    }

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

    .cookie-cv13__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, #0f172a, #1e293b);
        color: #e2e8f0;
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv13__stack strong {
        display: block;
        margin-bottom: 6px;
        color: #f8fafc;
    }

    .cookie-cv13__stack p {
        margin: 0;
        color: #cbd5e1;
    }

    .cookie-cv13__actions {
        margin-top: 12px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .cookie-cv13__actions a {
        text-decoration: none;
        color: #e2e8f0;
        border: 1px solid rgba(148, 163, 184, 0.5);
        border-radius: 999px;
        padding: 7px 12px;
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .cookie-cv13__actions a[data-choice='accept'] {
        background: #38bdf8;
        border-color: transparent;
        color: #0f172a;
        font-weight: 700;
    }

    .cookie-cv13__actions a:hover {
        background: rgba(148, 163, 184, 0.2);
    }

    .cookie-cv13__actions a[data-choice='accept']:hover {
        background: #67d3fb;
    }

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

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

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

.timeline--colored-v5 {

    padding: 60px 20px;
    background: var(--neutral-900);
    color: var(--neutral-0);
}

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

.timeline__header {
    text-align: center;
    margin-bottom: 20px;
}

.timeline__header h2 {
    margin: 0 0 4px;
    font-size: clamp(24px,4vw,30px);
    color: var(--brand-contrast);
}

.timeline__header p {
    margin: 0;
    color: var(--neutral-300);
}

.timeline__list {
    margin: 0;
    padding: 0;
    list-style: none;
    border-left: 2px solid rgba(75,85,99,0.8);
}

.timeline__item {
    position: relative;
    padding-left: 16px;
    padding-bottom: 14px;
}

.timeline__item:last-child {
    padding-bottom: 0;
}

.timeline__dot {
    position: absolute;
    left: -7px;
    top: 0.35rem;
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: var(--bg-primary);
    border: 2px solid var(--neutral-900);
}

.timeline__item--accent .timeline__dot {
    background: var(--accent);
}

.timeline__item--accent .timeline__dot {
    background: var(--accent);
}

.timeline__time {
    font-size: 0.8rem;
    color: var(--neutral-300);
}

.timeline__content h3 {
    margin: 0 0 2px;
    font-size: 0.95rem;
}

.timeline__content p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--neutral-100);
}

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

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

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

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

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

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

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

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

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

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

    .identity-lv4__line h3 {
        margin: 0;
    }

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

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

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

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

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

    .testimonials-struct-v3 article, .testimonials-struct-v3 blockquote, .testimonials-struct-v3 figure, .testimonials-struct-v3 .spotlight, .testimonials-struct-v3 .row {
        background: var(--chip-bg);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        padding: .85rem
    }

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

    .testimonials-struct-v3 .rail {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: .6rem
    }

    .testimonials-struct-v3 .stack {
        display: grid;
        gap: .65rem
    }

    .testimonials-struct-v3 .stack article {
        display: grid;
        grid-template-columns:3rem 1fr;
        gap: .6rem;
        align-items: center
    }

    .testimonials-struct-v3 img {
        display: block;
        width: 3rem;
        height: 3rem;
        border-radius: 50%;
        object-fit: cover
    }

    .testimonials-struct-v3 .table {
        display: grid;
        gap: .45rem
    }

    .testimonials-struct-v3 .row {
        display: grid;
        grid-template-columns:12rem 1fr;
        gap: .6rem
    }

    .testimonials-struct-v3 .wall {
        columns: 3;
        column-gap: var(--gap)
    }

    .testimonials-struct-v3 blockquote {
        break-inside: avoid;
        margin: 0 0 var(--gap) 0;
        display: grid;
        gap: .4rem
    }

    .testimonials-struct-v3 .slider {
        display: grid;
        grid-template-columns:repeat(2, minmax(0, 1fr));
        gap: var(--gap)
    }

    .testimonials-struct-v3 .dots {
        display: flex;
        justify-content: center;
        gap: .4rem
    }

    .testimonials-struct-v3 .dots span {
        padding: .25rem .45rem;
        border-radius: var(--radius-sm);
        background: var(--chip-bg);
        border: 1px solid var(--border-on-surface)
    }

    @media (max-width: 900px) {
        .testimonials-struct-v3 .grid, .testimonials-struct-v3 .rail, .testimonials-struct-v3 .slider {
            grid-template-columns:1fr 1fr
        }

        .testimonials-struct-v3 .wall {
            columns: 2
        }
    }

    @media (max-width: 680px) {
        .testimonials-struct-v3 .grid, .testimonials-struct-v3 .rail, .testimonials-struct-v3 .slider, .testimonials-struct-v3 .row {
            grid-template-columns:1fr
        }

        .testimonials-struct-v3 .wall {
            columns: 1
        }
    }

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

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

    .header__nav {
        display: flex;
        gap: var(--gap);
        flex: 1;
    }

    .header__nav--left {
        justify-content: flex-start;
    }

    .header__nav--right {
        justify-content: flex-end;
    }

    .header__logo {
        flex-shrink: 0;
        margin: 0 var(--space-x);
    }

    .logo-text {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        letter-spacing: -0.5px;
        white-space: nowrap;
    }

    .nav-link {
        color: var(--fg-on-surface);
        text-decoration: none;
        padding: calc(var(--space-y) / 2) var(--space-x);
        border-radius: var(--radius-md);
        transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }

    .nav-link:hover {
        background-color: var(--btn-ghost-bg-hover);
        color: var(--link-hover);
    }

    .burger-button {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 2.5rem;
        height: 2rem;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 101;
    }

    .burger-line {
        display: block;
        height: 3px;
        width: 100%;
        background-color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }

    .mobile-menu {
        display: none;
        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);
        padding: var(--space-y) var(--space-x);
        z-index: 99;
    }

    .mobile-menu[aria-hidden="false"] {
        display: block;
    }

    .mobile-nav {
        display: flex;
        flex-direction: column;
        gap: calc(var(--gap) / 2);
    }

    .mobile-nav-link {
        color: var(--fg-on-surface);
        text-decoration: none;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .mobile-nav-link:hover {
        background-color: var(--btn-ghost-bg-hover);
    }

    @media (max-width: 767px) {
        .header__nav {
            display: none;
        }

        .burger-button {
            display: flex;
        }

        .header__logo {
            margin: 0 auto;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
        }

        .burger-button[aria-expanded="true"] .burger-line:nth-child(1) {
            transform: translateY(0.7rem) rotate(45deg);
        }

        .burger-button[aria-expanded="true"] .burger-line:nth-child(2) {
            opacity: 0;
        }

        .burger-button[aria-expanded="true"] .burger-line:nth-child(3) {
            transform: translateY(-0.7rem) rotate(-45deg);
        }
    }

.footer {
        background-color: #f5f7fa;
        color: #333;
        padding: 3rem 1.5rem 1.5rem;
        font-family: sans-serif;
        border-top: 1px solid #e1e5eb;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto 2rem;
        display: flex;
        flex-wrap: wrap;
        gap: 3rem;
        justify-content: space-between;
    }
    .footer-brand {
        flex: 1;
        min-width: 250px;
    }
    .footer-brand .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #0056a6;
        margin-bottom: 0.5rem;
    }
    .footer-brand .tagline {
        color: #666;
        font-size: 0.95rem;
        line-height: 1.5;
    }
    .footer-right {
        flex: 2;
        min-width: 250px;
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        color: #333;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #0056a6;
        text-decoration: underline;
    }
    .footer-legal-links {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        font-size: 0.9rem;
    }
    .footer-legal-links a {
        color: #666;
        text-decoration: none;
    }
    .footer-legal-links a:hover {
        text-decoration: underline;
        color: #333;
    }
    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #e1e5eb;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1.5rem;
        font-size: 0.9rem;
    }
    .footer-contacts {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 1.5rem;
        color: #666;
    }
    .footer-contacts a {
        color: #666;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        color: #0056a6;
        text-decoration: underline;
    }
    .footer-disclaimer {
        color: #888;
        text-align: right;
        flex: 1;
        min-width: 300px;
        line-height: 1.5;
    }
    @media (max-width: 768px) {
        .footer-container, .footer-bottom {
            flex-direction: column;
            align-items: flex-start;
            gap: 2rem;
        }
        .footer-nav ul {
            flex-direction: column;
            gap: 1rem;
        }
        .footer-disclaimer {
            text-align: left;
        }
        .footer-contacts {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.75rem;
        }
    }

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

    .cookie-cv13__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, #0f172a, #1e293b);
        color: #e2e8f0;
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv13__stack strong {
        display: block;
        margin-bottom: 6px;
        color: #f8fafc;
    }

    .cookie-cv13__stack p {
        margin: 0;
        color: #cbd5e1;
    }

    .cookie-cv13__actions {
        margin-top: 12px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .cookie-cv13__actions a {
        text-decoration: none;
        color: #e2e8f0;
        border: 1px solid rgba(148, 163, 184, 0.5);
        border-radius: 999px;
        padding: 7px 12px;
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .cookie-cv13__actions a[data-choice='accept'] {
        background: #38bdf8;
        border-color: transparent;
        color: #0f172a;
        font-weight: 700;
    }

    .cookie-cv13__actions a:hover {
        background: rgba(148, 163, 184, 0.2);
    }

    .cookie-cv13__actions a[data-choice='accept']:hover {
        background: #67d3fb;
    }

.features-struct-v1 {
        padding: calc(var(--space-y) * 2) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-surface)
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.social-c1 {
        padding: clamp(18px, 3vw, 44px);
        background: var(--gradient-accent);
        color: var(--accent-contrast);
        overflow: hidden;
    }

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

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

    .social-c1__title {
        margin: 0;
        font-size: clamp(24px, 4.6vw, 44px);
        letter-spacing: -.02em;
        line-height: 1.1;
        color: var(--fg-on-surface);
    }

    .social-c1__sub {
        margin: 10px 0 0;
        max-width: 70ch;
        color: var(--neutral-600);
    }

    .social-c1__band {
        margin-top: 18px;
        border-radius: var(--radius-xl);
        border: 1px solid var(--border-on-surface-light);
        background: var(--surface-light);
        box-shadow: var(--shadow-lg);
        overflow: hidden;
        position: relative;
    }

    .social-c1__band::before,
    .social-c1__band::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        width: 90px;
        pointer-events: none;
        z-index: 1;
    }

    .social-c1__band::before {
        left: 0;
        background: linear-gradient(90deg, var(--surface-light), rgba(255, 255, 255, 0));
    }

    .social-c1__band::after {
        right: 0;
        background: linear-gradient(270deg, var(--surface-light), rgba(255, 255, 255, 0));
    }

    .social-c1__track {
        display: flex;
        gap: 18px;
        padding: var(--space-y) var(--space-x);
        width: max-content;
        animation: socialC1Marquee 18s linear infinite;
    }

    @keyframes socialC1Marquee {
        0% {
            transform: translateX(0)
        }
        100% {
            transform: translateX(-50%)
        }
    }

    .social-c1__logo {
        width: 140px;
        height: 86px;
        border-radius: var(--radius-lg);
        background: var(--surface-2);
        border: 1px solid var(--border-on-surface);
        display: grid;
        place-items: center;
        flex: 0 0 auto;
    }

    .social-c1__logo img {
        max-width: 78%;
        max-height: 70%;
        opacity: .92;
        filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.18));
    }

    .social-c1__stats {
        margin-top: 18px;
        display: grid;
        grid-template-columns:repeat(12, 1fr);
        gap: 12px;
    }

    .social-c1__stat {
        grid-column: span 4;
        border-radius: var(--radius-xl);
        background: var(--surface-light);
        border: 1px solid var(--border-on-surface-light);
        box-shadow: var(--shadow-md);
        padding: 14px 16px;
    }

    .social-c1__num {
        font-weight: 900;
        font-size: clamp(18px, 2.4vw, 28px);
        color: var(--fg-on-surface);
    }

    .social-c1__lbl {
        margin-top: 6px;
        color: var(--neutral-600);
    }

    @media (max-width: 900px) {
        .social-c1__stat {
            grid-column: span 6;
        }
    }

    @media (max-width: 640px) {
        .social-c1__stat {
            grid-column: span 12;
        }
    }

    @media (prefers-reduced-motion: reduce) {
        .social-c1__track {
            animation: none;
            transform: none;
        }
    }

.hiw-column-l5 {
        padding: clamp(3.2rem, 7vw, 5.8rem) var(--space-x);
        background: linear-gradient(180deg, var(--surface-1), var(--bg-alt));
        color: var(--fg-on-page);
    }

    .hiw-column-l5__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1.15fr .85fr;
        gap: 1.25rem;
    }

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

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

    .hiw-column-l5__copy {
        margin: .85rem 0 0;
        color: var(--neutral-600);
    }

    .hiw-column-l5__side {
        padding: 1rem;
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
        box-shadow: var(--shadow-sm);
    }

    .hiw-column-l5__side img {
        display: block;
        width: 100%;
        border-radius: var(--radius-lg);
    }

    .hiw-column-l5__side strong {
        display: block;
        margin-top: .9rem;
        color: var(--brand);
    }

    .hiw-column-l5__item {
        margin-top: .65rem;
        padding: .75rem .85rem;
        border-radius: var(--radius-md);
        background: var(--surface-2);
    }

    @media (max-width: 840px) {
        .hiw-column-l5__wrap {
            grid-template-columns: 1fr;
        }
    }

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

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

    .header__nav {
        display: flex;
        gap: var(--gap);
        flex: 1;
    }

    .header__nav--left {
        justify-content: flex-start;
    }

    .header__nav--right {
        justify-content: flex-end;
    }

    .header__logo {
        flex-shrink: 0;
        margin: 0 var(--space-x);
    }

    .logo-text {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        letter-spacing: -0.5px;
        white-space: nowrap;
    }

    .nav-link {
        color: var(--fg-on-surface);
        text-decoration: none;
        padding: calc(var(--space-y) / 2) var(--space-x);
        border-radius: var(--radius-md);
        transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }

    .nav-link:hover {
        background-color: var(--btn-ghost-bg-hover);
        color: var(--link-hover);
    }

    .burger-button {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 2.5rem;
        height: 2rem;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 101;
    }

    .burger-line {
        display: block;
        height: 3px;
        width: 100%;
        background-color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }

    .mobile-menu {
        display: none;
        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);
        padding: var(--space-y) var(--space-x);
        z-index: 99;
    }

    .mobile-menu[aria-hidden="false"] {
        display: block;
    }

    .mobile-nav {
        display: flex;
        flex-direction: column;
        gap: calc(var(--gap) / 2);
    }

    .mobile-nav-link {
        color: var(--fg-on-surface);
        text-decoration: none;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .mobile-nav-link:hover {
        background-color: var(--btn-ghost-bg-hover);
    }

    @media (max-width: 767px) {
        .header__nav {
            display: none;
        }

        .burger-button {
            display: flex;
        }

        .header__logo {
            margin: 0 auto;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
        }

        .burger-button[aria-expanded="true"] .burger-line:nth-child(1) {
            transform: translateY(0.7rem) rotate(45deg);
        }

        .burger-button[aria-expanded="true"] .burger-line:nth-child(2) {
            opacity: 0;
        }

        .burger-button[aria-expanded="true"] .burger-line:nth-child(3) {
            transform: translateY(-0.7rem) rotate(-45deg);
        }
    }

.footer {
        background-color: #f5f7fa;
        color: #333;
        padding: 3rem 1.5rem 1.5rem;
        font-family: sans-serif;
        border-top: 1px solid #e1e5eb;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto 2rem;
        display: flex;
        flex-wrap: wrap;
        gap: 3rem;
        justify-content: space-between;
    }
    .footer-brand {
        flex: 1;
        min-width: 250px;
    }
    .footer-brand .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #0056a6;
        margin-bottom: 0.5rem;
    }
    .footer-brand .tagline {
        color: #666;
        font-size: 0.95rem;
        line-height: 1.5;
    }
    .footer-right {
        flex: 2;
        min-width: 250px;
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        color: #333;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #0056a6;
        text-decoration: underline;
    }
    .footer-legal-links {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        font-size: 0.9rem;
    }
    .footer-legal-links a {
        color: #666;
        text-decoration: none;
    }
    .footer-legal-links a:hover {
        text-decoration: underline;
        color: #333;
    }
    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #e1e5eb;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1.5rem;
        font-size: 0.9rem;
    }
    .footer-contacts {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 1.5rem;
        color: #666;
    }
    .footer-contacts a {
        color: #666;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        color: #0056a6;
        text-decoration: underline;
    }
    .footer-disclaimer {
        color: #888;
        text-align: right;
        flex: 1;
        min-width: 300px;
        line-height: 1.5;
    }
    @media (max-width: 768px) {
        .footer-container, .footer-bottom {
            flex-direction: column;
            align-items: flex-start;
            gap: 2rem;
        }
        .footer-nav ul {
            flex-direction: column;
            gap: 1rem;
        }
        .footer-disclaimer {
            text-align: left;
        }
        .footer-contacts {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.75rem;
        }
    }

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

    .cookie-cv13__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, #0f172a, #1e293b);
        color: #e2e8f0;
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv13__stack strong {
        display: block;
        margin-bottom: 6px;
        color: #f8fafc;
    }

    .cookie-cv13__stack p {
        margin: 0;
        color: #cbd5e1;
    }

    .cookie-cv13__actions {
        margin-top: 12px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .cookie-cv13__actions a {
        text-decoration: none;
        color: #e2e8f0;
        border: 1px solid rgba(148, 163, 184, 0.5);
        border-radius: 999px;
        padding: 7px 12px;
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .cookie-cv13__actions a[data-choice='accept'] {
        background: #38bdf8;
        border-color: transparent;
        color: #0f172a;
        font-weight: 700;
    }

    .cookie-cv13__actions a:hover {
        background: rgba(148, 163, 184, 0.2);
    }

    .cookie-cv13__actions a[data-choice='accept']:hover {
        background: #67d3fb;
    }

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

    .form-fresh-v4 .shell {
        max-width: 820px;
        margin: 0 auto;
        display: grid;
        gap: var(--gap);
    }

    .form-fresh-v4 h2 {
        margin: 0;
        font-size: clamp(1.8rem, 3.3vw, 2.5rem);
    }

    .form-fresh-v4 form {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--chip-bg);
        border: 1px solid var(--btn-ghost-bg-hover);
        display: grid;
        gap: .85rem;
    }

    .form-fresh-v4 .steps {
        display: flex;
        gap: .5rem;
        flex-wrap: wrap;
    }

    .form-fresh-v4 .steps span {
        padding: .3rem .55rem;
        border-radius: var(--radius-sm);
        background: var(--btn-ghost-bg-hover);
        font-size: .8rem;
    }

    .form-fresh-v4 .fields {
        display: grid;
        grid-template-columns:repeat(2, minmax(0, 1fr));
        gap: .7rem;
    }

    .form-fresh-v4 label {
        display: grid;
        gap: .3rem;
        font-size: .88rem;
    }

    .form-fresh-v4 input, .form-fresh-v4 select {
        padding: .62rem .72rem;
        border: 1px solid var(--btn-ghost-bg-hover);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        font: inherit;
    }

    .form-fresh-v4 button {
        padding: .72rem 1rem;
        border: 0;
        border-radius: var(--radius-sm);
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-weight: 700;
        cursor: pointer;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

.map-shell-c4 {
        padding: clamp(3.5rem, 8vw, 6rem) var(--space-x);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

    .map-shell-c4__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .map-shell-c4__band {
        margin-bottom: 1rem;
        display: flex;
        justify-content: space-between;
        align-items: end;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .map-shell-c4__band h2 {
        margin: 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .map-shell-c4__band p {
        margin: 0;
        color: rgba(255, 255, 255, .82);
    }

    .map-shell-c4__shell {
        display: grid;
        grid-template-columns: 1.2fr .8fr;
        gap: 1rem;
    }

    .map-shell-c4__shell iframe {
        display: block;
        width: 100%;
        min-height: 24rem;
        border-radius: var(--radius-xl);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .map-shell-c4__cards {
        display: grid;
        gap: .75rem;
    }

    .map-shell-c4__cards article {
        padding: .95rem;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .map-shell-c4__cards p {
        margin: .35rem 0 0;
        color: rgba(255, 255, 255, .84);
    }

    @media (max-width: 840px) {
        .map-shell-c4__shell {
            grid-template-columns: 1fr;
        }
    }

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

    /* постоянный скан */
    .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 добавит “плавающее” выделение активного ряда */
    .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;
        }
    }

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

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

    .header__nav {
        display: flex;
        gap: var(--gap);
        flex: 1;
    }

    .header__nav--left {
        justify-content: flex-start;
    }

    .header__nav--right {
        justify-content: flex-end;
    }

    .header__logo {
        flex-shrink: 0;
        margin: 0 var(--space-x);
    }

    .logo-text {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        letter-spacing: -0.5px;
        white-space: nowrap;
    }

    .nav-link {
        color: var(--fg-on-surface);
        text-decoration: none;
        padding: calc(var(--space-y) / 2) var(--space-x);
        border-radius: var(--radius-md);
        transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }

    .nav-link:hover {
        background-color: var(--btn-ghost-bg-hover);
        color: var(--link-hover);
    }

    .burger-button {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 2.5rem;
        height: 2rem;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 101;
    }

    .burger-line {
        display: block;
        height: 3px;
        width: 100%;
        background-color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }

    .mobile-menu {
        display: none;
        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);
        padding: var(--space-y) var(--space-x);
        z-index: 99;
    }

    .mobile-menu[aria-hidden="false"] {
        display: block;
    }

    .mobile-nav {
        display: flex;
        flex-direction: column;
        gap: calc(var(--gap) / 2);
    }

    .mobile-nav-link {
        color: var(--fg-on-surface);
        text-decoration: none;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .mobile-nav-link:hover {
        background-color: var(--btn-ghost-bg-hover);
    }

    @media (max-width: 767px) {
        .header__nav {
            display: none;
        }

        .burger-button {
            display: flex;
        }

        .header__logo {
            margin: 0 auto;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
        }

        .burger-button[aria-expanded="true"] .burger-line:nth-child(1) {
            transform: translateY(0.7rem) rotate(45deg);
        }

        .burger-button[aria-expanded="true"] .burger-line:nth-child(2) {
            opacity: 0;
        }

        .burger-button[aria-expanded="true"] .burger-line:nth-child(3) {
            transform: translateY(-0.7rem) rotate(-45deg);
        }
    }

.footer {
        background-color: #f5f7fa;
        color: #333;
        padding: 3rem 1.5rem 1.5rem;
        font-family: sans-serif;
        border-top: 1px solid #e1e5eb;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto 2rem;
        display: flex;
        flex-wrap: wrap;
        gap: 3rem;
        justify-content: space-between;
    }
    .footer-brand {
        flex: 1;
        min-width: 250px;
    }
    .footer-brand .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #0056a6;
        margin-bottom: 0.5rem;
    }
    .footer-brand .tagline {
        color: #666;
        font-size: 0.95rem;
        line-height: 1.5;
    }
    .footer-right {
        flex: 2;
        min-width: 250px;
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        color: #333;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #0056a6;
        text-decoration: underline;
    }
    .footer-legal-links {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        font-size: 0.9rem;
    }
    .footer-legal-links a {
        color: #666;
        text-decoration: none;
    }
    .footer-legal-links a:hover {
        text-decoration: underline;
        color: #333;
    }
    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #e1e5eb;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1.5rem;
        font-size: 0.9rem;
    }
    .footer-contacts {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 1.5rem;
        color: #666;
    }
    .footer-contacts a {
        color: #666;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        color: #0056a6;
        text-decoration: underline;
    }
    .footer-disclaimer {
        color: #888;
        text-align: right;
        flex: 1;
        min-width: 300px;
        line-height: 1.5;
    }
    @media (max-width: 768px) {
        .footer-container, .footer-bottom {
            flex-direction: column;
            align-items: flex-start;
            gap: 2rem;
        }
        .footer-nav ul {
            flex-direction: column;
            gap: 1rem;
        }
        .footer-disclaimer {
            text-align: left;
        }
        .footer-contacts {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.75rem;
        }
    }

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

    .cookie-cv13__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, #0f172a, #1e293b);
        color: #e2e8f0;
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv13__stack strong {
        display: block;
        margin-bottom: 6px;
        color: #f8fafc;
    }

    .cookie-cv13__stack p {
        margin: 0;
        color: #cbd5e1;
    }

    .cookie-cv13__actions {
        margin-top: 12px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .cookie-cv13__actions a {
        text-decoration: none;
        color: #e2e8f0;
        border: 1px solid rgba(148, 163, 184, 0.5);
        border-radius: 999px;
        padding: 7px 12px;
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .cookie-cv13__actions a[data-choice='accept'] {
        background: #38bdf8;
        border-color: transparent;
        color: #0f172a;
        font-weight: 700;
    }

    .cookie-cv13__actions a:hover {
        background: rgba(148, 163, 184, 0.2);
    }

    .cookie-cv13__actions a[data-choice='accept']:hover {
        background: #67d3fb;
    }

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

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

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

    .policy-layout-c h3 {
        margin: 0;
        display: flex;
        gap: 8px;
        align-items: center;
    }

    .policy-layout-c h3 span {
        display: inline-grid;
        place-items: center;
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: rgba(255, 255, 255, .18);
    }

    .policy-layout-c article p {
        margin: 8px 0 0;
        opacity: .95;
    }

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

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

    .header__nav {
        display: flex;
        gap: var(--gap);
        flex: 1;
    }

    .header__nav--left {
        justify-content: flex-start;
    }

    .header__nav--right {
        justify-content: flex-end;
    }

    .header__logo {
        flex-shrink: 0;
        margin: 0 var(--space-x);
    }

    .logo-text {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        letter-spacing: -0.5px;
        white-space: nowrap;
    }

    .nav-link {
        color: var(--fg-on-surface);
        text-decoration: none;
        padding: calc(var(--space-y) / 2) var(--space-x);
        border-radius: var(--radius-md);
        transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }

    .nav-link:hover {
        background-color: var(--btn-ghost-bg-hover);
        color: var(--link-hover);
    }

    .burger-button {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 2.5rem;
        height: 2rem;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 101;
    }

    .burger-line {
        display: block;
        height: 3px;
        width: 100%;
        background-color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }

    .mobile-menu {
        display: none;
        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);
        padding: var(--space-y) var(--space-x);
        z-index: 99;
    }

    .mobile-menu[aria-hidden="false"] {
        display: block;
    }

    .mobile-nav {
        display: flex;
        flex-direction: column;
        gap: calc(var(--gap) / 2);
    }

    .mobile-nav-link {
        color: var(--fg-on-surface);
        text-decoration: none;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .mobile-nav-link:hover {
        background-color: var(--btn-ghost-bg-hover);
    }

    @media (max-width: 767px) {
        .header__nav {
            display: none;
        }

        .burger-button {
            display: flex;
        }

        .header__logo {
            margin: 0 auto;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
        }

        .burger-button[aria-expanded="true"] .burger-line:nth-child(1) {
            transform: translateY(0.7rem) rotate(45deg);
        }

        .burger-button[aria-expanded="true"] .burger-line:nth-child(2) {
            opacity: 0;
        }

        .burger-button[aria-expanded="true"] .burger-line:nth-child(3) {
            transform: translateY(-0.7rem) rotate(-45deg);
        }
    }

.footer {
        background-color: #f5f7fa;
        color: #333;
        padding: 3rem 1.5rem 1.5rem;
        font-family: sans-serif;
        border-top: 1px solid #e1e5eb;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto 2rem;
        display: flex;
        flex-wrap: wrap;
        gap: 3rem;
        justify-content: space-between;
    }
    .footer-brand {
        flex: 1;
        min-width: 250px;
    }
    .footer-brand .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #0056a6;
        margin-bottom: 0.5rem;
    }
    .footer-brand .tagline {
        color: #666;
        font-size: 0.95rem;
        line-height: 1.5;
    }
    .footer-right {
        flex: 2;
        min-width: 250px;
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        color: #333;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #0056a6;
        text-decoration: underline;
    }
    .footer-legal-links {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        font-size: 0.9rem;
    }
    .footer-legal-links a {
        color: #666;
        text-decoration: none;
    }
    .footer-legal-links a:hover {
        text-decoration: underline;
        color: #333;
    }
    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #e1e5eb;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1.5rem;
        font-size: 0.9rem;
    }
    .footer-contacts {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 1.5rem;
        color: #666;
    }
    .footer-contacts a {
        color: #666;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        color: #0056a6;
        text-decoration: underline;
    }
    .footer-disclaimer {
        color: #888;
        text-align: right;
        flex: 1;
        min-width: 300px;
        line-height: 1.5;
    }
    @media (max-width: 768px) {
        .footer-container, .footer-bottom {
            flex-direction: column;
            align-items: flex-start;
            gap: 2rem;
        }
        .footer-nav ul {
            flex-direction: column;
            gap: 1rem;
        }
        .footer-disclaimer {
            text-align: left;
        }
        .footer-contacts {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.75rem;
        }
    }

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

    .cookie-cv13__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, #0f172a, #1e293b);
        color: #e2e8f0;
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv13__stack strong {
        display: block;
        margin-bottom: 6px;
        color: #f8fafc;
    }

    .cookie-cv13__stack p {
        margin: 0;
        color: #cbd5e1;
    }

    .cookie-cv13__actions {
        margin-top: 12px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .cookie-cv13__actions a {
        text-decoration: none;
        color: #e2e8f0;
        border: 1px solid rgba(148, 163, 184, 0.5);
        border-radius: 999px;
        padding: 7px 12px;
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .cookie-cv13__actions a[data-choice='accept'] {
        background: #38bdf8;
        border-color: transparent;
        color: #0f172a;
        font-weight: 700;
    }

    .cookie-cv13__actions a:hover {
        background: rgba(148, 163, 184, 0.2);
    }

    .cookie-cv13__actions a[data-choice='accept']:hover {
        background: #67d3fb;
    }

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

    .terms-layout-f .wrap {
        max-width: 980px;
        margin: 0 auto;
    }

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

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

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

    .terms-layout-f .list {
        display: grid;
        gap: 14px;
    }

    .terms-layout-f article {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: linear-gradient(180deg, var(--surface-1), var(--surface-2));
        padding: var(--space-y) var(--space-x);
    }

    .terms-layout-f h3 {
        margin: 0 0 8px;
        color: var(--brand);
    }

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

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

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

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

    .header__nav {
        display: flex;
        gap: var(--gap);
        flex: 1;
    }

    .header__nav--left {
        justify-content: flex-start;
    }

    .header__nav--right {
        justify-content: flex-end;
    }

    .header__logo {
        flex-shrink: 0;
        margin: 0 var(--space-x);
    }

    .logo-text {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        letter-spacing: -0.5px;
        white-space: nowrap;
    }

    .nav-link {
        color: var(--fg-on-surface);
        text-decoration: none;
        padding: calc(var(--space-y) / 2) var(--space-x);
        border-radius: var(--radius-md);
        transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }

    .nav-link:hover {
        background-color: var(--btn-ghost-bg-hover);
        color: var(--link-hover);
    }

    .burger-button {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 2.5rem;
        height: 2rem;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 101;
    }

    .burger-line {
        display: block;
        height: 3px;
        width: 100%;
        background-color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }

    .mobile-menu {
        display: none;
        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);
        padding: var(--space-y) var(--space-x);
        z-index: 99;
    }

    .mobile-menu[aria-hidden="false"] {
        display: block;
    }

    .mobile-nav {
        display: flex;
        flex-direction: column;
        gap: calc(var(--gap) / 2);
    }

    .mobile-nav-link {
        color: var(--fg-on-surface);
        text-decoration: none;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .mobile-nav-link:hover {
        background-color: var(--btn-ghost-bg-hover);
    }

    @media (max-width: 767px) {
        .header__nav {
            display: none;
        }

        .burger-button {
            display: flex;
        }

        .header__logo {
            margin: 0 auto;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
        }

        .burger-button[aria-expanded="true"] .burger-line:nth-child(1) {
            transform: translateY(0.7rem) rotate(45deg);
        }

        .burger-button[aria-expanded="true"] .burger-line:nth-child(2) {
            opacity: 0;
        }

        .burger-button[aria-expanded="true"] .burger-line:nth-child(3) {
            transform: translateY(-0.7rem) rotate(-45deg);
        }
    }

.footer {
        background-color: #f5f7fa;
        color: #333;
        padding: 3rem 1.5rem 1.5rem;
        font-family: sans-serif;
        border-top: 1px solid #e1e5eb;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto 2rem;
        display: flex;
        flex-wrap: wrap;
        gap: 3rem;
        justify-content: space-between;
    }
    .footer-brand {
        flex: 1;
        min-width: 250px;
    }
    .footer-brand .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #0056a6;
        margin-bottom: 0.5rem;
    }
    .footer-brand .tagline {
        color: #666;
        font-size: 0.95rem;
        line-height: 1.5;
    }
    .footer-right {
        flex: 2;
        min-width: 250px;
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        color: #333;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #0056a6;
        text-decoration: underline;
    }
    .footer-legal-links {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        font-size: 0.9rem;
    }
    .footer-legal-links a {
        color: #666;
        text-decoration: none;
    }
    .footer-legal-links a:hover {
        text-decoration: underline;
        color: #333;
    }
    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #e1e5eb;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1.5rem;
        font-size: 0.9rem;
    }
    .footer-contacts {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 1.5rem;
        color: #666;
    }
    .footer-contacts a {
        color: #666;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        color: #0056a6;
        text-decoration: underline;
    }
    .footer-disclaimer {
        color: #888;
        text-align: right;
        flex: 1;
        min-width: 300px;
        line-height: 1.5;
    }
    @media (max-width: 768px) {
        .footer-container, .footer-bottom {
            flex-direction: column;
            align-items: flex-start;
            gap: 2rem;
        }
        .footer-nav ul {
            flex-direction: column;
            gap: 1rem;
        }
        .footer-disclaimer {
            text-align: left;
        }
        .footer-contacts {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.75rem;
        }
    }

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

    .cookie-cv13__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, #0f172a, #1e293b);
        color: #e2e8f0;
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv13__stack strong {
        display: block;
        margin-bottom: 6px;
        color: #f8fafc;
    }

    .cookie-cv13__stack p {
        margin: 0;
        color: #cbd5e1;
    }

    .cookie-cv13__actions {
        margin-top: 12px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .cookie-cv13__actions a {
        text-decoration: none;
        color: #e2e8f0;
        border: 1px solid rgba(148, 163, 184, 0.5);
        border-radius: 999px;
        padding: 7px 12px;
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .cookie-cv13__actions a[data-choice='accept'] {
        background: #38bdf8;
        border-color: transparent;
        color: #0f172a;
        font-weight: 700;
    }

    .cookie-cv13__actions a:hover {
        background: rgba(148, 163, 184, 0.2);
    }

    .cookie-cv13__actions a[data-choice='accept']:hover {
        background: #67d3fb;
    }

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

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

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

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

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

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

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

    .header__nav {
        display: flex;
        gap: var(--gap);
        flex: 1;
    }

    .header__nav--left {
        justify-content: flex-start;
    }

    .header__nav--right {
        justify-content: flex-end;
    }

    .header__logo {
        flex-shrink: 0;
        margin: 0 var(--space-x);
    }

    .logo-text {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        letter-spacing: -0.5px;
        white-space: nowrap;
    }

    .nav-link {
        color: var(--fg-on-surface);
        text-decoration: none;
        padding: calc(var(--space-y) / 2) var(--space-x);
        border-radius: var(--radius-md);
        transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
    }

    .nav-link:hover {
        background-color: var(--btn-ghost-bg-hover);
        color: var(--link-hover);
    }

    .burger-button {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 2.5rem;
        height: 2rem;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 101;
    }

    .burger-line {
        display: block;
        height: 3px;
        width: 100%;
        background-color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }

    .mobile-menu {
        display: none;
        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);
        padding: var(--space-y) var(--space-x);
        z-index: 99;
    }

    .mobile-menu[aria-hidden="false"] {
        display: block;
    }

    .mobile-nav {
        display: flex;
        flex-direction: column;
        gap: calc(var(--gap) / 2);
    }

    .mobile-nav-link {
        color: var(--fg-on-surface);
        text-decoration: none;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .mobile-nav-link:hover {
        background-color: var(--btn-ghost-bg-hover);
    }

    @media (max-width: 767px) {
        .header__nav {
            display: none;
        }

        .burger-button {
            display: flex;
        }

        .header__logo {
            margin: 0 auto;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
        }

        .burger-button[aria-expanded="true"] .burger-line:nth-child(1) {
            transform: translateY(0.7rem) rotate(45deg);
        }

        .burger-button[aria-expanded="true"] .burger-line:nth-child(2) {
            opacity: 0;
        }

        .burger-button[aria-expanded="true"] .burger-line:nth-child(3) {
            transform: translateY(-0.7rem) rotate(-45deg);
        }
    }

.footer {
        background-color: #f5f7fa;
        color: #333;
        padding: 3rem 1.5rem 1.5rem;
        font-family: sans-serif;
        border-top: 1px solid #e1e5eb;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto 2rem;
        display: flex;
        flex-wrap: wrap;
        gap: 3rem;
        justify-content: space-between;
    }
    .footer-brand {
        flex: 1;
        min-width: 250px;
    }
    .footer-brand .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #0056a6;
        margin-bottom: 0.5rem;
    }
    .footer-brand .tagline {
        color: #666;
        font-size: 0.95rem;
        line-height: 1.5;
    }
    .footer-right {
        flex: 2;
        min-width: 250px;
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        color: #333;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #0056a6;
        text-decoration: underline;
    }
    .footer-legal-links {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        font-size: 0.9rem;
    }
    .footer-legal-links a {
        color: #666;
        text-decoration: none;
    }
    .footer-legal-links a:hover {
        text-decoration: underline;
        color: #333;
    }
    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #e1e5eb;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1.5rem;
        font-size: 0.9rem;
    }
    .footer-contacts {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 1.5rem;
        color: #666;
    }
    .footer-contacts a {
        color: #666;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        color: #0056a6;
        text-decoration: underline;
    }
    .footer-disclaimer {
        color: #888;
        text-align: right;
        flex: 1;
        min-width: 300px;
        line-height: 1.5;
    }
    @media (max-width: 768px) {
        .footer-container, .footer-bottom {
            flex-direction: column;
            align-items: flex-start;
            gap: 2rem;
        }
        .footer-nav ul {
            flex-direction: column;
            gap: 1rem;
        }
        .footer-disclaimer {
            text-align: left;
        }
        .footer-contacts {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.75rem;
        }
    }

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

    .cookie-cv13__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, #0f172a, #1e293b);
        color: #e2e8f0;
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv13__stack strong {
        display: block;
        margin-bottom: 6px;
        color: #f8fafc;
    }

    .cookie-cv13__stack p {
        margin: 0;
        color: #cbd5e1;
    }

    .cookie-cv13__actions {
        margin-top: 12px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .cookie-cv13__actions a {
        text-decoration: none;
        color: #e2e8f0;
        border: 1px solid rgba(148, 163, 184, 0.5);
        border-radius: 999px;
        padding: 7px 12px;
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .cookie-cv13__actions a[data-choice='accept'] {
        background: #38bdf8;
        border-color: transparent;
        color: #0f172a;
        font-weight: 700;
    }

    .cookie-cv13__actions a:hover {
        background: rgba(148, 163, 184, 0.2);
    }

    .cookie-cv13__actions a[data-choice='accept']:hover {
        background: #67d3fb;
    }

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

    .err-slab-f .chip {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(28px, 4vw, 46px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface-light);
        box-shadow: var(--shadow-sm);
        position: relative;
    }

    .err-slab-f .chip::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 6px;
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        background: var(--gradient-accent);
    }

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

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

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