:root {
  --font-family: "Fira Sans", sans-serif;
  --font-size-base: 14.6px;
  --line-height-base: 1.32;

  --max-w: 1140px;
  --space-x: 0.95rem;
  --space-y: 0.77rem;
  --gap: 0.44rem;

  --radius-xl: 0.8rem;
  --radius-lg: 0.62rem;
  --radius-md: 0.42rem;
  --radius-sm: 0.18rem;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.07);
  --shadow-md: 0 3px 14px rgba(0,0,0,0.09);
  --shadow-lg: 0 6px 28px rgba(0,0,0,0.11);

  --overlay: rgba(0, 0, 0, 0.65);
  --anim-duration: 140ms;
  --anim-ease: cubic-bezier(0.2,0.8,0.2,1);
  --random-number: 2;

  --brand: #0056A3;
  --brand-contrast: #FFFFFF;
  --accent: #FF6B35;
  --accent-contrast: #FFFFFF;

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

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

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

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

  --surface-light: rgba(245, 247, 250, 0.7);
  --fg-on-surface-light: #6B7C93;
  --border-on-surface-light: rgba(209, 217, 230, 0.5);

  --bg-primary: #0056A3;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #004A8A;
  --ring: rgba(0, 86, 163, 0.4);

  --bg-accent: rgba(255, 107, 53, 0.12);
  --fg-on-accent: #B3471F;
  --bg-accent-hover: #E55F2F;

  --link: #0056A3;
  --link-hover: #004A8A;

  --gradient-hero: linear-gradient(135deg, #0056A3 0%, #003A6F 100%);
  --gradient-accent: linear-gradient(90deg, #FF6B35 0%, #FF8E53 100%);

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

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 100;
    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;
    letter-spacing: -0.5px;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--link-hover);
}

.primary-navigation {
    display: flex;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) 0;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover,
.nav-link:focus-visible {
    color: var(--link-hover);
    outline: none;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brand);
    transition: width var(--anim-duration) var(--anim-ease);
}
.nav-link:hover::after,
.nav-link:focus-visible::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    width: 44px;
    height: 44px;
    justify-content: center;
    align-items: center;
    border-radius: var(--radius-sm);
    background-color: var(--btn-ghost-bg);
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.menu-toggle:hover {
    background-color: var(--btn-ghost-bg-hover);
}
.menu-toggle-icon {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: 1px;
    position: relative;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.menu-toggle-icon::before,
.menu-toggle-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: 1px;
    left: 0;
    transition: transform var(--anim-duration) var(--anim-ease), top var(--anim-duration) var(--anim-ease);
}
.menu-toggle-icon::before {
    top: -8px;
}
.menu-toggle-icon::after {
    top: 8px;
}
.menu-toggle[aria-expanded="true"] .menu-toggle-icon {
    background-color: transparent;
}
.menu-toggle[aria-expanded="true"] .menu-toggle-icon::before {
    top: 0;
    transform: rotate(45deg);
}
.menu-toggle[aria-expanded="true"] .menu-toggle-icon::after {
    top: 0;
    transform: rotate(-45deg);
}

@media (max-width: 767px) {
    .menu-toggle {
        display: flex;
    }
    .primary-navigation {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
        transform: translateY(-100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        visibility: hidden;
        opacity: 0;
    }
    .primary-navigation[data-visible="true"] {
        transform: translateY(0);
        visibility: visible;
        opacity: 1;
    }
    .nav-list {
        flex-direction: column;
        gap: 0;
    }
    .nav-link {
        display: block;
        padding: var(--space-y) 0;
        border-bottom: 1px solid var(--border-on-surface-light);
    }
    .nav-link::after {
        display: none;
    }
    .nav-link:last-child {
        border-bottom: none;
    }
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 2.5rem 1.5rem;
    background-color: #f8f9fa;
    color: #333;
    font-family: sans-serif;
    line-height: 1.6;
    border-top: 1px solid #dee2e6;
  }
  .footer-left, .footer-right {
    box-sizing: border-box;
  }
  .footer-left {
    flex: 1;
    min-width: 300px;
    margin-bottom: 2rem;
    padding-right: 2rem;
  }
  .footer-right {
    flex: 1;
    min-width: 300px;
  }
  .logo {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: #2c3e50;
  }
  .copyright {
    margin: 0 0 1.5rem 0;
    color: #6c757d;
    font-size: 0.9rem;
  }
  .footer-disclaimer p {
    font-size: 0.85rem;
    color: #6c757d;
    margin: 0;
    line-height: 1.5;
  }
  .footer-disclaimer a {
    color: #0066cc;
    text-decoration: none;
  }
  .footer-disclaimer a:hover {
    text-decoration: underline;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
  }
  .footer-nav li {
    margin-bottom: 0.75rem;
  }
  .footer-nav a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #0066cc;
    text-decoration: underline;
  }
  .footer-contacts {
    margin-bottom: 1.5rem;
  }
  .footer-contacts p {
    margin: 0 0 0.5rem 0;
  }
  .footer-contacts a {
    color: #0066cc;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    font-size: 0.85rem;
    color: #6c757d;
  }
  .footer-legal a {
    color: #6c757d;
    text-decoration: none;
  }
  .footer-legal a:hover {
    color: #2c3e50;
    text-decoration: underline;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      padding: 2rem 1rem;
    }
    .footer-left, .footer-right {
      padding-right: 0;
      width: 100%;
    }
    .footer-left {
      margin-bottom: 2rem;
    }
  }

.cookie-lv4 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: var(--surface-2);
        border-bottom: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
    }

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

    .cookie-lv4__inner span {
        color: var(--neutral-600);
        margin-left: 6px;
    }

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

    .cookie-lv4__actions a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--link);
        padding: 6px 10px;
    }

    .cookie-lv4__actions a[data-choice='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

.intro-stack-l12 {
        padding: clamp(3.6rem, 8vw, 6.5rem) var(--space-x);
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

    .intro-stack-l12__wrap {
        max-width: 58rem;
        margin: 0 auto;
    }

    .intro-stack-l12__hero {
        text-align: center;
    }

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

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

    .intro-stack-l12__hero strong {
        display: block;
        margin-top: .7rem;
    }

    .intro-stack-l12__panels {
        margin-top: 1.15rem;
        display: grid;
        gap: .8rem;
    }

    .intro-stack-l12__panels article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
        color: var(--neutral-600);
    }

    .intro-stack-l12__panels .button {
        display: inline-block;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: 0.8rem 1.8rem;
        border-radius: var(--radius-md);
        text-decoration: none;
        font-weight: 600;
        margin-right: 0.5rem;
        transition: background-color var(--anim-duration) var(--anim-ease);
    }
    .intro-stack-l12__panels .button:hover {
        background: var(--bg-primary-hover);
    }

.next-c-1 {
        padding: clamp(3.3rem, 7vw, 6rem) var(--space-x);
        background: var(--gradient-accent);
        color: var(--fg-on-primary);
    }

    .next-c-1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .next-c-1__mast {
        display: flex;
        justify-content: space-between;
        align-items: end;
        gap: 1rem;
        flex-wrap: wrap;
        margin-bottom: 1.1rem;
    }

    .next-c-1__mast p {
        margin: 0;
        color: rgba(255, 255, 255, 0.82);
    }

    .next-c-1__mast h2 {
        margin: .55rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

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

    .next-c-1__list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
        gap: var(--gap);
    }

    .next-c-1__list article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: rgba(255, 255, 255, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .next-c-1__list i {
        font-style: normal;
        display: inline-flex;
        width: 2.3rem;
        height: 2.3rem;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(255, 255, 255, .16);
    }

    .next-c-1__list h3 {
        margin: .8rem 0 .35rem;
        font-size: 1.04rem;
    }

    .next-c-1__list p {
        margin: 0;
        color: rgba(255, 255, 255, 0.82);
    }

    .next-c-1__list a {
        display: inline-block;
        margin-top: .75rem;
        color: var(--bg-accent);
        text-decoration: none;
        font-weight: 600;
    }

    /* macro-bg:next-c-1__wrap */
    .next-c-1 {
        overflow: hidden;
    }

    .next-c-1__wrap {
        background-image: linear-gradient(rgba(17, 24, 39, .28), rgba(17, 24, 39, .28)), url('https://images.pexels.com/photos/256381/pexels-photo-256381.jpeg?auto=compress&cs=tinysrgb&w=800');
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        border-radius: var(--radius-xl);
        overflow: hidden;
    }

.why-choose {

        padding: clamp(16px, 3vw, 44px);
    }

    .why-choose--light.why-choose--v2 {
        background: var(--fg-on-primary);
        color: var(--bg-primary);
    }

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

    .why-choose__wrap {
        border-radius: var(--radius-xl);
        padding: clamp(16px, 2.6vw, 26px);
        background: var(--bg-alt);
        border: 1px solid var(--neutral-300);
        box-shadow: var(--shadow-md);
    }

    .why-choose__h {
        margin-bottom: clamp(14px, 2vw, 22px);
    }

    .why-choose__pill {
        display: inline-flex;
        padding: 7px 12px;
        border-radius: 999px;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-sm);
        margin-bottom: 12px;
        font-size: 0.9rem;
    }

    .why-choose__title {
        margin: 0;
        font-size: clamp(24px, 4.2vw, 40px);
        line-height: 1.1;
        color: var(--bg-primary);
        letter-spacing: -0.02em;
    }

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

    .why-choose__cards {
        display: grid;
        grid-template-columns:repeat(12, 1fr);
        gap: 14px;
    }

    .why-choose__card {
        grid-column: span 6;
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-sm);
        overflow: hidden;
        transform: perspective(900px) rotateX(0) rotateY(0) translateY(0);
        transition: transform 180ms var(--anim-ease),
        box-shadow 180ms var(--anim-ease),
        border-color 180ms var(--anim-ease);
        will-change: transform;
        position: relative;
    }

    /* dinamnic glow via CSS variabile */
    .why-choose__card::after {
        content: '';
        position: absolute;
        inset: -1px;
        background: radial-gradient(220px 220px at var(--gx, 50%) var(--gy, 50%),
        rgba(0, 85, 183, 0.20), transparent 60%);

        transition: opacity 180ms var(--anim-ease);
        pointer-events: none;
    }

    .why-choose__card.is-hover {
        box-shadow: var(--shadow-lg);
        border-color: rgba(0, 85, 183, 0.28);
    }

    .why-choose__card.is-hover::after {
        opacity: 1;
    }

    .why-choose__cardHead {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 16px;
        background: rgba(0, 0, 0, 0.03);
        border-bottom: 1px solid var(--border-on-surface);
    }

    .why-choose__num {
        width: 36px;
        height: 36px;
        border-radius: 12px;
        display: grid;
        place-items: center;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-weight: 700;
    }

    .why-choose__mini {
        color: var(--neutral-600);
        font-size: 0.9rem;
    }

    .why-choose__cardBody {
        padding: 14px 16px;
    }

    .why-choose__cardTitle {
        margin: 0 0 8px;
        color: var(--bg-primary);
        font-size: clamp(18px, 2.2vw, 20px);
    }

    .why-choose__cardText {
        margin: 0;
        color: var(--neutral-600);
        line-height: var(--line-height-base);
    }

    @media (max-width: 860px) {
        .why-choose__card {
            grid-column: span 12;
        }
    }

    @media (prefers-reduced-motion: reduce) {
        .why-choose__card {
            transition: none;
            transform: none;
        }

        .why-choose__card::after {
            display: none;
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

.gallery__thumb:hover {
    transform: translateY(-4px);
    border-color: var(--brand);
}

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

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 100;
    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;
    letter-spacing: -0.5px;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--link-hover);
}

.primary-navigation {
    display: flex;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) 0;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover,
.nav-link:focus-visible {
    color: var(--link-hover);
    outline: none;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brand);
    transition: width var(--anim-duration) var(--anim-ease);
}
.nav-link:hover::after,
.nav-link:focus-visible::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    width: 44px;
    height: 44px;
    justify-content: center;
    align-items: center;
    border-radius: var(--radius-sm);
    background-color: var(--btn-ghost-bg);
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.menu-toggle:hover {
    background-color: var(--btn-ghost-bg-hover);
}
.menu-toggle-icon {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: 1px;
    position: relative;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.menu-toggle-icon::before,
.menu-toggle-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: 1px;
    left: 0;
    transition: transform var(--anim-duration) var(--anim-ease), top var(--anim-duration) var(--anim-ease);
}
.menu-toggle-icon::before {
    top: -8px;
}
.menu-toggle-icon::after {
    top: 8px;
}
.menu-toggle[aria-expanded="true"] .menu-toggle-icon {
    background-color: transparent;
}
.menu-toggle[aria-expanded="true"] .menu-toggle-icon::before {
    top: 0;
    transform: rotate(45deg);
}
.menu-toggle[aria-expanded="true"] .menu-toggle-icon::after {
    top: 0;
    transform: rotate(-45deg);
}

@media (max-width: 767px) {
    .menu-toggle {
        display: flex;
    }
    .primary-navigation {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
        transform: translateY(-100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        visibility: hidden;
        opacity: 0;
    }
    .primary-navigation[data-visible="true"] {
        transform: translateY(0);
        visibility: visible;
        opacity: 1;
    }
    .nav-list {
        flex-direction: column;
        gap: 0;
    }
    .nav-link {
        display: block;
        padding: var(--space-y) 0;
        border-bottom: 1px solid var(--border-on-surface-light);
    }
    .nav-link::after {
        display: none;
    }
    .nav-link:last-child {
        border-bottom: none;
    }
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 2.5rem 1.5rem;
    background-color: #f8f9fa;
    color: #333;
    font-family: sans-serif;
    line-height: 1.6;
    border-top: 1px solid #dee2e6;
  }
  .footer-left, .footer-right {
    box-sizing: border-box;
  }
  .footer-left {
    flex: 1;
    min-width: 300px;
    margin-bottom: 2rem;
    padding-right: 2rem;
  }
  .footer-right {
    flex: 1;
    min-width: 300px;
  }
  .logo {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: #2c3e50;
  }
  .copyright {
    margin: 0 0 1.5rem 0;
    color: #6c757d;
    font-size: 0.9rem;
  }
  .footer-disclaimer p {
    font-size: 0.85rem;
    color: #6c757d;
    margin: 0;
    line-height: 1.5;
  }
  .footer-disclaimer a {
    color: #0066cc;
    text-decoration: none;
  }
  .footer-disclaimer a:hover {
    text-decoration: underline;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
  }
  .footer-nav li {
    margin-bottom: 0.75rem;
  }
  .footer-nav a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #0066cc;
    text-decoration: underline;
  }
  .footer-contacts {
    margin-bottom: 1.5rem;
  }
  .footer-contacts p {
    margin: 0 0 0.5rem 0;
  }
  .footer-contacts a {
    color: #0066cc;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    font-size: 0.85rem;
    color: #6c757d;
  }
  .footer-legal a {
    color: #6c757d;
    text-decoration: none;
  }
  .footer-legal a:hover {
    color: #2c3e50;
    text-decoration: underline;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      padding: 2rem 1rem;
    }
    .footer-left, .footer-right {
      padding-right: 0;
      width: 100%;
    }
    .footer-left {
      margin-bottom: 2rem;
    }
  }

.cookie-lv4 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: var(--surface-2);
        border-bottom: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
    }

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

    .cookie-lv4__inner span {
        color: var(--neutral-600);
        margin-left: 6px;
    }

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

    .cookie-lv4__actions a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--link);
        padding: 6px 10px;
    }

    .cookie-lv4__actions a[data-choice='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

.project-list--colored-v5 {
    padding: 60px 20px;
    background: var(--neutral-900);
    color: var(--neutral-0);
}

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

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

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

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

.project-list__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
    gap: 14px;
}

.project-list__card {
    border-radius: var(--radius-xl);
    padding: 12px 14px;
    background: rgba(15,23,42,0.96);
    border: 1px solid rgba(148,163,184,0.7);
}

.project-list__card--active {
    border-color: var(--accent);
}
.project-list__card--paused {
    border-color: var(--accent);
}
.project-list__card--archived {
    border-color: var(--accent);
}

.project-list__name {
    margin: 0 0 3px;
    font-size: 0.95rem;
}

.project-list__meta {
    margin: 0;
    font-size: 0.85rem;
    color: var(--neutral-300);
}

.partners {

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

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

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

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

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

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

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

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

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

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

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 100;
    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;
    letter-spacing: -0.5px;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--link-hover);
}

.primary-navigation {
    display: flex;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) 0;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover,
.nav-link:focus-visible {
    color: var(--link-hover);
    outline: none;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brand);
    transition: width var(--anim-duration) var(--anim-ease);
}
.nav-link:hover::after,
.nav-link:focus-visible::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    width: 44px;
    height: 44px;
    justify-content: center;
    align-items: center;
    border-radius: var(--radius-sm);
    background-color: var(--btn-ghost-bg);
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.menu-toggle:hover {
    background-color: var(--btn-ghost-bg-hover);
}
.menu-toggle-icon {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: 1px;
    position: relative;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.menu-toggle-icon::before,
.menu-toggle-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: 1px;
    left: 0;
    transition: transform var(--anim-duration) var(--anim-ease), top var(--anim-duration) var(--anim-ease);
}
.menu-toggle-icon::before {
    top: -8px;
}
.menu-toggle-icon::after {
    top: 8px;
}
.menu-toggle[aria-expanded="true"] .menu-toggle-icon {
    background-color: transparent;
}
.menu-toggle[aria-expanded="true"] .menu-toggle-icon::before {
    top: 0;
    transform: rotate(45deg);
}
.menu-toggle[aria-expanded="true"] .menu-toggle-icon::after {
    top: 0;
    transform: rotate(-45deg);
}

@media (max-width: 767px) {
    .menu-toggle {
        display: flex;
    }
    .primary-navigation {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
        transform: translateY(-100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        visibility: hidden;
        opacity: 0;
    }
    .primary-navigation[data-visible="true"] {
        transform: translateY(0);
        visibility: visible;
        opacity: 1;
    }
    .nav-list {
        flex-direction: column;
        gap: 0;
    }
    .nav-link {
        display: block;
        padding: var(--space-y) 0;
        border-bottom: 1px solid var(--border-on-surface-light);
    }
    .nav-link::after {
        display: none;
    }
    .nav-link:last-child {
        border-bottom: none;
    }
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 2.5rem 1.5rem;
    background-color: #f8f9fa;
    color: #333;
    font-family: sans-serif;
    line-height: 1.6;
    border-top: 1px solid #dee2e6;
  }
  .footer-left, .footer-right {
    box-sizing: border-box;
  }
  .footer-left {
    flex: 1;
    min-width: 300px;
    margin-bottom: 2rem;
    padding-right: 2rem;
  }
  .footer-right {
    flex: 1;
    min-width: 300px;
  }
  .logo {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: #2c3e50;
  }
  .copyright {
    margin: 0 0 1.5rem 0;
    color: #6c757d;
    font-size: 0.9rem;
  }
  .footer-disclaimer p {
    font-size: 0.85rem;
    color: #6c757d;
    margin: 0;
    line-height: 1.5;
  }
  .footer-disclaimer a {
    color: #0066cc;
    text-decoration: none;
  }
  .footer-disclaimer a:hover {
    text-decoration: underline;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
  }
  .footer-nav li {
    margin-bottom: 0.75rem;
  }
  .footer-nav a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #0066cc;
    text-decoration: underline;
  }
  .footer-contacts {
    margin-bottom: 1.5rem;
  }
  .footer-contacts p {
    margin: 0 0 0.5rem 0;
  }
  .footer-contacts a {
    color: #0066cc;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    font-size: 0.85rem;
    color: #6c757d;
  }
  .footer-legal a {
    color: #6c757d;
    text-decoration: none;
  }
  .footer-legal a:hover {
    color: #2c3e50;
    text-decoration: underline;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      padding: 2rem 1rem;
    }
    .footer-left, .footer-right {
      padding-right: 0;
      width: 100%;
    }
    .footer-left {
      margin-bottom: 2rem;
    }
  }

.cookie-lv4 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: var(--surface-2);
        border-bottom: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
    }

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

    .cookie-lv4__inner span {
        color: var(--neutral-600);
        margin-left: 6px;
    }

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

    .cookie-lv4__actions a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--link);
        padding: 6px 10px;
    }

    .cookie-lv4__actions a[data-choice='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

.project-item--colored-v5 {
    padding: 56px 20px;
    background: var(--neutral-900);
    color: var(--neutral-0);
}

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

.project-item__card {
    border-radius: var(--radius-xl);
    padding: 20px 22px;
    background: rgba(15,23,42,0.98);
    border: 1px solid rgba(148,163,184,0.75);
}

.project-item__header {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: baseline;
}

.project-item__header h1 {
    margin: 0;
    font-size: clamp(24px,4vw,32px);
    color: var(--brand-contrast);
}

.project-item__tag {
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    font-size: 0.8rem;
}

.project-item__meta {
    margin: 8px 0 8px;
    font-size: 0.9rem;
    color: var(--neutral-300);
}

.project-item__desc {
    margin: 0;
    font-size: 0.95rem;
    color: var(--neutral-200);
    line-height: 1.7;
}

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 100;
    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;
    letter-spacing: -0.5px;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--link-hover);
}

.primary-navigation {
    display: flex;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) 0;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover,
.nav-link:focus-visible {
    color: var(--link-hover);
    outline: none;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brand);
    transition: width var(--anim-duration) var(--anim-ease);
}
.nav-link:hover::after,
.nav-link:focus-visible::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    width: 44px;
    height: 44px;
    justify-content: center;
    align-items: center;
    border-radius: var(--radius-sm);
    background-color: var(--btn-ghost-bg);
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.menu-toggle:hover {
    background-color: var(--btn-ghost-bg-hover);
}
.menu-toggle-icon {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: 1px;
    position: relative;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.menu-toggle-icon::before,
.menu-toggle-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: 1px;
    left: 0;
    transition: transform var(--anim-duration) var(--anim-ease), top var(--anim-duration) var(--anim-ease);
}
.menu-toggle-icon::before {
    top: -8px;
}
.menu-toggle-icon::after {
    top: 8px;
}
.menu-toggle[aria-expanded="true"] .menu-toggle-icon {
    background-color: transparent;
}
.menu-toggle[aria-expanded="true"] .menu-toggle-icon::before {
    top: 0;
    transform: rotate(45deg);
}
.menu-toggle[aria-expanded="true"] .menu-toggle-icon::after {
    top: 0;
    transform: rotate(-45deg);
}

@media (max-width: 767px) {
    .menu-toggle {
        display: flex;
    }
    .primary-navigation {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
        transform: translateY(-100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        visibility: hidden;
        opacity: 0;
    }
    .primary-navigation[data-visible="true"] {
        transform: translateY(0);
        visibility: visible;
        opacity: 1;
    }
    .nav-list {
        flex-direction: column;
        gap: 0;
    }
    .nav-link {
        display: block;
        padding: var(--space-y) 0;
        border-bottom: 1px solid var(--border-on-surface-light);
    }
    .nav-link::after {
        display: none;
    }
    .nav-link:last-child {
        border-bottom: none;
    }
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 2.5rem 1.5rem;
    background-color: #f8f9fa;
    color: #333;
    font-family: sans-serif;
    line-height: 1.6;
    border-top: 1px solid #dee2e6;
  }
  .footer-left, .footer-right {
    box-sizing: border-box;
  }
  .footer-left {
    flex: 1;
    min-width: 300px;
    margin-bottom: 2rem;
    padding-right: 2rem;
  }
  .footer-right {
    flex: 1;
    min-width: 300px;
  }
  .logo {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: #2c3e50;
  }
  .copyright {
    margin: 0 0 1.5rem 0;
    color: #6c757d;
    font-size: 0.9rem;
  }
  .footer-disclaimer p {
    font-size: 0.85rem;
    color: #6c757d;
    margin: 0;
    line-height: 1.5;
  }
  .footer-disclaimer a {
    color: #0066cc;
    text-decoration: none;
  }
  .footer-disclaimer a:hover {
    text-decoration: underline;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
  }
  .footer-nav li {
    margin-bottom: 0.75rem;
  }
  .footer-nav a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #0066cc;
    text-decoration: underline;
  }
  .footer-contacts {
    margin-bottom: 1.5rem;
  }
  .footer-contacts p {
    margin: 0 0 0.5rem 0;
  }
  .footer-contacts a {
    color: #0066cc;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    font-size: 0.85rem;
    color: #6c757d;
  }
  .footer-legal a {
    color: #6c757d;
    text-decoration: none;
  }
  .footer-legal a:hover {
    color: #2c3e50;
    text-decoration: underline;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      padding: 2rem 1rem;
    }
    .footer-left, .footer-right {
      padding-right: 0;
      width: 100%;
    }
    .footer-left {
      margin-bottom: 2rem;
    }
  }

.cookie-lv4 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: var(--surface-2);
        border-bottom: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
    }

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

    .cookie-lv4__inner span {
        color: var(--neutral-600);
        margin-left: 6px;
    }

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

    .cookie-lv4__actions a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--link);
        padding: 6px 10px;
    }

    .cookie-lv4__actions a[data-choice='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

.project-item--colored-v5 {
    padding: 56px 20px;
    background: var(--neutral-900);
    color: var(--neutral-0);
}

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

.project-item__card {
    border-radius: var(--radius-xl);
    padding: 20px 22px;
    background: rgba(15,23,42,0.98);
    border: 1px solid rgba(148,163,184,0.75);
}

.project-item__header {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: baseline;
}

.project-item__header h1 {
    margin: 0;
    font-size: clamp(24px,4vw,32px);
    color: var(--brand-contrast);
}

.project-item__tag {
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    font-size: 0.8rem;
}

.project-item__meta {
    margin: 8px 0 8px;
    font-size: 0.9rem;
    color: var(--neutral-300);
}

.project-item__desc {
    margin: 0;
    font-size: 0.95rem;
    color: var(--neutral-200);
    line-height: 1.7;
}

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

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

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

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

.team-card {
    background-color: var(--surface-1);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    text-align: center;
    transition: all var(--anim-duration) var(--anim-ease);
    border: 1px solid var(--border-on-surface);
}

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

.team-card__photo {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-card__info {
    padding: clamp(16px, 3vw, 28px);
}

.team-card__info h3 {
    margin-bottom: 0.5rem;
    color: var(--fg-on-surface);
}

.team-card__role {
    color: var(--brand);
    font-weight: 500;
    margin-bottom: var(--space-y);
}

.team-card__info p {
    margin: 0 auto;
    color: var(--fg-on-surface-light);
    font-size: 0.95rem;
}

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 100;
    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;
    letter-spacing: -0.5px;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--link-hover);
}

.primary-navigation {
    display: flex;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) 0;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover,
.nav-link:focus-visible {
    color: var(--link-hover);
    outline: none;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brand);
    transition: width var(--anim-duration) var(--anim-ease);
}
.nav-link:hover::after,
.nav-link:focus-visible::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    width: 44px;
    height: 44px;
    justify-content: center;
    align-items: center;
    border-radius: var(--radius-sm);
    background-color: var(--btn-ghost-bg);
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.menu-toggle:hover {
    background-color: var(--btn-ghost-bg-hover);
}
.menu-toggle-icon {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: 1px;
    position: relative;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.menu-toggle-icon::before,
.menu-toggle-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: 1px;
    left: 0;
    transition: transform var(--anim-duration) var(--anim-ease), top var(--anim-duration) var(--anim-ease);
}
.menu-toggle-icon::before {
    top: -8px;
}
.menu-toggle-icon::after {
    top: 8px;
}
.menu-toggle[aria-expanded="true"] .menu-toggle-icon {
    background-color: transparent;
}
.menu-toggle[aria-expanded="true"] .menu-toggle-icon::before {
    top: 0;
    transform: rotate(45deg);
}
.menu-toggle[aria-expanded="true"] .menu-toggle-icon::after {
    top: 0;
    transform: rotate(-45deg);
}

@media (max-width: 767px) {
    .menu-toggle {
        display: flex;
    }
    .primary-navigation {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
        transform: translateY(-100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        visibility: hidden;
        opacity: 0;
    }
    .primary-navigation[data-visible="true"] {
        transform: translateY(0);
        visibility: visible;
        opacity: 1;
    }
    .nav-list {
        flex-direction: column;
        gap: 0;
    }
    .nav-link {
        display: block;
        padding: var(--space-y) 0;
        border-bottom: 1px solid var(--border-on-surface-light);
    }
    .nav-link::after {
        display: none;
    }
    .nav-link:last-child {
        border-bottom: none;
    }
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 2.5rem 1.5rem;
    background-color: #f8f9fa;
    color: #333;
    font-family: sans-serif;
    line-height: 1.6;
    border-top: 1px solid #dee2e6;
  }
  .footer-left, .footer-right {
    box-sizing: border-box;
  }
  .footer-left {
    flex: 1;
    min-width: 300px;
    margin-bottom: 2rem;
    padding-right: 2rem;
  }
  .footer-right {
    flex: 1;
    min-width: 300px;
  }
  .logo {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: #2c3e50;
  }
  .copyright {
    margin: 0 0 1.5rem 0;
    color: #6c757d;
    font-size: 0.9rem;
  }
  .footer-disclaimer p {
    font-size: 0.85rem;
    color: #6c757d;
    margin: 0;
    line-height: 1.5;
  }
  .footer-disclaimer a {
    color: #0066cc;
    text-decoration: none;
  }
  .footer-disclaimer a:hover {
    text-decoration: underline;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
  }
  .footer-nav li {
    margin-bottom: 0.75rem;
  }
  .footer-nav a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #0066cc;
    text-decoration: underline;
  }
  .footer-contacts {
    margin-bottom: 1.5rem;
  }
  .footer-contacts p {
    margin: 0 0 0.5rem 0;
  }
  .footer-contacts a {
    color: #0066cc;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    font-size: 0.85rem;
    color: #6c757d;
  }
  .footer-legal a {
    color: #6c757d;
    text-decoration: none;
  }
  .footer-legal a:hover {
    color: #2c3e50;
    text-decoration: underline;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      padding: 2rem 1rem;
    }
    .footer-left, .footer-right {
      padding-right: 0;
      width: 100%;
    }
    .footer-left {
      margin-bottom: 2rem;
    }
  }

.cookie-lv4 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: var(--surface-2);
        border-bottom: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
    }

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

    .cookie-lv4__inner span {
        color: var(--neutral-600);
        margin-left: 6px;
    }

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

    .cookie-lv4__actions a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--link);
        padding: 6px 10px;
    }

    .cookie-lv4__actions a[data-choice='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

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

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

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

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

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

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

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

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

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

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

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

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

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 100;
    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;
    letter-spacing: -0.5px;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--link-hover);
}

.primary-navigation {
    display: flex;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) 0;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover,
.nav-link:focus-visible {
    color: var(--link-hover);
    outline: none;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brand);
    transition: width var(--anim-duration) var(--anim-ease);
}
.nav-link:hover::after,
.nav-link:focus-visible::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    width: 44px;
    height: 44px;
    justify-content: center;
    align-items: center;
    border-radius: var(--radius-sm);
    background-color: var(--btn-ghost-bg);
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.menu-toggle:hover {
    background-color: var(--btn-ghost-bg-hover);
}
.menu-toggle-icon {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: 1px;
    position: relative;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.menu-toggle-icon::before,
.menu-toggle-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: 1px;
    left: 0;
    transition: transform var(--anim-duration) var(--anim-ease), top var(--anim-duration) var(--anim-ease);
}
.menu-toggle-icon::before {
    top: -8px;
}
.menu-toggle-icon::after {
    top: 8px;
}
.menu-toggle[aria-expanded="true"] .menu-toggle-icon {
    background-color: transparent;
}
.menu-toggle[aria-expanded="true"] .menu-toggle-icon::before {
    top: 0;
    transform: rotate(45deg);
}
.menu-toggle[aria-expanded="true"] .menu-toggle-icon::after {
    top: 0;
    transform: rotate(-45deg);
}

@media (max-width: 767px) {
    .menu-toggle {
        display: flex;
    }
    .primary-navigation {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
        transform: translateY(-100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        visibility: hidden;
        opacity: 0;
    }
    .primary-navigation[data-visible="true"] {
        transform: translateY(0);
        visibility: visible;
        opacity: 1;
    }
    .nav-list {
        flex-direction: column;
        gap: 0;
    }
    .nav-link {
        display: block;
        padding: var(--space-y) 0;
        border-bottom: 1px solid var(--border-on-surface-light);
    }
    .nav-link::after {
        display: none;
    }
    .nav-link:last-child {
        border-bottom: none;
    }
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 2.5rem 1.5rem;
    background-color: #f8f9fa;
    color: #333;
    font-family: sans-serif;
    line-height: 1.6;
    border-top: 1px solid #dee2e6;
  }
  .footer-left, .footer-right {
    box-sizing: border-box;
  }
  .footer-left {
    flex: 1;
    min-width: 300px;
    margin-bottom: 2rem;
    padding-right: 2rem;
  }
  .footer-right {
    flex: 1;
    min-width: 300px;
  }
  .logo {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: #2c3e50;
  }
  .copyright {
    margin: 0 0 1.5rem 0;
    color: #6c757d;
    font-size: 0.9rem;
  }
  .footer-disclaimer p {
    font-size: 0.85rem;
    color: #6c757d;
    margin: 0;
    line-height: 1.5;
  }
  .footer-disclaimer a {
    color: #0066cc;
    text-decoration: none;
  }
  .footer-disclaimer a:hover {
    text-decoration: underline;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
  }
  .footer-nav li {
    margin-bottom: 0.75rem;
  }
  .footer-nav a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #0066cc;
    text-decoration: underline;
  }
  .footer-contacts {
    margin-bottom: 1.5rem;
  }
  .footer-contacts p {
    margin: 0 0 0.5rem 0;
  }
  .footer-contacts a {
    color: #0066cc;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    font-size: 0.85rem;
    color: #6c757d;
  }
  .footer-legal a {
    color: #6c757d;
    text-decoration: none;
  }
  .footer-legal a:hover {
    color: #2c3e50;
    text-decoration: underline;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      padding: 2rem 1rem;
    }
    .footer-left, .footer-right {
      padding-right: 0;
      width: 100%;
    }
    .footer-left {
      margin-bottom: 2rem;
    }
  }

.cookie-lv4 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: var(--surface-2);
        border-bottom: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
    }

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

    .cookie-lv4__inner span {
        color: var(--neutral-600);
        margin-left: 6px;
    }

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

    .cookie-lv4__actions a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--link);
        padding: 6px 10px;
    }

    .cookie-lv4__actions a[data-choice='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

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

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

    .identity-lv2__head {
        text-align: center;
        margin-bottom: 16px;
    }

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

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

    .identity-lv2__grid {
        display: grid;
        gap: var(--gap);
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }

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

    .identity-lv2__grid h3 {
        margin: 0;
    }

    .identity-lv2__grid strong {
        display: block;
        margin: 6px 0;
        color: var(--brand);
    }

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

    .identity-lv2__grid blockquote {
        margin: 0;
        padding: 8px 10px;
        border-left: 3px solid var(--brand);
        background: var(--surface-2);
        color: var(--neutral-800);
    }

.index-recommendations-board {
        background: radial-gradient(circle at 18% 20%, rgba(248, 225, 231, 0.35), transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(212, 165, 165, 0.35), transparent 55%),
        linear-gradient(135deg, rgba(58, 46, 61, 0.98), rgba(58, 46, 61, 0.88));
        color: var(--neutral-0);
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 40px);
        overflow: hidden;
    }

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

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

        transform: translateY(-18px);
    }

    .index-recommendations-board__eyebrow {
        margin: 0 0 10px;
        text-transform: uppercase;
        letter-spacing: 0.22em;
        font-size: 12px;
        color: rgba(255, 255, 255, 0.72);
    }

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

    .index-recommendations-board__mosaic {
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        gap: clamp(14px, 2.6vw, 22px);
    }

    .index-recommendations-board__tile {
        grid-column: span 4;
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.14);
        box-shadow: 0 22px 40px rgba(0, 0, 0, 0.28);
        padding: 18px 18px 16px;

        transform: translateY(26px);
        position: relative;
        overflow: hidden;
        backdrop-filter: blur(12px);
    }

    .index-recommendations-board__tile:nth-child(1),
    .index-recommendations-board__tile:nth-child(2) {
        grid-column: span 6;
    }

    .index-recommendations-board__tile::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(248, 225, 231, 0.25), transparent 60%);
        opacity: 0.9;
        pointer-events: none;
    }

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

    .index-recommendations-board__badge {
        padding: 6px 10px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.16);
        letter-spacing: 0.16em;
        text-transform: uppercase;
        font-size: 10px;
        color: rgba(255, 255, 255, 0.78);
        white-space: nowrap;
    }

    .index-recommendations-board__icon {
        width: 44px;
        height: 44px;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.16);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        flex: 0 0 auto;
    }

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

    .index-recommendations-board__why {
        margin: 0 0 10px;
        position: relative;
        z-index: 1;
        color: rgba(255, 255, 255, 0.72);
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 0.18em;
    }

    .index-recommendations-board__desc {
        margin: 0 0 14px;
        position: relative;
        z-index: 1;
        color: rgba(255, 255, 255, 0.84);
        font-size: 14px;
        line-height: 1.65;
    }

    .index-recommendations-board__cta {
        position: relative;
        z-index: 1;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        text-decoration: none;
        padding: 10px 14px;
        border-radius: 999px;
        background: var(--gradient-accent);
        color: var(--brand-contrast);
        font-weight: 900;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        font-size: 11px;
        transition: transform var(--anim-duration) var(--anim-ease);
    }

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

    .index-recommendations-board__cta:hover {
        transform: translateY(-2px);
    }

    @media (max-width: 960px) {
        .index-recommendations-board__tile {
            grid-column: span 6;
        }
    }

    @media (max-width: 620px) {
        .index-recommendations-board__tile {
            grid-column: span 12;
        }
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 100;
    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;
    letter-spacing: -0.5px;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--link-hover);
}

.primary-navigation {
    display: flex;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) 0;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover,
.nav-link:focus-visible {
    color: var(--link-hover);
    outline: none;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brand);
    transition: width var(--anim-duration) var(--anim-ease);
}
.nav-link:hover::after,
.nav-link:focus-visible::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    width: 44px;
    height: 44px;
    justify-content: center;
    align-items: center;
    border-radius: var(--radius-sm);
    background-color: var(--btn-ghost-bg);
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.menu-toggle:hover {
    background-color: var(--btn-ghost-bg-hover);
}
.menu-toggle-icon {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: 1px;
    position: relative;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.menu-toggle-icon::before,
.menu-toggle-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: 1px;
    left: 0;
    transition: transform var(--anim-duration) var(--anim-ease), top var(--anim-duration) var(--anim-ease);
}
.menu-toggle-icon::before {
    top: -8px;
}
.menu-toggle-icon::after {
    top: 8px;
}
.menu-toggle[aria-expanded="true"] .menu-toggle-icon {
    background-color: transparent;
}
.menu-toggle[aria-expanded="true"] .menu-toggle-icon::before {
    top: 0;
    transform: rotate(45deg);
}
.menu-toggle[aria-expanded="true"] .menu-toggle-icon::after {
    top: 0;
    transform: rotate(-45deg);
}

@media (max-width: 767px) {
    .menu-toggle {
        display: flex;
    }
    .primary-navigation {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
        transform: translateY(-100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        visibility: hidden;
        opacity: 0;
    }
    .primary-navigation[data-visible="true"] {
        transform: translateY(0);
        visibility: visible;
        opacity: 1;
    }
    .nav-list {
        flex-direction: column;
        gap: 0;
    }
    .nav-link {
        display: block;
        padding: var(--space-y) 0;
        border-bottom: 1px solid var(--border-on-surface-light);
    }
    .nav-link::after {
        display: none;
    }
    .nav-link:last-child {
        border-bottom: none;
    }
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 2.5rem 1.5rem;
    background-color: #f8f9fa;
    color: #333;
    font-family: sans-serif;
    line-height: 1.6;
    border-top: 1px solid #dee2e6;
  }
  .footer-left, .footer-right {
    box-sizing: border-box;
  }
  .footer-left {
    flex: 1;
    min-width: 300px;
    margin-bottom: 2rem;
    padding-right: 2rem;
  }
  .footer-right {
    flex: 1;
    min-width: 300px;
  }
  .logo {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: #2c3e50;
  }
  .copyright {
    margin: 0 0 1.5rem 0;
    color: #6c757d;
    font-size: 0.9rem;
  }
  .footer-disclaimer p {
    font-size: 0.85rem;
    color: #6c757d;
    margin: 0;
    line-height: 1.5;
  }
  .footer-disclaimer a {
    color: #0066cc;
    text-decoration: none;
  }
  .footer-disclaimer a:hover {
    text-decoration: underline;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
  }
  .footer-nav li {
    margin-bottom: 0.75rem;
  }
  .footer-nav a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #0066cc;
    text-decoration: underline;
  }
  .footer-contacts {
    margin-bottom: 1.5rem;
  }
  .footer-contacts p {
    margin: 0 0 0.5rem 0;
  }
  .footer-contacts a {
    color: #0066cc;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    font-size: 0.85rem;
    color: #6c757d;
  }
  .footer-legal a {
    color: #6c757d;
    text-decoration: none;
  }
  .footer-legal a:hover {
    color: #2c3e50;
    text-decoration: underline;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      padding: 2rem 1rem;
    }
    .footer-left, .footer-right {
      padding-right: 0;
      width: 100%;
    }
    .footer-left {
      margin-bottom: 2rem;
    }
  }

.cookie-lv4 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: var(--surface-2);
        border-bottom: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
    }

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

    .cookie-lv4__inner span {
        color: var(--neutral-600);
        margin-left: 6px;
    }

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

    .cookie-lv4__actions a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--link);
        padding: 6px 10px;
    }

    .cookie-lv4__actions a[data-choice='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

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

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

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

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

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

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

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

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

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

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

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

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

    .form-layout-e button:hover {
        opacity: 0.9;
    }

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

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

    .connect .connect__header {
        text-align: center;
        margin-bottom: clamp(48px, 7vw, 72px);
    }

    .connect .connect__header h2 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 0.75rem;
        color: var(--fg-on-surface-light);
    }

    .connect .connect__header p {
        font-size: clamp(16px, 2vw, 18px);
        color: var(--neutral-600);
        margin: 0;
    }

    .connect .connect__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(125px, 1fr));
        gap: clamp(24px, 4vw, 32px);
    }

    .connect .connect__item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: clamp(14px, 2.2vw, 18px);
        padding: clamp(24px, 4vw, 32px);
        background: var(--bg-page);
        border-radius: var(--radius-lg);
        text-decoration: none;
        color: inherit;
        transition: transform 0.3s;
        box-shadow: var(--shadow-lg);
        position: relative;
    }

    .connect .connect__item:not(:last-of-type):before {
        position: absolute;
        content: '';
        top: 50%;
        right: -32px;
        transform: translatey(-50%);
        width: 32px;
        height: 1px;
        background: var(--accent);
    }

    .connect .connect__item:hover {
        transform: translateY(-4px);
    }

    .connect .connect__icon {
        font-size: clamp(44px, 7.5vw, 68px);
        width: clamp(90px, 13vw, 130px);
        height: clamp(90px, 13vw, 130px);
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-accent);
        border-radius: 50%;
    }

    .connect .connect__icon {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
        animation: section-pulse-border 3s var(--anim-ease) infinite;
    }

    @keyframes section-pulse-border {
        0%, 100% {
            border-color: var(--border-on-surface);
            box-shadow: none;
        }
        50% {
            border-color: var(--brand);
            box-shadow: 0 0 0 3px var(--accent);
        }
    }

    .connect .connect__item span {
        font-size: clamp(16px, 2.5vw, 18px);
        font-weight: 600;
        color: var(--fg-on-page);
    }

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

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

    .contact-layout-a .section-head {
        margin-bottom: 18px;
        text-align: center;
    }

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

    .contact-layout-a .section-head p {
        margin: 10px auto 0;
        max-width: 70ch;
        opacity: .92;
    }

    .contact-layout-a .panel {
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .3);
        border-radius: var(--radius-lg);
        padding: 18px;
        backdrop-filter: blur(6px);
    }

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

    .contact-layout-a .list p {
        margin: 0 0 10px;
        display: grid;
        gap: 2px;
    }

    .contact-layout-a .list span {
        opacity: .94;
    }

    .contact-layout-a .social-row {
        margin-top: 14px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        align-items: center;
    }

    .contact-layout-a .social-row a {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        display: grid;
        place-items: center;
        text-decoration: none;
        color: var(--fg-on-primary);
        border: 1px solid rgba(255, 255, 255, .4);
    }

    .contact-layout-a .social-row a:hover {
        background: rgba(255, 255, 255, .15);
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 100;
    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;
    letter-spacing: -0.5px;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--link-hover);
}

.primary-navigation {
    display: flex;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) 0;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover,
.nav-link:focus-visible {
    color: var(--link-hover);
    outline: none;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brand);
    transition: width var(--anim-duration) var(--anim-ease);
}
.nav-link:hover::after,
.nav-link:focus-visible::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    width: 44px;
    height: 44px;
    justify-content: center;
    align-items: center;
    border-radius: var(--radius-sm);
    background-color: var(--btn-ghost-bg);
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.menu-toggle:hover {
    background-color: var(--btn-ghost-bg-hover);
}
.menu-toggle-icon {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: 1px;
    position: relative;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.menu-toggle-icon::before,
.menu-toggle-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: 1px;
    left: 0;
    transition: transform var(--anim-duration) var(--anim-ease), top var(--anim-duration) var(--anim-ease);
}
.menu-toggle-icon::before {
    top: -8px;
}
.menu-toggle-icon::after {
    top: 8px;
}
.menu-toggle[aria-expanded="true"] .menu-toggle-icon {
    background-color: transparent;
}
.menu-toggle[aria-expanded="true"] .menu-toggle-icon::before {
    top: 0;
    transform: rotate(45deg);
}
.menu-toggle[aria-expanded="true"] .menu-toggle-icon::after {
    top: 0;
    transform: rotate(-45deg);
}

@media (max-width: 767px) {
    .menu-toggle {
        display: flex;
    }
    .primary-navigation {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
        transform: translateY(-100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        visibility: hidden;
        opacity: 0;
    }
    .primary-navigation[data-visible="true"] {
        transform: translateY(0);
        visibility: visible;
        opacity: 1;
    }
    .nav-list {
        flex-direction: column;
        gap: 0;
    }
    .nav-link {
        display: block;
        padding: var(--space-y) 0;
        border-bottom: 1px solid var(--border-on-surface-light);
    }
    .nav-link::after {
        display: none;
    }
    .nav-link:last-child {
        border-bottom: none;
    }
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 2.5rem 1.5rem;
    background-color: #f8f9fa;
    color: #333;
    font-family: sans-serif;
    line-height: 1.6;
    border-top: 1px solid #dee2e6;
  }
  .footer-left, .footer-right {
    box-sizing: border-box;
  }
  .footer-left {
    flex: 1;
    min-width: 300px;
    margin-bottom: 2rem;
    padding-right: 2rem;
  }
  .footer-right {
    flex: 1;
    min-width: 300px;
  }
  .logo {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: #2c3e50;
  }
  .copyright {
    margin: 0 0 1.5rem 0;
    color: #6c757d;
    font-size: 0.9rem;
  }
  .footer-disclaimer p {
    font-size: 0.85rem;
    color: #6c757d;
    margin: 0;
    line-height: 1.5;
  }
  .footer-disclaimer a {
    color: #0066cc;
    text-decoration: none;
  }
  .footer-disclaimer a:hover {
    text-decoration: underline;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
  }
  .footer-nav li {
    margin-bottom: 0.75rem;
  }
  .footer-nav a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #0066cc;
    text-decoration: underline;
  }
  .footer-contacts {
    margin-bottom: 1.5rem;
  }
  .footer-contacts p {
    margin: 0 0 0.5rem 0;
  }
  .footer-contacts a {
    color: #0066cc;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    font-size: 0.85rem;
    color: #6c757d;
  }
  .footer-legal a {
    color: #6c757d;
    text-decoration: none;
  }
  .footer-legal a:hover {
    color: #2c3e50;
    text-decoration: underline;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      padding: 2rem 1rem;
    }
    .footer-left, .footer-right {
      padding-right: 0;
      width: 100%;
    }
    .footer-left {
      margin-bottom: 2rem;
    }
  }

.cookie-lv4 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: var(--surface-2);
        border-bottom: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
    }

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

    .cookie-lv4__inner span {
        color: var(--neutral-600);
        margin-left: 6px;
    }

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

    .cookie-lv4__actions a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--link);
        padding: 6px 10px;
    }

    .cookie-lv4__actions a[data-choice='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

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

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

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

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

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

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

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

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

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

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 100;
    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;
    letter-spacing: -0.5px;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--link-hover);
}

.primary-navigation {
    display: flex;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) 0;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover,
.nav-link:focus-visible {
    color: var(--link-hover);
    outline: none;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brand);
    transition: width var(--anim-duration) var(--anim-ease);
}
.nav-link:hover::after,
.nav-link:focus-visible::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    width: 44px;
    height: 44px;
    justify-content: center;
    align-items: center;
    border-radius: var(--radius-sm);
    background-color: var(--btn-ghost-bg);
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.menu-toggle:hover {
    background-color: var(--btn-ghost-bg-hover);
}
.menu-toggle-icon {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: 1px;
    position: relative;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.menu-toggle-icon::before,
.menu-toggle-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: 1px;
    left: 0;
    transition: transform var(--anim-duration) var(--anim-ease), top var(--anim-duration) var(--anim-ease);
}
.menu-toggle-icon::before {
    top: -8px;
}
.menu-toggle-icon::after {
    top: 8px;
}
.menu-toggle[aria-expanded="true"] .menu-toggle-icon {
    background-color: transparent;
}
.menu-toggle[aria-expanded="true"] .menu-toggle-icon::before {
    top: 0;
    transform: rotate(45deg);
}
.menu-toggle[aria-expanded="true"] .menu-toggle-icon::after {
    top: 0;
    transform: rotate(-45deg);
}

@media (max-width: 767px) {
    .menu-toggle {
        display: flex;
    }
    .primary-navigation {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
        transform: translateY(-100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        visibility: hidden;
        opacity: 0;
    }
    .primary-navigation[data-visible="true"] {
        transform: translateY(0);
        visibility: visible;
        opacity: 1;
    }
    .nav-list {
        flex-direction: column;
        gap: 0;
    }
    .nav-link {
        display: block;
        padding: var(--space-y) 0;
        border-bottom: 1px solid var(--border-on-surface-light);
    }
    .nav-link::after {
        display: none;
    }
    .nav-link:last-child {
        border-bottom: none;
    }
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 2.5rem 1.5rem;
    background-color: #f8f9fa;
    color: #333;
    font-family: sans-serif;
    line-height: 1.6;
    border-top: 1px solid #dee2e6;
  }
  .footer-left, .footer-right {
    box-sizing: border-box;
  }
  .footer-left {
    flex: 1;
    min-width: 300px;
    margin-bottom: 2rem;
    padding-right: 2rem;
  }
  .footer-right {
    flex: 1;
    min-width: 300px;
  }
  .logo {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: #2c3e50;
  }
  .copyright {
    margin: 0 0 1.5rem 0;
    color: #6c757d;
    font-size: 0.9rem;
  }
  .footer-disclaimer p {
    font-size: 0.85rem;
    color: #6c757d;
    margin: 0;
    line-height: 1.5;
  }
  .footer-disclaimer a {
    color: #0066cc;
    text-decoration: none;
  }
  .footer-disclaimer a:hover {
    text-decoration: underline;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
  }
  .footer-nav li {
    margin-bottom: 0.75rem;
  }
  .footer-nav a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #0066cc;
    text-decoration: underline;
  }
  .footer-contacts {
    margin-bottom: 1.5rem;
  }
  .footer-contacts p {
    margin: 0 0 0.5rem 0;
  }
  .footer-contacts a {
    color: #0066cc;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    font-size: 0.85rem;
    color: #6c757d;
  }
  .footer-legal a {
    color: #6c757d;
    text-decoration: none;
  }
  .footer-legal a:hover {
    color: #2c3e50;
    text-decoration: underline;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      padding: 2rem 1rem;
    }
    .footer-left, .footer-right {
      padding-right: 0;
      width: 100%;
    }
    .footer-left {
      margin-bottom: 2rem;
    }
  }

.cookie-lv4 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: var(--surface-2);
        border-bottom: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
    }

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

    .cookie-lv4__inner span {
        color: var(--neutral-600);
        margin-left: 6px;
    }

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

    .cookie-lv4__actions a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--link);
        padding: 6px 10px;
    }

    .cookie-lv4__actions a[data-choice='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

.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(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 100;
    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;
    letter-spacing: -0.5px;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--link-hover);
}

.primary-navigation {
    display: flex;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) 0;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover,
.nav-link:focus-visible {
    color: var(--link-hover);
    outline: none;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brand);
    transition: width var(--anim-duration) var(--anim-ease);
}
.nav-link:hover::after,
.nav-link:focus-visible::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    width: 44px;
    height: 44px;
    justify-content: center;
    align-items: center;
    border-radius: var(--radius-sm);
    background-color: var(--btn-ghost-bg);
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.menu-toggle:hover {
    background-color: var(--btn-ghost-bg-hover);
}
.menu-toggle-icon {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: 1px;
    position: relative;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.menu-toggle-icon::before,
.menu-toggle-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: 1px;
    left: 0;
    transition: transform var(--anim-duration) var(--anim-ease), top var(--anim-duration) var(--anim-ease);
}
.menu-toggle-icon::before {
    top: -8px;
}
.menu-toggle-icon::after {
    top: 8px;
}
.menu-toggle[aria-expanded="true"] .menu-toggle-icon {
    background-color: transparent;
}
.menu-toggle[aria-expanded="true"] .menu-toggle-icon::before {
    top: 0;
    transform: rotate(45deg);
}
.menu-toggle[aria-expanded="true"] .menu-toggle-icon::after {
    top: 0;
    transform: rotate(-45deg);
}

@media (max-width: 767px) {
    .menu-toggle {
        display: flex;
    }
    .primary-navigation {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
        transform: translateY(-100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        visibility: hidden;
        opacity: 0;
    }
    .primary-navigation[data-visible="true"] {
        transform: translateY(0);
        visibility: visible;
        opacity: 1;
    }
    .nav-list {
        flex-direction: column;
        gap: 0;
    }
    .nav-link {
        display: block;
        padding: var(--space-y) 0;
        border-bottom: 1px solid var(--border-on-surface-light);
    }
    .nav-link::after {
        display: none;
    }
    .nav-link:last-child {
        border-bottom: none;
    }
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 2.5rem 1.5rem;
    background-color: #f8f9fa;
    color: #333;
    font-family: sans-serif;
    line-height: 1.6;
    border-top: 1px solid #dee2e6;
  }
  .footer-left, .footer-right {
    box-sizing: border-box;
  }
  .footer-left {
    flex: 1;
    min-width: 300px;
    margin-bottom: 2rem;
    padding-right: 2rem;
  }
  .footer-right {
    flex: 1;
    min-width: 300px;
  }
  .logo {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: #2c3e50;
  }
  .copyright {
    margin: 0 0 1.5rem 0;
    color: #6c757d;
    font-size: 0.9rem;
  }
  .footer-disclaimer p {
    font-size: 0.85rem;
    color: #6c757d;
    margin: 0;
    line-height: 1.5;
  }
  .footer-disclaimer a {
    color: #0066cc;
    text-decoration: none;
  }
  .footer-disclaimer a:hover {
    text-decoration: underline;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
  }
  .footer-nav li {
    margin-bottom: 0.75rem;
  }
  .footer-nav a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #0066cc;
    text-decoration: underline;
  }
  .footer-contacts {
    margin-bottom: 1.5rem;
  }
  .footer-contacts p {
    margin: 0 0 0.5rem 0;
  }
  .footer-contacts a {
    color: #0066cc;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    font-size: 0.85rem;
    color: #6c757d;
  }
  .footer-legal a {
    color: #6c757d;
    text-decoration: none;
  }
  .footer-legal a:hover {
    color: #2c3e50;
    text-decoration: underline;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      padding: 2rem 1rem;
    }
    .footer-left, .footer-right {
      padding-right: 0;
      width: 100%;
    }
    .footer-left {
      margin-bottom: 2rem;
    }
  }

.cookie-lv4 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: var(--surface-2);
        border-bottom: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
    }

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

    .cookie-lv4__inner span {
        color: var(--neutral-600);
        margin-left: 6px;
    }

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

    .cookie-lv4__actions a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--link);
        padding: 6px 10px;
    }

    .cookie-lv4__actions a[data-choice='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

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

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

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

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

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

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 100;
    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;
    letter-spacing: -0.5px;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--link-hover);
}

.primary-navigation {
    display: flex;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) 0;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover,
.nav-link:focus-visible {
    color: var(--link-hover);
    outline: none;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brand);
    transition: width var(--anim-duration) var(--anim-ease);
}
.nav-link:hover::after,
.nav-link:focus-visible::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    width: 44px;
    height: 44px;
    justify-content: center;
    align-items: center;
    border-radius: var(--radius-sm);
    background-color: var(--btn-ghost-bg);
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.menu-toggle:hover {
    background-color: var(--btn-ghost-bg-hover);
}
.menu-toggle-icon {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: 1px;
    position: relative;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.menu-toggle-icon::before,
.menu-toggle-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: 1px;
    left: 0;
    transition: transform var(--anim-duration) var(--anim-ease), top var(--anim-duration) var(--anim-ease);
}
.menu-toggle-icon::before {
    top: -8px;
}
.menu-toggle-icon::after {
    top: 8px;
}
.menu-toggle[aria-expanded="true"] .menu-toggle-icon {
    background-color: transparent;
}
.menu-toggle[aria-expanded="true"] .menu-toggle-icon::before {
    top: 0;
    transform: rotate(45deg);
}
.menu-toggle[aria-expanded="true"] .menu-toggle-icon::after {
    top: 0;
    transform: rotate(-45deg);
}

@media (max-width: 767px) {
    .menu-toggle {
        display: flex;
    }
    .primary-navigation {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
        transform: translateY(-100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        visibility: hidden;
        opacity: 0;
    }
    .primary-navigation[data-visible="true"] {
        transform: translateY(0);
        visibility: visible;
        opacity: 1;
    }
    .nav-list {
        flex-direction: column;
        gap: 0;
    }
    .nav-link {
        display: block;
        padding: var(--space-y) 0;
        border-bottom: 1px solid var(--border-on-surface-light);
    }
    .nav-link::after {
        display: none;
    }
    .nav-link:last-child {
        border-bottom: none;
    }
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 2.5rem 1.5rem;
    background-color: #f8f9fa;
    color: #333;
    font-family: sans-serif;
    line-height: 1.6;
    border-top: 1px solid #dee2e6;
  }
  .footer-left, .footer-right {
    box-sizing: border-box;
  }
  .footer-left {
    flex: 1;
    min-width: 300px;
    margin-bottom: 2rem;
    padding-right: 2rem;
  }
  .footer-right {
    flex: 1;
    min-width: 300px;
  }
  .logo {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: #2c3e50;
  }
  .copyright {
    margin: 0 0 1.5rem 0;
    color: #6c757d;
    font-size: 0.9rem;
  }
  .footer-disclaimer p {
    font-size: 0.85rem;
    color: #6c757d;
    margin: 0;
    line-height: 1.5;
  }
  .footer-disclaimer a {
    color: #0066cc;
    text-decoration: none;
  }
  .footer-disclaimer a:hover {
    text-decoration: underline;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
  }
  .footer-nav li {
    margin-bottom: 0.75rem;
  }
  .footer-nav a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #0066cc;
    text-decoration: underline;
  }
  .footer-contacts {
    margin-bottom: 1.5rem;
  }
  .footer-contacts p {
    margin: 0 0 0.5rem 0;
  }
  .footer-contacts a {
    color: #0066cc;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    font-size: 0.85rem;
    color: #6c757d;
  }
  .footer-legal a {
    color: #6c757d;
    text-decoration: none;
  }
  .footer-legal a:hover {
    color: #2c3e50;
    text-decoration: underline;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      padding: 2rem 1rem;
    }
    .footer-left, .footer-right {
      padding-right: 0;
      width: 100%;
    }
    .footer-left {
      margin-bottom: 2rem;
    }
  }

.cookie-lv4 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: var(--surface-2);
        border-bottom: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
    }

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

    .cookie-lv4__inner span {
        color: var(--neutral-600);
        margin-left: 6px;
    }

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

    .cookie-lv4__actions a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--link);
        padding: 6px 10px;
    }

    .cookie-lv4__actions a[data-choice='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

.err-slab-a {
    padding: clamp(56px, 10vw, 110px) 20px;
    background: var(--gradient-hero);
    color: var(--fg-on-primary);
}

.err-slab-a .box {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.err-slab-a h1 {
    margin: 0;
    font-size: clamp(34px, 6vw, 58px);
}

.err-slab-a p {
    margin: 12px 0 0;
    opacity: .92;
}

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