:root {
  --font-family: "Raleway", sans-serif;
  --font-size-base: 14.5px;
  --line-height-base: 1.87;

  --max-w: 900px;
  --space-x: 2.05rem;
  --space-y: 1.5rem;
  --gap: 1.03rem;

  --radius-xl: 1.34rem;
  --radius-lg: 1rem;
  --radius-md: 0.66rem;
  --radius-sm: 0.38rem;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 5px 14px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 34px rgba(0,0,0,0.08);

  --overlay: rgba(0, 0, 0, 0.4);
  --anim-duration: 350ms;
  --anim-ease: ease-in-out;
  --random-number: 1;

  --brand: #2563eb;
  --brand-contrast: #ffffff;
  --accent: #7c3aed;
  --accent-contrast: #ffffff;

  --neutral-0: #ffffff;
  --neutral-100: #f8fafc;
  --neutral-300: #cbd5e1;
  --neutral-600: #475569;
  --neutral-800: #1e293b;
  --neutral-900: #0f172a;

  --bg-page: #ffffff;
  --fg-on-page: #0f172a;

  --bg-alt: #f8fafc;
  --fg-on-alt: #1e293b;

  --surface-1: #ffffff;
  --surface-2: #f1f5f9;
  --fg-on-surface: #0f172a;
  --border-on-surface: #e2e8f0;

  --surface-light: #f8fafc;
  --fg-on-surface-light: #475569;
  --border-on-surface-light: #e2e8f0;

  --bg-primary: #2563eb;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #1d4ed8;
  --ring: #3b82f6;

  --bg-accent: #f5f3ff;
  --fg-on-accent: #4c1d95;
  --bg-accent-hover: #6d28d9;

  --link: #2563eb;
  --link-hover: #1d4ed8;

  --gradient-hero: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  --gradient-accent: linear-gradient(90deg, #dbeafe 0%, #f5f3ff 100%);

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

.site-header {
        background-color: var(--bg-page);
        color: var(--fg-on-page);
        border-bottom: 1px solid var(--border-on-surface-light);
        position: sticky;
        top: 0;
        z-index: 1000;
        box-shadow: var(--shadow-sm);
    }

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

    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        white-space: nowrap;
        transition: color var(--anim-duration) var(--anim-ease);
    }

    .logo:hover {
        color: var(--link-hover);
    }

    .main-nav {
        display: flex;
        align-items: center;
        gap: calc(var(--gap) * 2);
    }

    .nav-list {
        display: flex;
        list-style: none;
        gap: var(--gap);
        margin: 0;
        padding: 0;
    }

    .nav-link {
        color: var(--fg-on-page);
        text-decoration: none;
        padding: calc(var(--space-y) / 2) var(--space-x);
        border-radius: var(--radius-sm);
        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);
    }

    .btn-cta {
        background-color: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: calc(var(--space-y) / 1.5) var(--space-x);
        border-radius: var(--radius-md);
        text-decoration: none;
        font-weight: 600;
        white-space: nowrap;
        transition: background-color var(--anim-duration) var(--anim-ease);
        border: none;
        cursor: pointer;
    }

    .btn-cta:hover {
        background-color: var(--bg-primary-hover);
    }

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

    .burger-line {
        width: 100%;
        height: 2px;
        background-color: var(--neutral-800);
        border-radius: 2px;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    /* Мобильная версия */
    @media (max-width: 767px) {
        .burger-menu {
            display: flex;
        }

        .main-nav {
            position: fixed;
            top: 0;
            right: 0;
            height: 100vh;
            width: 70%;
            max-width: 300px;
            background-color: var(--surface-1);
            flex-direction: column;
            justify-content: flex-start;
            align-items: stretch;
            padding: calc(var(--space-y) * 3) var(--space-x);
            gap: calc(var(--gap) * 2);
            transform: translateX(100%);
            transition: transform var(--anim-duration) var(--anim-ease);
            box-shadow: var(--shadow-lg);
            z-index: 1000;
            overflow-y: auto;
        }

        .main-nav.active {
            transform: translateX(0);
        }

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

        .nav-link {
            display: block;
            padding: var(--space-y) var(--space-x);
        }

        .btn-cta {
            text-align: center;
            margin-top: var(--space-y);
        }

        /* Анимация бургера */
        .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

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

        .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

        /* Затемнение фона */
        .main-nav.active::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background-color: var(--overlay);
            z-index: -1;
        }
    }

    /* Планшеты */
    @media (min-width: 768px) and (max-width: 1023px) {
        .header-container {
            padding: calc(var(--space-y) / 1.5) var(--space-x);
        }

        .main-nav {
            gap: var(--gap);
        }

        .nav-list {
            gap: calc(var(--gap) / 1.5);
        }
    }

footer {
    background-color: #f8f9fa;
    color: #333;
    font-family: sans-serif;
    padding: 2.5rem 1rem;
    border-top: 1px solid #dee2e6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto 2rem auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: space-between;
  }
  .brand-section {
    flex: 1;
    min-width: 250px;
  }
  .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
  }
  .tagline {
    color: #6c757d;
    line-height: 1.5;
  }
  .links-section {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
  }
  .footer-nav a {
    color: #495057;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #007bff;
  }
  .legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .legal-links a {
    color: #6c757d;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .legal-links a:hover {
    text-decoration: underline;
  }
  .footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #dee2e6;
    text-align: center;
  }
  .contact-info {
    margin-bottom: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.95rem;
  }
  .contact-info address,
  .contact-info a {
    color: #495057;
    text-decoration: none;
    font-style: normal;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #6c757d;
    line-height: 1.5;
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      gap: 2rem;
    }
    .contact-info {
      flex-direction: column;
      gap: 0.8rem;
      align-items: center;
    }
  }

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

    .cookie-cv15__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

    .cookie-cv15__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

    .cookie-cv15__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, 0.45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, 0.65);
        cursor: pointer;
    }

    .cookie-cv15__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

.wp-lang-switcher-v2 {
        position: fixed;
        right: clamp(16px, 2vw, 24px);
        bottom: clamp(16px, 2vw, 24px);
        z-index: 99999;

        --local-random: var(--random-number, 1);
    }

    .wp-lang-switcher-v2__btn {
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
        padding: calc(10px + var(--local-random) * 2px) calc(16px + var(--local-random) * 2px);
        border-radius: calc(var(--radius-lg) + var(--local-random) * 4px);
        cursor: pointer;
        display: flex;
        gap: 10px;
        align-items: center;
        box-shadow: var(--shadow-lg);
        transition: all var(--anim-duration) var(--anim-ease);
        border: 2px solid transparent;
        position: relative;
        overflow: hidden;
    }

    .wp-lang-switcher-v2__btn::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);

        transition: opacity var(--anim-duration) var(--anim-ease);
    }

    .wp-lang-switcher-v2__btn:hover {
        transform: translateY(calc(-2px - var(--local-random) * 1px));
        box-shadow: 0 12px 32px rgba(59, 130, 246, calc(0.3 + var(--local-random) * 0.1));
    }

    .wp-lang-switcher-v2__btn:hover::before {
        opacity: 1;
    }

    .wp-lang-switcher-v2__icon {
        font-size: calc(18px + var(--local-random) * 2px);
        animation: rotate calc(18s + var(--local-random) * 4s) linear infinite;
    }

    @keyframes rotate {
        from {
            transform: rotate(0deg);
        }
        to {
            transform: rotate(360deg);
        }
    }

    .wp-lang-switcher-v2__label {
        font-weight: 600;
        font-size: 14px;
        letter-spacing: calc(0.3px + var(--local-random) * 0.2px);
    }

    .wp-lang-switcher-v2__panel {
        display: none;
        position: absolute;
        right: 0;
        bottom: calc(100% + 12px);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: calc(var(--radius-lg) - var(--local-random) * 2px);
        overflow: hidden;
        box-shadow: var(--shadow-lg);
        min-width: calc(190px + var(--local-random) * 10px);

        transform: translateY(10px);
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .wp-lang-switcher-v2__panel.open {
        display: block;
        opacity: 1;
        transform: translateY(0);
    }

    .wp-lang-switcher-v2__panel button,
    .wp-lang-switcher-v2__panel a {
        width: 100%;
        text-align: left;
        padding: calc(10px + var(--local-random) * 2px) calc(14px + var(--local-random) * 2px);
        border: 0;
        background: var(--surface-1);
        color: var(--fg-on-surface);
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 12px;

        font-size: 15px;
        transition: all var(--anim-duration) var(--anim-ease);
        position: relative;
        text-decoration: none;
    }

    .wp-lang-switcher-v2__panel button::before,
    .wp-lang-switcher-v2__panel a::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: calc(2px + var(--local-random) * 1px);
        background: var(--bg-primary);
        transform: scaleY(0);
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .wp-lang-switcher-v2__panel button:hover,
    .wp-lang-switcher-v2__panel a:hover {
        background: var(--bg-alt);
        padding-left: calc(18px + var(--local-random) * 4px);
    }

    .wp-lang-switcher-v2__panel button:hover::before,
    .wp-lang-switcher-v2__panel a:hover::before {
        transform: scaleY(1);
    }

    .wp-lang-switcher-v2__flag {
        font-size: 20px;
    }

.hero-arc-v4 {
        padding: calc(var(--space-y) * 3) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-surface);
    }

    .hero-arc-v4 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns:repeat(12, minmax(0, 1fr));
        gap: var(--gap);
    }

    .hero-arc-v4 .headline {
        grid-column: 1/8;
        padding: calc(var(--space-y) * 1.2);
        border-radius: var(--radius-xl);
        background: var(--gradient-hero);
        color: var(--brand-contrast);
    }

    .hero-arc-v4 h1 {
        margin: .2rem 0 .7rem;
        font-size: clamp(2rem, 4.6vw, 3.6rem);
        line-height: 1.08;
    }

    .hero-arc-v4 .headline p {
        margin: 0;
        max-width: 52ch;
        opacity: .92;
    }

    .hero-arc-v4 .actionbox {
        grid-column: 8/13;
        background: var(--surface-2);
        border: 1px solid var(--border-on-surface);
        padding: calc(var(--space-y) * 1.2);
        border-radius: var(--radius-xl);
        display: grid;
        align-content: center;
        gap: var(--gap);
    }

    .hero-arc-v4 .actions {
        display: grid;
        gap: .65rem;
    }

    .hero-arc-v4 .actions a {
        display: inline-flex;
        justify-content: center;
        padding: .7rem 1rem;
        border-radius: var(--radius-md);
        text-decoration: none;
        font-weight: 700;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    .hero-arc-v4 .actions a:nth-child(even) {
        background: var(--surface-1);
        color: var(--fg-on-surface);
        border: 1px solid var(--border-on-surface);
    }

    .hero-arc-v4 .media {
        grid-column: 1/6;
        overflow: hidden;
        border-radius: var(--radius-xl);
        min-height: 260px;
    }

    .hero-arc-v4 img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .hero-arc-v4 .stats {
        grid-column: 6/13;
        display: grid;
        grid-template-columns:repeat(3, minmax(0, 1fr));
        gap: var(--gap);
    }

    .hero-arc-v4 .stats div {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-2);
        border: 1px solid var(--border-on-surface);
    }

    .hero-arc-v4 .stats span {
        display: block;
        color: var(--fg-on-surface-light);
        font-size: .88rem;
    }

    .hero-arc-v4 .stats strong {
        font-size: 1.1rem;
    }

    @media (max-width: 960px) {
        .hero-arc-v4 .headline, .hero-arc-v4 .actionbox, .hero-arc-v4 .media, .hero-arc-v4 .stats {
            grid-column: 1/-1;
        }

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

.next-strip-l2 {
        padding: clamp(3rem, 7vw, 5.6rem) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    .next-strip-l2__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        gap: 1rem;
        align-items: end;
        flex-wrap: wrap;
    }

    .next-strip-l2__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

    .next-strip-l2__wrap h2 {
        margin: .5rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .next-strip-l2__wrap a {
        display: inline-flex;
        min-height: 2.8rem;
        align-items: center;
        justify-content: center;
        padding: 0 1rem;
        border-radius: var(--radius-md);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        text-decoration: none;
    }

    .next-strip-l2__actions {
        max-width: var(--max-w);
        margin: 1rem auto 0;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
        gap: .75rem;
    }

    .next-strip-l2__actions a {
        display: block;
        padding: .95rem;
        border-radius: var(--radius-lg);
        background: var(--bg-alt);
        border: 1px solid var(--border-on-surface-light);
        text-decoration: none;
        color: var(--fg-on-page);
    }

    .next-strip-l2__actions span {
        display: block;
        margin-top: .35rem;
        color: var(--neutral-600);
    }

    /* macro-bg:next-strip-l2__wrap */
    .next-strip-l2 {
        overflow: hidden;
    }

    .next-strip-l2__wrap {
        background-image: linear-gradient(rgba(255, 255, 255, .86), rgba(255, 255, 255, .86)), url('https://images.pexels.com/photos/3861969/pexels-photo-3861969.jpeg?auto=compress&cs=tinysrgb&w=800');
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        border-radius: var(--radius-xl);
        overflow: hidden;
    }

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

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

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

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

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

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

    .education-struct-v3 .grid a, .education-struct-v3 .tiers a, .education-struct-v3 .cta a {
        display: inline-flex;
        min-height: 2.3rem;
        padding: 0 .8rem;
        align-items: center;
        border-radius: var(--radius-sm);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border: 1px solid var(--ring)
    }

    .education-struct-v3 .path {
        display: grid;
        gap: .65rem
    }

    .education-struct-v3 .path article {
        position: relative;
        padding-left: 1.25rem
    }

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

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

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

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

    .education-struct-v3 .mentors {
        display: grid;
        gap: .6rem
    }

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

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

    .education-struct-v3 .program {
        display: grid;
        gap: .45rem
    }

    .education-struct-v3 .modules {
        display: grid;
        gap: .6rem
    }

    .education-struct-v3 .cta {
        display: flex
    }

    @media (max-width: 900px) {
        .education-struct-v3 .grid, .education-struct-v3 .tiers, .education-struct-v3 .combo {
            grid-template-columns:1fr 1fr
        }
    }

    @media (max-width: 680px) {
        .education-struct-v3 .grid, .education-struct-v3 .tiers, .education-struct-v3 .combo, .education-struct-v3 .row {
            grid-template-columns:1fr
        }
    }

.why-choose-light {

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

    .why-choose-light .why-choose-light__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .why-choose-light .why-choose-light__h {
        text-align: center;
        margin-bottom: clamp(32px, 5vw, 64px);

        transform: translateY(20px);
    }

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

    .why-choose-light .why-choose-light__subtitle {
        font-size: clamp(16px, 2vw, 20px);
        margin: 0;
        color: var(--neutral-600);
    }

    .why-choose-light .why-choose-light__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: var(--gap);
    }

    .why-choose-light .why-choose-light__item {
        background: var(--surface-1);
        padding: clamp(20px, 3vw, 32px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-sm);
        transition: box-shadow var(--anim-duration) var(--anim-ease);

        transform: translateY(30px);
    }

    .why-choose-light .why-choose-light__item:hover {
        box-shadow: var(--shadow-md);
    }

    .why-choose-light .why-choose-light__icon {
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-radius: var(--radius-md);
        margin-bottom: 1rem;
        font-size: 24px;
    }

    .why-choose-light .why-choose-light__item h3 {
        font-size: clamp(18px, 2.2vw, 22px);
        margin: 0 0 0.75rem;
        color: var(--fg-on-surface);
    }

    .why-choose-light .why-choose-light__item p {
        margin: 0;
        color: var(--neutral-600);
        line-height: var(--line-height-base);
    }

.site-header {
        background-color: var(--bg-page);
        color: var(--fg-on-page);
        border-bottom: 1px solid var(--border-on-surface-light);
        position: sticky;
        top: 0;
        z-index: 1000;
        box-shadow: var(--shadow-sm);
    }

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

    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        white-space: nowrap;
        transition: color var(--anim-duration) var(--anim-ease);
    }

    .logo:hover {
        color: var(--link-hover);
    }

    .main-nav {
        display: flex;
        align-items: center;
        gap: calc(var(--gap) * 2);
    }

    .nav-list {
        display: flex;
        list-style: none;
        gap: var(--gap);
        margin: 0;
        padding: 0;
    }

    .nav-link {
        color: var(--fg-on-page);
        text-decoration: none;
        padding: calc(var(--space-y) / 2) var(--space-x);
        border-radius: var(--radius-sm);
        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);
    }

    .btn-cta {
        background-color: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: calc(var(--space-y) / 1.5) var(--space-x);
        border-radius: var(--radius-md);
        text-decoration: none;
        font-weight: 600;
        white-space: nowrap;
        transition: background-color var(--anim-duration) var(--anim-ease);
        border: none;
        cursor: pointer;
    }

    .btn-cta:hover {
        background-color: var(--bg-primary-hover);
    }

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

    .burger-line {
        width: 100%;
        height: 2px;
        background-color: var(--neutral-800);
        border-radius: 2px;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    /* Мобильная версия */
    @media (max-width: 767px) {
        .burger-menu {
            display: flex;
        }

        .main-nav {
            position: fixed;
            top: 0;
            right: 0;
            height: 100vh;
            width: 70%;
            max-width: 300px;
            background-color: var(--surface-1);
            flex-direction: column;
            justify-content: flex-start;
            align-items: stretch;
            padding: calc(var(--space-y) * 3) var(--space-x);
            gap: calc(var(--gap) * 2);
            transform: translateX(100%);
            transition: transform var(--anim-duration) var(--anim-ease);
            box-shadow: var(--shadow-lg);
            z-index: 1000;
            overflow-y: auto;
        }

        .main-nav.active {
            transform: translateX(0);
        }

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

        .nav-link {
            display: block;
            padding: var(--space-y) var(--space-x);
        }

        .btn-cta {
            text-align: center;
            margin-top: var(--space-y);
        }

        /* Анимация бургера */
        .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

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

        .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

        /* Затемнение фона */
        .main-nav.active::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background-color: var(--overlay);
            z-index: -1;
        }
    }

    /* Планшеты */
    @media (min-width: 768px) and (max-width: 1023px) {
        .header-container {
            padding: calc(var(--space-y) / 1.5) var(--space-x);
        }

        .main-nav {
            gap: var(--gap);
        }

        .nav-list {
            gap: calc(var(--gap) / 1.5);
        }
    }

footer {
    background-color: #f8f9fa;
    color: #333;
    font-family: sans-serif;
    padding: 2.5rem 1rem;
    border-top: 1px solid #dee2e6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto 2rem auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: space-between;
  }
  .brand-section {
    flex: 1;
    min-width: 250px;
  }
  .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
  }
  .tagline {
    color: #6c757d;
    line-height: 1.5;
  }
  .links-section {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
  }
  .footer-nav a {
    color: #495057;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #007bff;
  }
  .legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .legal-links a {
    color: #6c757d;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .legal-links a:hover {
    text-decoration: underline;
  }
  .footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #dee2e6;
    text-align: center;
  }
  .contact-info {
    margin-bottom: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.95rem;
  }
  .contact-info address,
  .contact-info a {
    color: #495057;
    text-decoration: none;
    font-style: normal;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #6c757d;
    line-height: 1.5;
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      gap: 2rem;
    }
    .contact-info {
      flex-direction: column;
      gap: 0.8rem;
      align-items: center;
    }
  }

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

    .cookie-cv15__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

    .cookie-cv15__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

    .cookie-cv15__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, 0.45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, 0.65);
        cursor: pointer;
    }

    .cookie-cv15__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

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

    .identity-lv6__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: .9fr 1.1fr;
        gap: var(--gap);
        align-items: start;
    }

    .identity-lv6__img img {
        width: 100%;
        height: auto;
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface-light);
    }

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

    .identity-lv6__body h3 {
        margin: 0 0 10px;
        color: var(--brand);
        font-size: 1rem;
    }

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

    .identity-lv6__body ul {
        margin: 0;
        padding-left: 18px;
        display: grid;
        gap: 6px;
        color: var(--neutral-800);
    }

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

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

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

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

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

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

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

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

    .faq-layout-a .q {
        width: 100%;
        border: 0;
        background: transparent;
        text-align: left;
        padding: 12px;
        font: inherit;
        font-weight: 600;
        cursor: pointer;
        color: var(--neutral-0);
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

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

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

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

.testimonials-struct-v2 {
        padding: calc(var(--space-y) * 2) var(--space-x);
        background: var(--bg-alt);
        color: var(--fg-on-alt)
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.gallery--colored-v5 {

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

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

.gallery__header {
    text-align: center;
    margin-bottom: 24px;
}

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

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

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

.gallery__item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(148,163,184,0.6);
}

.gallery__item--featured {
    border-color: var(--accent);
}

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

.gallery__item figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 8px 10px;
    background: linear-gradient(to top, rgba(15,23,42,0.9), transparent);
    font-size: 0.85rem;
}

.site-header {
        background-color: var(--bg-page);
        color: var(--fg-on-page);
        border-bottom: 1px solid var(--border-on-surface-light);
        position: sticky;
        top: 0;
        z-index: 1000;
        box-shadow: var(--shadow-sm);
    }

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

    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        white-space: nowrap;
        transition: color var(--anim-duration) var(--anim-ease);
    }

    .logo:hover {
        color: var(--link-hover);
    }

    .main-nav {
        display: flex;
        align-items: center;
        gap: calc(var(--gap) * 2);
    }

    .nav-list {
        display: flex;
        list-style: none;
        gap: var(--gap);
        margin: 0;
        padding: 0;
    }

    .nav-link {
        color: var(--fg-on-page);
        text-decoration: none;
        padding: calc(var(--space-y) / 2) var(--space-x);
        border-radius: var(--radius-sm);
        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);
    }

    .btn-cta {
        background-color: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: calc(var(--space-y) / 1.5) var(--space-x);
        border-radius: var(--radius-md);
        text-decoration: none;
        font-weight: 600;
        white-space: nowrap;
        transition: background-color var(--anim-duration) var(--anim-ease);
        border: none;
        cursor: pointer;
    }

    .btn-cta:hover {
        background-color: var(--bg-primary-hover);
    }

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

    .burger-line {
        width: 100%;
        height: 2px;
        background-color: var(--neutral-800);
        border-radius: 2px;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    /* Мобильная версия */
    @media (max-width: 767px) {
        .burger-menu {
            display: flex;
        }

        .main-nav {
            position: fixed;
            top: 0;
            right: 0;
            height: 100vh;
            width: 70%;
            max-width: 300px;
            background-color: var(--surface-1);
            flex-direction: column;
            justify-content: flex-start;
            align-items: stretch;
            padding: calc(var(--space-y) * 3) var(--space-x);
            gap: calc(var(--gap) * 2);
            transform: translateX(100%);
            transition: transform var(--anim-duration) var(--anim-ease);
            box-shadow: var(--shadow-lg);
            z-index: 1000;
            overflow-y: auto;
        }

        .main-nav.active {
            transform: translateX(0);
        }

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

        .nav-link {
            display: block;
            padding: var(--space-y) var(--space-x);
        }

        .btn-cta {
            text-align: center;
            margin-top: var(--space-y);
        }

        /* Анимация бургера */
        .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

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

        .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

        /* Затемнение фона */
        .main-nav.active::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background-color: var(--overlay);
            z-index: -1;
        }
    }

    /* Планшеты */
    @media (min-width: 768px) and (max-width: 1023px) {
        .header-container {
            padding: calc(var(--space-y) / 1.5) var(--space-x);
        }

        .main-nav {
            gap: var(--gap);
        }

        .nav-list {
            gap: calc(var(--gap) / 1.5);
        }
    }

footer {
    background-color: #f8f9fa;
    color: #333;
    font-family: sans-serif;
    padding: 2.5rem 1rem;
    border-top: 1px solid #dee2e6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto 2rem auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: space-between;
  }
  .brand-section {
    flex: 1;
    min-width: 250px;
  }
  .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
  }
  .tagline {
    color: #6c757d;
    line-height: 1.5;
  }
  .links-section {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
  }
  .footer-nav a {
    color: #495057;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #007bff;
  }
  .legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .legal-links a {
    color: #6c757d;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .legal-links a:hover {
    text-decoration: underline;
  }
  .footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #dee2e6;
    text-align: center;
  }
  .contact-info {
    margin-bottom: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.95rem;
  }
  .contact-info address,
  .contact-info a {
    color: #495057;
    text-decoration: none;
    font-style: normal;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #6c757d;
    line-height: 1.5;
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      gap: 2rem;
    }
    .contact-info {
      flex-direction: column;
      gap: 0.8rem;
      align-items: center;
    }
  }

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

    .cookie-cv15__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

    .cookie-cv15__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

    .cookie-cv15__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, 0.45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, 0.65);
        cursor: pointer;
    }

    .cookie-cv15__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

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

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

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

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

    .about-struct-v3 .split img, .about-struct-v3 .gallery img {
        display: block;
        width: 100%;
        object-fit: cover;
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-md)
    }

    .about-struct-v3 .split img {
        aspect-ratio: 4/3
    }

    .about-struct-v3 .split div {
        display: grid;
        gap: .5rem
    }

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

    .about-struct-v3 article, .about-struct-v3 .values div, .about-struct-v3 .facts div, .about-struct-v3 .quote, .about-struct-v3 .statement {
        background: var(--chip-bg);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        padding: .85rem
    }

    .about-struct-v3 .timeline {
        display: grid;
        gap: .65rem
    }

    .about-struct-v3 .timeline article {
        position: relative;
        padding-left: 1.25rem
    }

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

    .about-struct-v3 .values, .about-struct-v3 .facts {
        display: grid;
        gap: .6rem
    }

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

    .about-struct-v3 .gallery img {
        aspect-ratio: 1/1
    }

    .about-struct-v3 .statement {
        display: grid;
        gap: .5rem
    }

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

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

    @media (max-width: 900px) {
        .about-struct-v3 .split, .about-struct-v3 .duo, .about-struct-v3 .cards, .about-struct-v3 .gallery {
            grid-template-columns:1fr 1fr
        }
    }

    @media (max-width: 680px) {
        .about-struct-v3 .split, .about-struct-v3 .duo, .about-struct-v3 .cards, .about-struct-v3 .gallery {
            grid-template-columns:1fr
        }
    }

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

.capabilities-spectrum {

        background: var(--gradient-hero);
        color: var(--fg-on-primary);
        padding: clamp(64px, 8vw, 120px) clamp(18px, 4vw, 48px);
        position: relative;
        overflow: hidden;
    }

    .capabilities-spectrum::before,
    .capabilities-spectrum::after {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.18), transparent 55%);
        
        opacity: 0.6;
    }

    .capabilities-spectrum::after {
        background: radial-gradient(circle at 80% 60%, rgba(255, 255, 255, 0.12), transparent 50%);
    }

    .capabilities-spectrum__c {
        max-width: var(--max-w);
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    .capabilities-spectrum__h {
        text-align: center;
        margin-bottom: clamp(48px, 7vw, 88px);

        transform: translateY(-20px);
    }

    .capabilities-spectrum__eyebrow {
        font-size: clamp(14px, 2vw, 18px);
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--accent, #ff9d5c);
        margin: 0 0 0.75rem;
    }

    .capabilities-spectrum h2 {
        font-size: clamp(34px, 5vw, 60px);
        font-weight: 800;
        line-height: 1.1;
        margin: 0;
    }

    .capabilities-spectrum__mosaic {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: clamp(20px, 3vw, 32px);
        position: relative;
    }

    .capabilities-spectrum__mosaic::before {
        content: '';
        position: absolute;
        inset: 10%;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: var(--radius-xxl, 32px);
        pointer-events: none;
    }

    .capabilities-spectrum__tile {
        background: var(--surface-1, rgba(14, 16, 32, 0.8));
        backdrop-filter: blur(14px);
        border-radius: var(--radius-xl);
        padding: clamp(24px, 3vw, 36px);
        position: relative;
        overflow: hidden;
        isolation: isolate;
        border: 1px solid rgba(255, 255, 255, 0.08);

        transform: translateY(40px) scale(0.97);
    }

    .capabilities-spectrum__halo {
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at top, rgba(255, 255, 255, 0.18), transparent 65%);

        transition: opacity 0.4s ease;
        z-index: -1;
    }

    .capabilities-spectrum__tile:hover .capabilities-spectrum__halo {
        opacity: 1;
    }

    .capabilities-spectrum__meta {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 1.5rem;
    }

    .capabilities-spectrum__step {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 48px;
        height: 48px;
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.25);
        font-weight: 700;
        font-size: 18px;
        color: var(--accent-contrast, #0c0a0f);
        background: var(--accent, #ff9d5c);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
    }

    .capabilities-spectrum__icon {
        font-size: 42px;
        color: var(--fg-on-primary);
        filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.7));
    }

    .capabilities-spectrum__tile h3 {
        margin: 0 0 0.75rem;
        font-size: clamp(20px, 2.5vw, 26px);
        font-weight: 700;
        color: var(--fg-on-surface-light, #f5f5ff);
    }

    .capabilities-spectrum__tile p {
        margin: 0;
        color: var(--neutral-300, rgba(255, 255, 255, 0.78));
        line-height: var(--line-height-base, 1.6);
    }

.site-header {
        background-color: var(--bg-page);
        color: var(--fg-on-page);
        border-bottom: 1px solid var(--border-on-surface-light);
        position: sticky;
        top: 0;
        z-index: 1000;
        box-shadow: var(--shadow-sm);
    }

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

    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        white-space: nowrap;
        transition: color var(--anim-duration) var(--anim-ease);
    }

    .logo:hover {
        color: var(--link-hover);
    }

    .main-nav {
        display: flex;
        align-items: center;
        gap: calc(var(--gap) * 2);
    }

    .nav-list {
        display: flex;
        list-style: none;
        gap: var(--gap);
        margin: 0;
        padding: 0;
    }

    .nav-link {
        color: var(--fg-on-page);
        text-decoration: none;
        padding: calc(var(--space-y) / 2) var(--space-x);
        border-radius: var(--radius-sm);
        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);
    }

    .btn-cta {
        background-color: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: calc(var(--space-y) / 1.5) var(--space-x);
        border-radius: var(--radius-md);
        text-decoration: none;
        font-weight: 600;
        white-space: nowrap;
        transition: background-color var(--anim-duration) var(--anim-ease);
        border: none;
        cursor: pointer;
    }

    .btn-cta:hover {
        background-color: var(--bg-primary-hover);
    }

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

    .burger-line {
        width: 100%;
        height: 2px;
        background-color: var(--neutral-800);
        border-radius: 2px;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    /* Мобильная версия */
    @media (max-width: 767px) {
        .burger-menu {
            display: flex;
        }

        .main-nav {
            position: fixed;
            top: 0;
            right: 0;
            height: 100vh;
            width: 70%;
            max-width: 300px;
            background-color: var(--surface-1);
            flex-direction: column;
            justify-content: flex-start;
            align-items: stretch;
            padding: calc(var(--space-y) * 3) var(--space-x);
            gap: calc(var(--gap) * 2);
            transform: translateX(100%);
            transition: transform var(--anim-duration) var(--anim-ease);
            box-shadow: var(--shadow-lg);
            z-index: 1000;
            overflow-y: auto;
        }

        .main-nav.active {
            transform: translateX(0);
        }

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

        .nav-link {
            display: block;
            padding: var(--space-y) var(--space-x);
        }

        .btn-cta {
            text-align: center;
            margin-top: var(--space-y);
        }

        /* Анимация бургера */
        .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

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

        .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

        /* Затемнение фона */
        .main-nav.active::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background-color: var(--overlay);
            z-index: -1;
        }
    }

    /* Планшеты */
    @media (min-width: 768px) and (max-width: 1023px) {
        .header-container {
            padding: calc(var(--space-y) / 1.5) var(--space-x);
        }

        .main-nav {
            gap: var(--gap);
        }

        .nav-list {
            gap: calc(var(--gap) / 1.5);
        }
    }

footer {
    background-color: #f8f9fa;
    color: #333;
    font-family: sans-serif;
    padding: 2.5rem 1rem;
    border-top: 1px solid #dee2e6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto 2rem auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: space-between;
  }
  .brand-section {
    flex: 1;
    min-width: 250px;
  }
  .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
  }
  .tagline {
    color: #6c757d;
    line-height: 1.5;
  }
  .links-section {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
  }
  .footer-nav a {
    color: #495057;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #007bff;
  }
  .legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .legal-links a {
    color: #6c757d;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .legal-links a:hover {
    text-decoration: underline;
  }
  .footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #dee2e6;
    text-align: center;
  }
  .contact-info {
    margin-bottom: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.95rem;
  }
  .contact-info address,
  .contact-info a {
    color: #495057;
    text-decoration: none;
    font-style: normal;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #6c757d;
    line-height: 1.5;
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      gap: 2rem;
    }
    .contact-info {
      flex-direction: column;
      gap: 0.8rem;
      align-items: center;
    }
  }

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

    .cookie-cv15__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

    .cookie-cv15__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

    .cookie-cv15__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, 0.45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, 0.65);
        cursor: pointer;
    }

    .cookie-cv15__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

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

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

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

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

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

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

    .form-layout-c .row {
        display: grid;
        gap: 10px;
    }

    .form-layout-c .row.two {
        grid-template-columns: 1fr 1fr;
    }

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

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

    .form-layout-c .agree {
        display: flex;
        gap: 8px;
        align-items: center;
        margin-top: 2px;
    }

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

    @media (max-width: 760px) {
        .form-layout-c .row.two {
            grid-template-columns: 1fr;
        }
    }

.contacts-fresh-v2 {
        padding: calc(var(--space-y) * 2.2) var(--space-x);
        background: var(--bg-alt);
        color: var(--fg-on-alt);
    }

    .contacts-fresh-v2 .shell {
        max-width: 900px;
        margin: 0 auto;
        display: grid;
        gap: var(--gap);
    }

    .contacts-fresh-v2 h2 {
        margin: 0;
        font-size: clamp(1.7rem, 3.2vw, 2.5rem);
    }

    .contacts-fresh-v2 .subtitle {
        margin: 0;
        color: var(--fg-on-surface-light);
    }

    .contacts-fresh-v2 .list {
        display: grid;
        gap: .75rem;
    }

    .contacts-fresh-v2 article {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: var(--gap);
        padding: 1rem;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
    }

    .contacts-fresh-v2 .label {
        margin: 0;
        color: var(--fg-on-surface-light);
        font-size: .9rem;
    }

    .contacts-fresh-v2 .value {
        margin: .2rem 0 0;
        font-weight: 700;
    }

    .contacts-fresh-v2 a {
        padding: .5rem .8rem;
        border-radius: var(--radius-sm);
        text-decoration: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 700;
    }

    @media (max-width: 700px) {
        .contacts-fresh-v2 article {
            flex-direction: column;
            align-items: flex-start;
        }
    }

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

    .map-note-c3__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: .9fr 1.1fr;
        gap: 1rem;
    }

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

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

    .map-note-c3__notes {
        margin-top: 1rem;
        display: grid;
        gap: .7rem;
    }

    .map-note-c3__notes div {
        padding: .9rem;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .map-note-c3__notes span {
        display: block;
        margin-top: .3rem;
        color: rgba(255, 255, 255, .84);
    }

    .map-note-c3__embed {
        overflow: hidden;
        border-radius: var(--radius-xl);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .map-note-c3__embed iframe {
        display: block;
        width: 100%;
        height: 24rem;
    }

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

.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;
        text-decoration: none;
        padding: 10px 16px;
        border-radius: var(--radius-md);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        transition: background-color var(--anim-duration) var(--anim-ease);
    }
    .touch-gridline .cta:hover {
        background: var(--bg-primary-hover);
    }

.site-header {
        background-color: var(--bg-page);
        color: var(--fg-on-page);
        border-bottom: 1px solid var(--border-on-surface-light);
        position: sticky;
        top: 0;
        z-index: 1000;
        box-shadow: var(--shadow-sm);
    }

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

    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        white-space: nowrap;
        transition: color var(--anim-duration) var(--anim-ease);
    }

    .logo:hover {
        color: var(--link-hover);
    }

    .main-nav {
        display: flex;
        align-items: center;
        gap: calc(var(--gap) * 2);
    }

    .nav-list {
        display: flex;
        list-style: none;
        gap: var(--gap);
        margin: 0;
        padding: 0;
    }

    .nav-link {
        color: var(--fg-on-page);
        text-decoration: none;
        padding: calc(var(--space-y) / 2) var(--space-x);
        border-radius: var(--radius-sm);
        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);
    }

    .btn-cta {
        background-color: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: calc(var(--space-y) / 1.5) var(--space-x);
        border-radius: var(--radius-md);
        text-decoration: none;
        font-weight: 600;
        white-space: nowrap;
        transition: background-color var(--anim-duration) var(--anim-ease);
        border: none;
        cursor: pointer;
    }

    .btn-cta:hover {
        background-color: var(--bg-primary-hover);
    }

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

    .burger-line {
        width: 100%;
        height: 2px;
        background-color: var(--neutral-800);
        border-radius: 2px;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    /* Мобильная версия */
    @media (max-width: 767px) {
        .burger-menu {
            display: flex;
        }

        .main-nav {
            position: fixed;
            top: 0;
            right: 0;
            height: 100vh;
            width: 70%;
            max-width: 300px;
            background-color: var(--surface-1);
            flex-direction: column;
            justify-content: flex-start;
            align-items: stretch;
            padding: calc(var(--space-y) * 3) var(--space-x);
            gap: calc(var(--gap) * 2);
            transform: translateX(100%);
            transition: transform var(--anim-duration) var(--anim-ease);
            box-shadow: var(--shadow-lg);
            z-index: 1000;
            overflow-y: auto;
        }

        .main-nav.active {
            transform: translateX(0);
        }

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

        .nav-link {
            display: block;
            padding: var(--space-y) var(--space-x);
        }

        .btn-cta {
            text-align: center;
            margin-top: var(--space-y);
        }

        /* Анимация бургера */
        .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

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

        .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

        /* Затемнение фона */
        .main-nav.active::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background-color: var(--overlay);
            z-index: -1;
        }
    }

    /* Планшеты */
    @media (min-width: 768px) and (max-width: 1023px) {
        .header-container {
            padding: calc(var(--space-y) / 1.5) var(--space-x);
        }

        .main-nav {
            gap: var(--gap);
        }

        .nav-list {
            gap: calc(var(--gap) / 1.5);
        }
    }

footer {
    background-color: #f8f9fa;
    color: #333;
    font-family: sans-serif;
    padding: 2.5rem 1rem;
    border-top: 1px solid #dee2e6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto 2rem auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: space-between;
  }
  .brand-section {
    flex: 1;
    min-width: 250px;
  }
  .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
  }
  .tagline {
    color: #6c757d;
    line-height: 1.5;
  }
  .links-section {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
  }
  .footer-nav a {
    color: #495057;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #007bff;
  }
  .legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .legal-links a {
    color: #6c757d;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .legal-links a:hover {
    text-decoration: underline;
  }
  .footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #dee2e6;
    text-align: center;
  }
  .contact-info {
    margin-bottom: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.95rem;
  }
  .contact-info address,
  .contact-info a {
    color: #495057;
    text-decoration: none;
    font-style: normal;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #6c757d;
    line-height: 1.5;
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      gap: 2rem;
    }
    .contact-info {
      flex-direction: column;
      gap: 0.8rem;
      align-items: center;
    }
  }

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

    .cookie-cv15__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

    .cookie-cv15__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

    .cookie-cv15__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, 0.45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, 0.65);
        cursor: pointer;
    }

    .cookie-cv15__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

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

.site-header {
        background-color: var(--bg-page);
        color: var(--fg-on-page);
        border-bottom: 1px solid var(--border-on-surface-light);
        position: sticky;
        top: 0;
        z-index: 1000;
        box-shadow: var(--shadow-sm);
    }

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

    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        white-space: nowrap;
        transition: color var(--anim-duration) var(--anim-ease);
    }

    .logo:hover {
        color: var(--link-hover);
    }

    .main-nav {
        display: flex;
        align-items: center;
        gap: calc(var(--gap) * 2);
    }

    .nav-list {
        display: flex;
        list-style: none;
        gap: var(--gap);
        margin: 0;
        padding: 0;
    }

    .nav-link {
        color: var(--fg-on-page);
        text-decoration: none;
        padding: calc(var(--space-y) / 2) var(--space-x);
        border-radius: var(--radius-sm);
        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);
    }

    .btn-cta {
        background-color: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: calc(var(--space-y) / 1.5) var(--space-x);
        border-radius: var(--radius-md);
        text-decoration: none;
        font-weight: 600;
        white-space: nowrap;
        transition: background-color var(--anim-duration) var(--anim-ease);
        border: none;
        cursor: pointer;
    }

    .btn-cta:hover {
        background-color: var(--bg-primary-hover);
    }

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

    .burger-line {
        width: 100%;
        height: 2px;
        background-color: var(--neutral-800);
        border-radius: 2px;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    /* Мобильная версия */
    @media (max-width: 767px) {
        .burger-menu {
            display: flex;
        }

        .main-nav {
            position: fixed;
            top: 0;
            right: 0;
            height: 100vh;
            width: 70%;
            max-width: 300px;
            background-color: var(--surface-1);
            flex-direction: column;
            justify-content: flex-start;
            align-items: stretch;
            padding: calc(var(--space-y) * 3) var(--space-x);
            gap: calc(var(--gap) * 2);
            transform: translateX(100%);
            transition: transform var(--anim-duration) var(--anim-ease);
            box-shadow: var(--shadow-lg);
            z-index: 1000;
            overflow-y: auto;
        }

        .main-nav.active {
            transform: translateX(0);
        }

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

        .nav-link {
            display: block;
            padding: var(--space-y) var(--space-x);
        }

        .btn-cta {
            text-align: center;
            margin-top: var(--space-y);
        }

        /* Анимация бургера */
        .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

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

        .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

        /* Затемнение фона */
        .main-nav.active::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background-color: var(--overlay);
            z-index: -1;
        }
    }

    /* Планшеты */
    @media (min-width: 768px) and (max-width: 1023px) {
        .header-container {
            padding: calc(var(--space-y) / 1.5) var(--space-x);
        }

        .main-nav {
            gap: var(--gap);
        }

        .nav-list {
            gap: calc(var(--gap) / 1.5);
        }
    }

footer {
    background-color: #f8f9fa;
    color: #333;
    font-family: sans-serif;
    padding: 2.5rem 1rem;
    border-top: 1px solid #dee2e6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto 2rem auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: space-between;
  }
  .brand-section {
    flex: 1;
    min-width: 250px;
  }
  .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
  }
  .tagline {
    color: #6c757d;
    line-height: 1.5;
  }
  .links-section {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
  }
  .footer-nav a {
    color: #495057;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #007bff;
  }
  .legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .legal-links a {
    color: #6c757d;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .legal-links a:hover {
    text-decoration: underline;
  }
  .footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #dee2e6;
    text-align: center;
  }
  .contact-info {
    margin-bottom: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.95rem;
  }
  .contact-info address,
  .contact-info a {
    color: #495057;
    text-decoration: none;
    font-style: normal;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #6c757d;
    line-height: 1.5;
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      gap: 2rem;
    }
    .contact-info {
      flex-direction: column;
      gap: 0.8rem;
      align-items: center;
    }
  }

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

    .cookie-cv15__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

    .cookie-cv15__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

    .cookie-cv15__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, 0.45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, 0.65);
        cursor: pointer;
    }

    .cookie-cv15__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

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

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

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

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

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

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

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

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

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

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

.site-header {
        background-color: var(--bg-page);
        color: var(--fg-on-page);
        border-bottom: 1px solid var(--border-on-surface-light);
        position: sticky;
        top: 0;
        z-index: 1000;
        box-shadow: var(--shadow-sm);
    }

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

    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        white-space: nowrap;
        transition: color var(--anim-duration) var(--anim-ease);
    }

    .logo:hover {
        color: var(--link-hover);
    }

    .main-nav {
        display: flex;
        align-items: center;
        gap: calc(var(--gap) * 2);
    }

    .nav-list {
        display: flex;
        list-style: none;
        gap: var(--gap);
        margin: 0;
        padding: 0;
    }

    .nav-link {
        color: var(--fg-on-page);
        text-decoration: none;
        padding: calc(var(--space-y) / 2) var(--space-x);
        border-radius: var(--radius-sm);
        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);
    }

    .btn-cta {
        background-color: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: calc(var(--space-y) / 1.5) var(--space-x);
        border-radius: var(--radius-md);
        text-decoration: none;
        font-weight: 600;
        white-space: nowrap;
        transition: background-color var(--anim-duration) var(--anim-ease);
        border: none;
        cursor: pointer;
    }

    .btn-cta:hover {
        background-color: var(--bg-primary-hover);
    }

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

    .burger-line {
        width: 100%;
        height: 2px;
        background-color: var(--neutral-800);
        border-radius: 2px;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    /* Мобильная версия */
    @media (max-width: 767px) {
        .burger-menu {
            display: flex;
        }

        .main-nav {
            position: fixed;
            top: 0;
            right: 0;
            height: 100vh;
            width: 70%;
            max-width: 300px;
            background-color: var(--surface-1);
            flex-direction: column;
            justify-content: flex-start;
            align-items: stretch;
            padding: calc(var(--space-y) * 3) var(--space-x);
            gap: calc(var(--gap) * 2);
            transform: translateX(100%);
            transition: transform var(--anim-duration) var(--anim-ease);
            box-shadow: var(--shadow-lg);
            z-index: 1000;
            overflow-y: auto;
        }

        .main-nav.active {
            transform: translateX(0);
        }

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

        .nav-link {
            display: block;
            padding: var(--space-y) var(--space-x);
        }

        .btn-cta {
            text-align: center;
            margin-top: var(--space-y);
        }

        /* Анимация бургера */
        .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

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

        .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

        /* Затемнение фона */
        .main-nav.active::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background-color: var(--overlay);
            z-index: -1;
        }
    }

    /* Планшеты */
    @media (min-width: 768px) and (max-width: 1023px) {
        .header-container {
            padding: calc(var(--space-y) / 1.5) var(--space-x);
        }

        .main-nav {
            gap: var(--gap);
        }

        .nav-list {
            gap: calc(var(--gap) / 1.5);
        }
    }

footer {
    background-color: #f8f9fa;
    color: #333;
    font-family: sans-serif;
    padding: 2.5rem 1rem;
    border-top: 1px solid #dee2e6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto 2rem auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: space-between;
  }
  .brand-section {
    flex: 1;
    min-width: 250px;
  }
  .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
  }
  .tagline {
    color: #6c757d;
    line-height: 1.5;
  }
  .links-section {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
  }
  .footer-nav a {
    color: #495057;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #007bff;
  }
  .legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .legal-links a {
    color: #6c757d;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .legal-links a:hover {
    text-decoration: underline;
  }
  .footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #dee2e6;
    text-align: center;
  }
  .contact-info {
    margin-bottom: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.95rem;
  }
  .contact-info address,
  .contact-info a {
    color: #495057;
    text-decoration: none;
    font-style: normal;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #6c757d;
    line-height: 1.5;
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      gap: 2rem;
    }
    .contact-info {
      flex-direction: column;
      gap: 0.8rem;
      align-items: center;
    }
  }

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

    .cookie-cv15__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

    .cookie-cv15__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

    .cookie-cv15__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, 0.45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, 0.65);
        cursor: pointer;
    }

    .cookie-cv15__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

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

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

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

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

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

.site-header {
        background-color: var(--bg-page);
        color: var(--fg-on-page);
        border-bottom: 1px solid var(--border-on-surface-light);
        position: sticky;
        top: 0;
        z-index: 1000;
        box-shadow: var(--shadow-sm);
    }

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

    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        white-space: nowrap;
        transition: color var(--anim-duration) var(--anim-ease);
    }

    .logo:hover {
        color: var(--link-hover);
    }

    .main-nav {
        display: flex;
        align-items: center;
        gap: calc(var(--gap) * 2);
    }

    .nav-list {
        display: flex;
        list-style: none;
        gap: var(--gap);
        margin: 0;
        padding: 0;
    }

    .nav-link {
        color: var(--fg-on-page);
        text-decoration: none;
        padding: calc(var(--space-y) / 2) var(--space-x);
        border-radius: var(--radius-sm);
        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);
    }

    .btn-cta {
        background-color: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: calc(var(--space-y) / 1.5) var(--space-x);
        border-radius: var(--radius-md);
        text-decoration: none;
        font-weight: 600;
        white-space: nowrap;
        transition: background-color var(--anim-duration) var(--anim-ease);
        border: none;
        cursor: pointer;
    }

    .btn-cta:hover {
        background-color: var(--bg-primary-hover);
    }

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

    .burger-line {
        width: 100%;
        height: 2px;
        background-color: var(--neutral-800);
        border-radius: 2px;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    /* Мобильная версия */
    @media (max-width: 767px) {
        .burger-menu {
            display: flex;
        }

        .main-nav {
            position: fixed;
            top: 0;
            right: 0;
            height: 100vh;
            width: 70%;
            max-width: 300px;
            background-color: var(--surface-1);
            flex-direction: column;
            justify-content: flex-start;
            align-items: stretch;
            padding: calc(var(--space-y) * 3) var(--space-x);
            gap: calc(var(--gap) * 2);
            transform: translateX(100%);
            transition: transform var(--anim-duration) var(--anim-ease);
            box-shadow: var(--shadow-lg);
            z-index: 1000;
            overflow-y: auto;
        }

        .main-nav.active {
            transform: translateX(0);
        }

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

        .nav-link {
            display: block;
            padding: var(--space-y) var(--space-x);
        }

        .btn-cta {
            text-align: center;
            margin-top: var(--space-y);
        }

        /* Анимация бургера */
        .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

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

        .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

        /* Затемнение фона */
        .main-nav.active::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background-color: var(--overlay);
            z-index: -1;
        }
    }

    /* Планшеты */
    @media (min-width: 768px) and (max-width: 1023px) {
        .header-container {
            padding: calc(var(--space-y) / 1.5) var(--space-x);
        }

        .main-nav {
            gap: var(--gap);
        }

        .nav-list {
            gap: calc(var(--gap) / 1.5);
        }
    }

footer {
    background-color: #f8f9fa;
    color: #333;
    font-family: sans-serif;
    padding: 2.5rem 1rem;
    border-top: 1px solid #dee2e6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto 2rem auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: space-between;
  }
  .brand-section {
    flex: 1;
    min-width: 250px;
  }
  .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
  }
  .tagline {
    color: #6c757d;
    line-height: 1.5;
  }
  .links-section {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
  }
  .footer-nav a {
    color: #495057;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #007bff;
  }
  .legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .legal-links a {
    color: #6c757d;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .legal-links a:hover {
    text-decoration: underline;
  }
  .footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #dee2e6;
    text-align: center;
  }
  .contact-info {
    margin-bottom: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.95rem;
  }
  .contact-info address,
  .contact-info a {
    color: #495057;
    text-decoration: none;
    font-style: normal;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #6c757d;
    line-height: 1.5;
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      gap: 2rem;
    }
    .contact-info {
      flex-direction: column;
      gap: 0.8rem;
      align-items: center;
    }
  }

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

    .cookie-cv15__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

    .cookie-cv15__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

    .cookie-cv15__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, 0.45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, 0.65);
        cursor: pointer;
    }

    .cookie-cv15__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

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

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

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

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

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