:root {
  --font-family: "DM Sans", sans-serif;
  --font-size-base: 15.5px;
  --line-height-base: 1.89;

  --max-w: 1000px;
  --space-x: 1.08rem;
  --space-y: 1.5rem;
  --gap: 0.82rem;

  --radius-xl: 0.74rem;
  --radius-lg: 0.62rem;
  --radius-md: 0.41rem;
  --radius-sm: 0.22rem;

  --shadow-sm: 0 0px 1px rgba(0,0,0,0.06);
  --shadow-md: 0 2px 12px rgba(0,0,0,0.07);
  --shadow-lg: 0 6px 18px rgba(0,0,0,0.09);

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

  --brand: #8B5CF6;
  --brand-contrast: #FFFFFF;
  --accent: #60A5FA;
  --accent-contrast: #0F172A;

  --neutral-0: #FFFFFF;
  --neutral-100: #F1F5F9;
  --neutral-300: #CBD5E1;
  --neutral-600: #475569;
  --neutral-800: #1E293B;
  --neutral-900: #0F172A;

  --bg-page: #0A0A0F;
  --fg-on-page: #E2E8F0;

  --bg-alt: #111827;
  --fg-on-alt: #CBD5E1;

  --surface-1: #1A1B26;
  --surface-2: #24283B;
  --fg-on-surface: #E2E8F0;
  --border-on-surface: #334155;

  --surface-light: rgba(255, 255, 255, 0.03);
  --fg-on-surface-light: #CBD5E1;
  --border-on-surface-light: rgba(255, 255, 255, 0.08);

  --bg-primary: #8B5CF6;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #7C3AED;
  --ring: #8B5CF6;

  --bg-accent: rgba(96, 165, 250, 0.15);
  --fg-on-accent: #E0F2FE;
  --bg-accent-hover: #3B82F6;

  --link: #60A5FA;
  --link-hover: #38BDF8;

  --gradient-hero: linear-gradient(135deg, #0F172A 0%, #1E1B4B 50%, #312E81 100%);
  --gradient-accent: linear-gradient(90deg, #7C3AED 0%, #8B5CF6 50%, #A78BFA 100%);

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

.header {
  position: sticky;
  top: var(--space-y);
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 var(--space-x);
  margin-bottom: var(--space-y);
}
.header-container {
  max-width: var(--max-w);
  margin: 0 auto;
  background-color: var(--surface-1);
  color: var(--fg-on-surface);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: var(--space-y) var(--space-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
  border: 1px solid var(--border-on-surface-light);
}
.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
  color: var(--accent);
}
.nav {
  display: flex;
  align-items: center;
  gap: calc(var(--gap) * 2);
}
.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: var(--gap);
}
.nav-link {
  color: var(--fg-on-surface);
  text-decoration: none;
  padding: calc(var(--space-y) / 2) var(--space-x);
  border-radius: var(--radius-md);
  transition: all var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}
.nav-link:hover {
  background-color: var(--btn-ghost-bg-hover);
  color: var(--link-hover);
}
.button-cta {
  background-color: var(--bg-primary);
  color: var(--fg-on-primary);
  padding: calc(var(--space-y) / 1.5) var(--space-x);
  border-radius: var(--radius-lg);
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
  transition: background-color var(--anim-duration) var(--anim-ease);
  border: none;
  cursor: pointer;
  display: inline-block;
}
.button-cta:hover {
  background-color: var(--bg-primary-hover);
}
.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: calc(var(--space-y) / 2);
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
}
.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--fg-on-surface);
  border-radius: 1px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
  .burger {
    display: flex;
  }
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 80%;
    max-width: 300px;
    background-color: var(--surface-2);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: calc(var(--space-y) * 2) var(--space-x);
    gap: calc(var(--gap) * 2);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    z-index: 999;
    overflow-y: auto;
  }
  .nav.is-open {
    transform: translateX(0);
  }
  .nav-list {
    flex-direction: column;
    width: 100%;
    gap: calc(var(--gap) / 2);
  }
  .nav-link {
    width: 100%;
    display: block;
    padding: var(--space-y) var(--space-x);
  }
  .button-cta {
    width: 100%;
    text-align: center;
  }
  .burger[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    color: #333;
    font-family: system-ui, -apple-system, sans-serif;
    border-top: 1px solid #eaeaea;
  }
  .footer-brand {
    flex: 1;
    min-width: 250px;
  }
  .footer-brand .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.5rem;
  }
  .footer-brand .tagline {
    color: #718096;
    font-size: 0.95rem;
    line-height: 1.5;
  }
  .footer-right-stack {
    flex: 2;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #2b6cb0;
  }
  .footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.9rem;
  }
  .footer-legal-links a {
    text-decoration: none;
    color: #718096;
  }
  .footer-legal-links a:hover {
    text-decoration: underline;
    color: #4a5568;
  }
  .footer-bottom {
    flex-basis: 100%;
    margin-top: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eaeaea;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.9rem;
  }
  .footer-contacts {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    color: #4a5568;
  }
  .footer-contacts a {
    color: inherit;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    text-decoration: underline;
    color: #2b6cb0;
  }
  .footer-disclaimer {
    color: #a0aec0;
    text-align: right;
    line-height: 1.5;
    max-width: 600px;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      gap: 2rem;
      padding: 2rem 1rem 1rem;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 1rem;
    }
    .footer-bottom {
      flex-direction: column;
      align-items: flex-start;
      text-align: left;
      gap: 1rem;
    }
    .footer-disclaimer {
      text-align: left;
    }
  }

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

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

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

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

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

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

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

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

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

.hero-arc-v1 {
        padding: calc(var(--space-y) * 3) var(--space-x);
        background: var(--gradient-hero);
        color: var(--brand-contrast);
    }

    .hero-arc-v1 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns:1.1fr .9fr;
        gap: calc(var(--gap) * 2);
        align-items: center;
    }

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

    .hero-arc-v1 .subtitle {
        font-size: 1.05rem;
        opacity: .95;
        max-width: 48ch;
    }

    .hero-arc-v1 .desc {
        opacity: .84;
        max-width: 54ch;
    }

    .hero-arc-v1 .actions {
        display: flex;
        flex-wrap: wrap;
        gap: var(--gap);
        margin-top: calc(var(--space-y) * 1.1);
    }

    .hero-arc-v1 .actions a {
        padding: .7rem 1.1rem;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        text-decoration: none;
        font-weight: 700;
        box-shadow: var(--shadow-md);
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .hero-arc-v1 .actions a:hover {
        transform: translateY(-2px);
    }

    .hero-arc-v1 .media {
        order: 1;
        display: grid;
        gap: var(--gap);
    }

    .hero-arc-v1 img {
        width: 100%;
        aspect-ratio: 4/3;
        object-fit: cover;
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
    }

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

    .hero-arc-v1 .stats div {
        background: var(--chip-bg);
        border: 1px solid var(--btn-ghost-bg-hover);
        padding: .8rem;
        border-radius: var(--radius-md);
        backdrop-filter: blur(2px);
    }

    .hero-arc-v1 strong {
        display: block;
        font-size: 1.2rem;
    }

    .hero-arc-v1 span {
        font-size: .88rem;
        opacity: .9;
    }

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

        .hero-arc-v1 .media {
            order: 2;
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .touch-column .head {
        margin-bottom: 14px;
    }

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

    .touch-column .head p {
        margin: 10px 0 0;
        color: var(--neutral-600);
    }

    .touch-column .cols {
        display: grid;
        grid-template-columns: 1.2fr .8fr;
        gap: 12px;
    }

    .touch-column .left,
    .touch-column .right {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        padding: 12px;
    }

    .touch-column .list-title {
        margin: 0 0 8px;
        color: var(--neutral-600);
    }

    .touch-column article {
        padding: 8px 0;
        border-bottom: 1px solid var(--border-on-surface-light);
    }

    .touch-column article:last-child {
        border-bottom: 0;
    }

    .touch-column h3 {
        margin: 0 0 6px;
    }

    .touch-column article p {
        margin: 0 0 6px;
        color: var(--neutral-600);
    }

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

    .touch-column .right img {
        width: 100%;
        border-radius: var(--radius-md);
        border: 1px solid var(--border-on-surface-light);
    }

    .touch-column .right a {
        display: inline-block;
        margin-top: 10px;
        text-decoration: none;
        padding: 10px 14px;
        border-radius: var(--radius-md);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    @media (max-width: 860px) {
        .touch-column .cols {
            grid-template-columns: 1fr;
        }
    }

.header {
  position: sticky;
  top: var(--space-y);
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 var(--space-x);
  margin-bottom: var(--space-y);
}
.header-container {
  max-width: var(--max-w);
  margin: 0 auto;
  background-color: var(--surface-1);
  color: var(--fg-on-surface);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: var(--space-y) var(--space-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
  border: 1px solid var(--border-on-surface-light);
}
.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
  color: var(--accent);
}
.nav {
  display: flex;
  align-items: center;
  gap: calc(var(--gap) * 2);
}
.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: var(--gap);
}
.nav-link {
  color: var(--fg-on-surface);
  text-decoration: none;
  padding: calc(var(--space-y) / 2) var(--space-x);
  border-radius: var(--radius-md);
  transition: all var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}
.nav-link:hover {
  background-color: var(--btn-ghost-bg-hover);
  color: var(--link-hover);
}
.button-cta {
  background-color: var(--bg-primary);
  color: var(--fg-on-primary);
  padding: calc(var(--space-y) / 1.5) var(--space-x);
  border-radius: var(--radius-lg);
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
  transition: background-color var(--anim-duration) var(--anim-ease);
  border: none;
  cursor: pointer;
  display: inline-block;
}
.button-cta:hover {
  background-color: var(--bg-primary-hover);
}
.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: calc(var(--space-y) / 2);
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
}
.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--fg-on-surface);
  border-radius: 1px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
  .burger {
    display: flex;
  }
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 80%;
    max-width: 300px;
    background-color: var(--surface-2);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: calc(var(--space-y) * 2) var(--space-x);
    gap: calc(var(--gap) * 2);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    z-index: 999;
    overflow-y: auto;
  }
  .nav.is-open {
    transform: translateX(0);
  }
  .nav-list {
    flex-direction: column;
    width: 100%;
    gap: calc(var(--gap) / 2);
  }
  .nav-link {
    width: 100%;
    display: block;
    padding: var(--space-y) var(--space-x);
  }
  .button-cta {
    width: 100%;
    text-align: center;
  }
  .burger[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    color: #333;
    font-family: system-ui, -apple-system, sans-serif;
    border-top: 1px solid #eaeaea;
  }
  .footer-brand {
    flex: 1;
    min-width: 250px;
  }
  .footer-brand .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.5rem;
  }
  .footer-brand .tagline {
    color: #718096;
    font-size: 0.95rem;
    line-height: 1.5;
  }
  .footer-right-stack {
    flex: 2;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #2b6cb0;
  }
  .footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.9rem;
  }
  .footer-legal-links a {
    text-decoration: none;
    color: #718096;
  }
  .footer-legal-links a:hover {
    text-decoration: underline;
    color: #4a5568;
  }
  .footer-bottom {
    flex-basis: 100%;
    margin-top: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eaeaea;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.9rem;
  }
  .footer-contacts {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    color: #4a5568;
  }
  .footer-contacts a {
    color: inherit;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    text-decoration: underline;
    color: #2b6cb0;
  }
  .footer-disclaimer {
    color: #a0aec0;
    text-align: right;
    line-height: 1.5;
    max-width: 600px;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      gap: 2rem;
      padding: 2rem 1rem 1rem;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 1rem;
    }
    .footer-bottom {
      flex-direction: column;
      align-items: flex-start;
      text-align: left;
      gap: 1rem;
    }
    .footer-disclaimer {
      text-align: left;
    }
  }

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

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

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

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

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

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

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

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

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

.story-banner-c1 {
        padding: clamp(3.6rem, 8vw, 6rem) var(--space-x);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

    .story-banner-c1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        gap: 1.4rem;
        flex-wrap: wrap;
        align-items: center;
    }

    .story-banner-c1__copy, .story-banner-c1__media {
        flex: 1 1 20rem;
    }

    .story-banner-c1__copy p:first-child {
        margin: 0;
        color: rgba(255, 255, 255, .76);
        text-transform: uppercase;
        letter-spacing: .1em;
        font-size: .82rem;
    }

    .story-banner-c1__copy h2 {
        margin: .55rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .story-banner-c1__copy strong {
        display: block;
        margin-top: .75rem;
    }

    .story-banner-c1__copy p {
        color: rgba(255, 255, 255, .84);
    }

    .story-banner-c1__media img {
        display: block;
        width: 100%;
        border-radius: var(--radius-xl);
        border: 1px solid rgba(255, 255, 255, .18);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.identity-cv5 {
        padding: clamp(52px, 8vw, 96px) clamp(16px, 4vw, 40px);
        background: linear-gradient(145deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
    }

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

    .identity-cv5__hero {
        position: relative;
        border-radius: var(--radius-xl);
        overflow: hidden;
        min-height: 220px;
    }

    .identity-cv5__hero img {
        width: 100%;
        height: 100%;
        min-height: 220px;
        object-fit: cover;
        display: block;
    }

    .identity-cv5__overlay {
        position: absolute;
        inset: auto 0 0 0;
        padding: var(--space-y) var(--space-x);
        background: linear-gradient(180deg, rgba(0, 0, 0, 0), var(--overlay));
    }

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

    .identity-cv5__overlay span {
        opacity: .92;
    }

    .identity-cv5__grid {
        margin-top: 14px;
        display: grid;
        grid-template-columns: 1.2fr .8fr;
        gap: var(--gap);
    }

    .identity-cv5__grid p {
        margin: 0 0 10px;
    }

    .identity-cv5__grid ul {
        margin: 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 8px;
    }

    .identity-cv5__grid li {
        background: rgba(255, 255, 255, 0.16);
        border: 1px solid rgba(255, 255, 255, 0.24);
        border-radius: var(--radius-md);
        padding: 10px 12px;
    }

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

.header {
  position: sticky;
  top: var(--space-y);
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 var(--space-x);
  margin-bottom: var(--space-y);
}
.header-container {
  max-width: var(--max-w);
  margin: 0 auto;
  background-color: var(--surface-1);
  color: var(--fg-on-surface);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: var(--space-y) var(--space-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
  border: 1px solid var(--border-on-surface-light);
}
.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
  color: var(--accent);
}
.nav {
  display: flex;
  align-items: center;
  gap: calc(var(--gap) * 2);
}
.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: var(--gap);
}
.nav-link {
  color: var(--fg-on-surface);
  text-decoration: none;
  padding: calc(var(--space-y) / 2) var(--space-x);
  border-radius: var(--radius-md);
  transition: all var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}
.nav-link:hover {
  background-color: var(--btn-ghost-bg-hover);
  color: var(--link-hover);
}
.button-cta {
  background-color: var(--bg-primary);
  color: var(--fg-on-primary);
  padding: calc(var(--space-y) / 1.5) var(--space-x);
  border-radius: var(--radius-lg);
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
  transition: background-color var(--anim-duration) var(--anim-ease);
  border: none;
  cursor: pointer;
  display: inline-block;
}
.button-cta:hover {
  background-color: var(--bg-primary-hover);
}
.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: calc(var(--space-y) / 2);
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
}
.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--fg-on-surface);
  border-radius: 1px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
  .burger {
    display: flex;
  }
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 80%;
    max-width: 300px;
    background-color: var(--surface-2);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: calc(var(--space-y) * 2) var(--space-x);
    gap: calc(var(--gap) * 2);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    z-index: 999;
    overflow-y: auto;
  }
  .nav.is-open {
    transform: translateX(0);
  }
  .nav-list {
    flex-direction: column;
    width: 100%;
    gap: calc(var(--gap) / 2);
  }
  .nav-link {
    width: 100%;
    display: block;
    padding: var(--space-y) var(--space-x);
  }
  .button-cta {
    width: 100%;
    text-align: center;
  }
  .burger[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    color: #333;
    font-family: system-ui, -apple-system, sans-serif;
    border-top: 1px solid #eaeaea;
  }
  .footer-brand {
    flex: 1;
    min-width: 250px;
  }
  .footer-brand .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.5rem;
  }
  .footer-brand .tagline {
    color: #718096;
    font-size: 0.95rem;
    line-height: 1.5;
  }
  .footer-right-stack {
    flex: 2;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #2b6cb0;
  }
  .footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.9rem;
  }
  .footer-legal-links a {
    text-decoration: none;
    color: #718096;
  }
  .footer-legal-links a:hover {
    text-decoration: underline;
    color: #4a5568;
  }
  .footer-bottom {
    flex-basis: 100%;
    margin-top: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eaeaea;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.9rem;
  }
  .footer-contacts {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    color: #4a5568;
  }
  .footer-contacts a {
    color: inherit;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    text-decoration: underline;
    color: #2b6cb0;
  }
  .footer-disclaimer {
    color: #a0aec0;
    text-align: right;
    line-height: 1.5;
    max-width: 600px;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      gap: 2rem;
      padding: 2rem 1rem 1rem;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 1rem;
    }
    .footer-bottom {
      flex-direction: column;
      align-items: flex-start;
      text-align: left;
      gap: 1rem;
    }
    .footer-disclaimer {
      text-align: left;
    }
  }

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

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

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

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

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

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

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

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

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

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

    .hiw-canvas-l8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        gap: 1.4rem;
        align-items: start;
        flex-wrap: wrap;
    }

    .hiw-canvas-l8__media {
        flex: 1 1 18rem;
        order: calc(3 - var(--random-number));
    }

    .hiw-canvas-l8__content {
        flex: 1 1 22rem;
        order: var(--random-number);
    }

    .hiw-canvas-l8__media img {
        display: block;
        width: 100%;
        border-radius: var(--radius-xl);
        border: 1px solid var(--border-on-surface-light);
    }

    .hiw-canvas-l8__content p:first-child {
        margin: 0;
        color: var(--neutral-600);
    }

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

    .hiw-canvas-l8__stack p {
        margin: .8rem 0 0;
        color: var(--neutral-600);
    }

    .hiw-canvas-l8__notes {
        margin-top: 1rem;
        display: flex;
        gap: .65rem;
        flex-wrap: wrap;
        align-items: center;
    }

    .hiw-canvas-l8__notes strong {
        color: var(--brand);
        margin-right: .25rem;
    }

    .hiw-canvas-l8__notes span {
        display: inline-flex;
        padding: .55rem .8rem;
        border-radius: 999px;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
    }

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

    .features-struct-v3 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: calc(var(--gap) * 2);
        align-items: start;
    }

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

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

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

    .features-struct-v3 article {
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        padding: 1.2rem;
        display: grid;
        gap: .6rem;
        transition: transform var(--anim-duration) var(--anim-ease);
    }
    .features-struct-v3 article:hover {
        transform: translateY(-4px);
        border-color: var(--brand);
    }

    .features-struct-v3 article strong {
        color: var(--brand);
        font-size: 0.9rem;
        letter-spacing: 1px;
    }

    .features-struct-v3 article h3 {
        color: var(--fg-on-surface);
        font-size: 1.2rem;
    }

    .features-struct-v3 article p {
        color: var(--neutral-300);
        line-height: var(--line-height-base);
        font-size: 0.95rem;
    }

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

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

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

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

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

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

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

    .features-struct-v3 .timeline {
        display: grid;
        gap: 1rem;
    }

    .features-struct-v3 .timeline article {
        position: relative;
        padding-left: 1.8rem;
    }

    .features-struct-v3 .timeline article::before {
        content: "";
        position: absolute;
        left: 0;
        top: 1.5rem;
        width: .7rem;
        height: .7rem;
        background: var(--brand);
        border-radius: 50%;
        box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.2);
    }

    .features-struct-v3 .side img, .features-struct-v3 .media img {
        display: block;
        width: 100%;
        height: auto;
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        border: 1px solid var(--border-on-surface);
    }

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

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

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

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

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

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

    @media (max-width: 900px) {
        .features-struct-v3 .shell {
            grid-template-columns: 1fr;
            gap: calc(var(--gap) * 2);
        }
        .features-struct-v3 .grid, .features-struct-v3 .cards {
            grid-template-columns:1fr 1fr
        }

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

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

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

    .values-ladder-l4__wrap {
        max-width: 56rem;
        margin: 0 auto;
    }

    .values-ladder-l4__head {
        text-align: center;
        margin-bottom: 1.1rem;
    }

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

    .values-ladder-l4__head p {
        margin: .65rem auto 0;
        max-width: 40rem;
        color: var(--neutral-600);
    }

    .values-ladder-l4__rows {
        display: grid;
        gap: .8rem;
    }

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

    .values-ladder-l4__step {
        display: grid;
        place-items: center;
        width: 3rem;
        height: 3rem;
        border-radius: var(--radius-md);
        background: var(--surface-2);
        color: var(--brand);
    }

    .values-ladder-l4__rows h3 {
        margin: 0;
    }

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

    .values-ladder-l4__rows span {
        display: block;
        margin-top: .55rem;
        color: var(--neutral-800);
    }

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

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

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

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

    .social-c1__sub {
        margin: 10px 0 0;
        max-width: 70ch;
        color: rgba(255, 255, 255, .9);
    }

    .social-c1__band {
        margin-top: 18px;
        border-radius: var(--radius-xl);
        border: 1px solid rgba(255, 255, 255, 0.22);
        background: rgba(255, 255, 255, 0.10);
        box-shadow: var(--shadow-lg);
        overflow: hidden;
        position: relative;
    }

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

    .social-c1__band::before {
        left: 0;
        background: linear-gradient(90deg, rgba(139, 92, 246, 1), rgba(139, 92, 246, 0));
    }

    .social-c1__band::after {
        right: 0;
        background: linear-gradient(270deg, rgba(139, 92, 246, 1), rgba(139, 92, 246, 0));
    }

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

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

    .social-c1__logo {
        width: 140px;
        height: 86px;
        border-radius: var(--radius-lg);
        background: rgba(0, 0, 0, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.16);
        display: grid;
        place-items: center;
        flex: 0 0 auto;
    }

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

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

    .social-c1__stat {
        grid-column: span 4;
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, 0.10);
        border: 1px solid rgba(255, 255, 255, 0.18);
        box-shadow: var(--shadow-md);
        padding: 14px 16px;
    }

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

    .social-c1__lbl {
        margin-top: 6px;
        color: rgba(255, 255, 255, .9);
    }

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

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

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

.header {
  position: sticky;
  top: var(--space-y);
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 var(--space-x);
  margin-bottom: var(--space-y);
}
.header-container {
  max-width: var(--max-w);
  margin: 0 auto;
  background-color: var(--surface-1);
  color: var(--fg-on-surface);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: var(--space-y) var(--space-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
  border: 1px solid var(--border-on-surface-light);
}
.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
  color: var(--accent);
}
.nav {
  display: flex;
  align-items: center;
  gap: calc(var(--gap) * 2);
}
.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: var(--gap);
}
.nav-link {
  color: var(--fg-on-surface);
  text-decoration: none;
  padding: calc(var(--space-y) / 2) var(--space-x);
  border-radius: var(--radius-md);
  transition: all var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}
.nav-link:hover {
  background-color: var(--btn-ghost-bg-hover);
  color: var(--link-hover);
}
.button-cta {
  background-color: var(--bg-primary);
  color: var(--fg-on-primary);
  padding: calc(var(--space-y) / 1.5) var(--space-x);
  border-radius: var(--radius-lg);
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
  transition: background-color var(--anim-duration) var(--anim-ease);
  border: none;
  cursor: pointer;
  display: inline-block;
}
.button-cta:hover {
  background-color: var(--bg-primary-hover);
}
.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: calc(var(--space-y) / 2);
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
}
.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--fg-on-surface);
  border-radius: 1px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
  .burger {
    display: flex;
  }
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 80%;
    max-width: 300px;
    background-color: var(--surface-2);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: calc(var(--space-y) * 2) var(--space-x);
    gap: calc(var(--gap) * 2);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    z-index: 999;
    overflow-y: auto;
  }
  .nav.is-open {
    transform: translateX(0);
  }
  .nav-list {
    flex-direction: column;
    width: 100%;
    gap: calc(var(--gap) / 2);
  }
  .nav-link {
    width: 100%;
    display: block;
    padding: var(--space-y) var(--space-x);
  }
  .button-cta {
    width: 100%;
    text-align: center;
  }
  .burger[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    color: #333;
    font-family: system-ui, -apple-system, sans-serif;
    border-top: 1px solid #eaeaea;
  }
  .footer-brand {
    flex: 1;
    min-width: 250px;
  }
  .footer-brand .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.5rem;
  }
  .footer-brand .tagline {
    color: #718096;
    font-size: 0.95rem;
    line-height: 1.5;
  }
  .footer-right-stack {
    flex: 2;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #2b6cb0;
  }
  .footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.9rem;
  }
  .footer-legal-links a {
    text-decoration: none;
    color: #718096;
  }
  .footer-legal-links a:hover {
    text-decoration: underline;
    color: #4a5568;
  }
  .footer-bottom {
    flex-basis: 100%;
    margin-top: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eaeaea;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.9rem;
  }
  .footer-contacts {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    color: #4a5568;
  }
  .footer-contacts a {
    color: inherit;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    text-decoration: underline;
    color: #2b6cb0;
  }
  .footer-disclaimer {
    color: #a0aec0;
    text-align: right;
    line-height: 1.5;
    max-width: 600px;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      gap: 2rem;
      padding: 2rem 1rem 1rem;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 1rem;
    }
    .footer-bottom {
      flex-direction: column;
      align-items: flex-start;
      text-align: left;
      gap: 1rem;
    }
    .footer-disclaimer {
      text-align: left;
    }
  }

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

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

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

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

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

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

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

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

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

.map-poster-c7 {
        padding: clamp(3.5rem, 8vw, 6rem) var(--space-x);
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
    }

    .map-poster-c7__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        gap: 1.25rem;
        flex-wrap: wrap;
        align-items: start;
    }

    .map-poster-c7__copy {
        flex: 1 1 18rem;
    }

    .map-poster-c7__embed {
        flex: 1 1 24rem;
    }

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

    .map-poster-c7__copy h2 {
        margin: .55rem 0 0;
        font-size: clamp(2rem, 4vw, 3.2rem);
    }

    .map-poster-c7__details {
        margin-top: 1rem;
        display: grid;
        gap: .75rem;
    }

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

    .map-poster-c7__details span {
        display: block;
        margin-top: .35rem;
        color: rgba(255, 255, 255, .84);
    }

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

.form-fresh-v6 {
        padding: calc(var(--space-y) * 2.9) var(--space-x);
        background: var(--surface-2);
        color: var(--fg-on-surface);
    }

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

    .form-fresh-v6 h2 {
        margin: 0;
        font-size: clamp(1.8rem, 3.2vw, 2.4rem);
    }

    .form-fresh-v6 form {
        display: grid;
        gap: .85rem;
    }

    .form-fresh-v6 .rows {
        display: grid;
        gap: .6rem;
    }

    .form-fresh-v6 label {
        display: grid;
        grid-template-columns:180px 1fr;
        gap: .8rem;
        align-items: center;
        padding: .6rem .8rem;
        border-radius: var(--radius-sm);
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
    }

    .form-fresh-v6 b {
        font-size: .9rem;
    }

    .form-fresh-v6 input {
        padding: .58rem .7rem;
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-sm);
        font: inherit;
        background: var(--surface-2);
        color: var(--fg-on-surface);
    }

    .form-fresh-v6 button {
        justify-self: start;
        padding: .68rem 1rem;
        border: 0;
        border-radius: var(--radius-sm);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 700;
        cursor: pointer;
        transition: background-color var(--anim-duration) var(--anim-ease);
    }
    .form-fresh-v6 button:hover {
        background: var(--bg-primary-hover);
    }

    @media (max-width: 720px) {
        .form-fresh-v6 label {
            grid-template-columns:1fr;
        }
    }

.contact-layout-d {
        padding: clamp(56px, 8vw, 94px) clamp(16px, 4vw, 34px);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    .contact-layout-d .wrap {
        max-width: 860px;
        margin: 0 auto;
    }

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

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

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

    .contact-layout-d .box {
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, .22);
        padding: 18px;
        background: rgba(255, 255, 255, .05);
    }

    .contact-layout-d ul {
        margin: 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 10px;
    }

    .contact-layout-d li {
        display: grid;
        gap: 4px;
        padding: 10px 12px;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .06);
    }

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

    .contact-layout-d .social a {
        text-decoration: none;
        color: var(--neutral-0);
        border: 1px solid rgba(255, 255, 255, .28);
        padding: 6px 10px;
        border-radius: 999px;
    }

.header {
  position: sticky;
  top: var(--space-y);
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 var(--space-x);
  margin-bottom: var(--space-y);
}
.header-container {
  max-width: var(--max-w);
  margin: 0 auto;
  background-color: var(--surface-1);
  color: var(--fg-on-surface);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: var(--space-y) var(--space-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
  border: 1px solid var(--border-on-surface-light);
}
.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
  color: var(--accent);
}
.nav {
  display: flex;
  align-items: center;
  gap: calc(var(--gap) * 2);
}
.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: var(--gap);
}
.nav-link {
  color: var(--fg-on-surface);
  text-decoration: none;
  padding: calc(var(--space-y) / 2) var(--space-x);
  border-radius: var(--radius-md);
  transition: all var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}
.nav-link:hover {
  background-color: var(--btn-ghost-bg-hover);
  color: var(--link-hover);
}
.button-cta {
  background-color: var(--bg-primary);
  color: var(--fg-on-primary);
  padding: calc(var(--space-y) / 1.5) var(--space-x);
  border-radius: var(--radius-lg);
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
  transition: background-color var(--anim-duration) var(--anim-ease);
  border: none;
  cursor: pointer;
  display: inline-block;
}
.button-cta:hover {
  background-color: var(--bg-primary-hover);
}
.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: calc(var(--space-y) / 2);
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
}
.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--fg-on-surface);
  border-radius: 1px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
  .burger {
    display: flex;
  }
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 80%;
    max-width: 300px;
    background-color: var(--surface-2);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: calc(var(--space-y) * 2) var(--space-x);
    gap: calc(var(--gap) * 2);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    z-index: 999;
    overflow-y: auto;
  }
  .nav.is-open {
    transform: translateX(0);
  }
  .nav-list {
    flex-direction: column;
    width: 100%;
    gap: calc(var(--gap) / 2);
  }
  .nav-link {
    width: 100%;
    display: block;
    padding: var(--space-y) var(--space-x);
  }
  .button-cta {
    width: 100%;
    text-align: center;
  }
  .burger[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    color: #333;
    font-family: system-ui, -apple-system, sans-serif;
    border-top: 1px solid #eaeaea;
  }
  .footer-brand {
    flex: 1;
    min-width: 250px;
  }
  .footer-brand .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.5rem;
  }
  .footer-brand .tagline {
    color: #718096;
    font-size: 0.95rem;
    line-height: 1.5;
  }
  .footer-right-stack {
    flex: 2;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #2b6cb0;
  }
  .footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.9rem;
  }
  .footer-legal-links a {
    text-decoration: none;
    color: #718096;
  }
  .footer-legal-links a:hover {
    text-decoration: underline;
    color: #4a5568;
  }
  .footer-bottom {
    flex-basis: 100%;
    margin-top: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eaeaea;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.9rem;
  }
  .footer-contacts {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    color: #4a5568;
  }
  .footer-contacts a {
    color: inherit;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    text-decoration: underline;
    color: #2b6cb0;
  }
  .footer-disclaimer {
    color: #a0aec0;
    text-align: right;
    line-height: 1.5;
    max-width: 600px;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      gap: 2rem;
      padding: 2rem 1rem 1rem;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 1rem;
    }
    .footer-bottom {
      flex-direction: column;
      align-items: flex-start;
      text-align: left;
      gap: 1rem;
    }
    .footer-disclaimer {
      text-align: left;
    }
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .terms-layout-b p, .terms-layout-b li {
        color: var(--neutral-600);
        margin-top: 0;
    }

.header {
  position: sticky;
  top: var(--space-y);
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 var(--space-x);
  margin-bottom: var(--space-y);
}
.header-container {
  max-width: var(--max-w);
  margin: 0 auto;
  background-color: var(--surface-1);
  color: var(--fg-on-surface);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: var(--space-y) var(--space-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
  border: 1px solid var(--border-on-surface-light);
}
.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
  color: var(--accent);
}
.nav {
  display: flex;
  align-items: center;
  gap: calc(var(--gap) * 2);
}
.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: var(--gap);
}
.nav-link {
  color: var(--fg-on-surface);
  text-decoration: none;
  padding: calc(var(--space-y) / 2) var(--space-x);
  border-radius: var(--radius-md);
  transition: all var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}
.nav-link:hover {
  background-color: var(--btn-ghost-bg-hover);
  color: var(--link-hover);
}
.button-cta {
  background-color: var(--bg-primary);
  color: var(--fg-on-primary);
  padding: calc(var(--space-y) / 1.5) var(--space-x);
  border-radius: var(--radius-lg);
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
  transition: background-color var(--anim-duration) var(--anim-ease);
  border: none;
  cursor: pointer;
  display: inline-block;
}
.button-cta:hover {
  background-color: var(--bg-primary-hover);
}
.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: calc(var(--space-y) / 2);
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
}
.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--fg-on-surface);
  border-radius: 1px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
  .burger {
    display: flex;
  }
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 80%;
    max-width: 300px;
    background-color: var(--surface-2);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: calc(var(--space-y) * 2) var(--space-x);
    gap: calc(var(--gap) * 2);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    z-index: 999;
    overflow-y: auto;
  }
  .nav.is-open {
    transform: translateX(0);
  }
  .nav-list {
    flex-direction: column;
    width: 100%;
    gap: calc(var(--gap) / 2);
  }
  .nav-link {
    width: 100%;
    display: block;
    padding: var(--space-y) var(--space-x);
  }
  .button-cta {
    width: 100%;
    text-align: center;
  }
  .burger[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    color: #333;
    font-family: system-ui, -apple-system, sans-serif;
    border-top: 1px solid #eaeaea;
  }
  .footer-brand {
    flex: 1;
    min-width: 250px;
  }
  .footer-brand .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.5rem;
  }
  .footer-brand .tagline {
    color: #718096;
    font-size: 0.95rem;
    line-height: 1.5;
  }
  .footer-right-stack {
    flex: 2;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #2b6cb0;
  }
  .footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.9rem;
  }
  .footer-legal-links a {
    text-decoration: none;
    color: #718096;
  }
  .footer-legal-links a:hover {
    text-decoration: underline;
    color: #4a5568;
  }
  .footer-bottom {
    flex-basis: 100%;
    margin-top: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eaeaea;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.9rem;
  }
  .footer-contacts {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    color: #4a5568;
  }
  .footer-contacts a {
    color: inherit;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    text-decoration: underline;
    color: #2b6cb0;
  }
  .footer-disclaimer {
    color: #a0aec0;
    text-align: right;
    line-height: 1.5;
    max-width: 600px;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      gap: 2rem;
      padding: 2rem 1rem 1rem;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 1rem;
    }
    .footer-bottom {
      flex-direction: column;
      align-items: flex-start;
      text-align: left;
      gap: 1rem;
    }
    .footer-disclaimer {
      text-align: left;
    }
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.header {
  position: sticky;
  top: var(--space-y);
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 var(--space-x);
  margin-bottom: var(--space-y);
}
.header-container {
  max-width: var(--max-w);
  margin: 0 auto;
  background-color: var(--surface-1);
  color: var(--fg-on-surface);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: var(--space-y) var(--space-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
  border: 1px solid var(--border-on-surface-light);
}
.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
  color: var(--accent);
}
.nav {
  display: flex;
  align-items: center;
  gap: calc(var(--gap) * 2);
}
.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: var(--gap);
}
.nav-link {
  color: var(--fg-on-surface);
  text-decoration: none;
  padding: calc(var(--space-y) / 2) var(--space-x);
  border-radius: var(--radius-md);
  transition: all var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}
.nav-link:hover {
  background-color: var(--btn-ghost-bg-hover);
  color: var(--link-hover);
}
.button-cta {
  background-color: var(--bg-primary);
  color: var(--fg-on-primary);
  padding: calc(var(--space-y) / 1.5) var(--space-x);
  border-radius: var(--radius-lg);
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
  transition: background-color var(--anim-duration) var(--anim-ease);
  border: none;
  cursor: pointer;
  display: inline-block;
}
.button-cta:hover {
  background-color: var(--bg-primary-hover);
}
.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: calc(var(--space-y) / 2);
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
}
.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--fg-on-surface);
  border-radius: 1px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
  .burger {
    display: flex;
  }
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 80%;
    max-width: 300px;
    background-color: var(--surface-2);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: calc(var(--space-y) * 2) var(--space-x);
    gap: calc(var(--gap) * 2);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    z-index: 999;
    overflow-y: auto;
  }
  .nav.is-open {
    transform: translateX(0);
  }
  .nav-list {
    flex-direction: column;
    width: 100%;
    gap: calc(var(--gap) / 2);
  }
  .nav-link {
    width: 100%;
    display: block;
    padding: var(--space-y) var(--space-x);
  }
  .button-cta {
    width: 100%;
    text-align: center;
  }
  .burger[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    color: #333;
    font-family: system-ui, -apple-system, sans-serif;
    border-top: 1px solid #eaeaea;
  }
  .footer-brand {
    flex: 1;
    min-width: 250px;
  }
  .footer-brand .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.5rem;
  }
  .footer-brand .tagline {
    color: #718096;
    font-size: 0.95rem;
    line-height: 1.5;
  }
  .footer-right-stack {
    flex: 2;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #2b6cb0;
  }
  .footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.9rem;
  }
  .footer-legal-links a {
    text-decoration: none;
    color: #718096;
  }
  .footer-legal-links a:hover {
    text-decoration: underline;
    color: #4a5568;
  }
  .footer-bottom {
    flex-basis: 100%;
    margin-top: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eaeaea;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.9rem;
  }
  .footer-contacts {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    color: #4a5568;
  }
  .footer-contacts a {
    color: inherit;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    text-decoration: underline;
    color: #2b6cb0;
  }
  .footer-disclaimer {
    color: #a0aec0;
    text-align: right;
    line-height: 1.5;
    max-width: 600px;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      gap: 2rem;
      padding: 2rem 1rem 1rem;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 1rem;
    }
    .footer-bottom {
      flex-direction: column;
      align-items: flex-start;
      text-align: left;
      gap: 1rem;
    }
    .footer-disclaimer {
      text-align: left;
    }
  }

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

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

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

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

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

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

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

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

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

.thank-mode-b {
        padding: clamp(58px, 10vw, 114px) 18px;
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

    .thank-mode-b .card {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        border-radius: var(--radius-xl);
        padding: clamp(30px, 4vw, 46px);
        background: var(--surface-1);
        box-shadow: var(--shadow-lg);
        border: 1px solid var(--border-on-surface);
    }

    .thank-mode-b h1 {
        margin: 0;
        font-size: clamp(32px, 5vw, 54px);
        color: var(--brand);
        line-height: 1.2;
    }

    .thank-mode-b p {
        margin: 20px 0 0;
        color: var(--fg-on-surface);
        font-size: 1.1rem;
        line-height: var(--line-height-base);
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .thank-mode-b a {
        display: inline-block;
        margin-top: 30px;
        padding: 14px 32px;
        border-radius: var(--radius-md);
        text-decoration: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 600;
        font-size: 1rem;
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .thank-mode-b a:hover {
        background: var(--bg-primary-hover);
    }

.header {
  position: sticky;
  top: var(--space-y);
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 var(--space-x);
  margin-bottom: var(--space-y);
}
.header-container {
  max-width: var(--max-w);
  margin: 0 auto;
  background-color: var(--surface-1);
  color: var(--fg-on-surface);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: var(--space-y) var(--space-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
  border: 1px solid var(--border-on-surface-light);
}
.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
  color: var(--accent);
}
.nav {
  display: flex;
  align-items: center;
  gap: calc(var(--gap) * 2);
}
.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: var(--gap);
}
.nav-link {
  color: var(--fg-on-surface);
  text-decoration: none;
  padding: calc(var(--space-y) / 2) var(--space-x);
  border-radius: var(--radius-md);
  transition: all var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}
.nav-link:hover {
  background-color: var(--btn-ghost-bg-hover);
  color: var(--link-hover);
}
.button-cta {
  background-color: var(--bg-primary);
  color: var(--fg-on-primary);
  padding: calc(var(--space-y) / 1.5) var(--space-x);
  border-radius: var(--radius-lg);
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
  transition: background-color var(--anim-duration) var(--anim-ease);
  border: none;
  cursor: pointer;
  display: inline-block;
}
.button-cta:hover {
  background-color: var(--bg-primary-hover);
}
.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: calc(var(--space-y) / 2);
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
}
.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--fg-on-surface);
  border-radius: 1px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
  .burger {
    display: flex;
  }
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 80%;
    max-width: 300px;
    background-color: var(--surface-2);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: calc(var(--space-y) * 2) var(--space-x);
    gap: calc(var(--gap) * 2);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    z-index: 999;
    overflow-y: auto;
  }
  .nav.is-open {
    transform: translateX(0);
  }
  .nav-list {
    flex-direction: column;
    width: 100%;
    gap: calc(var(--gap) / 2);
  }
  .nav-link {
    width: 100%;
    display: block;
    padding: var(--space-y) var(--space-x);
  }
  .button-cta {
    width: 100%;
    text-align: center;
  }
  .burger[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    color: #333;
    font-family: system-ui, -apple-system, sans-serif;
    border-top: 1px solid #eaeaea;
  }
  .footer-brand {
    flex: 1;
    min-width: 250px;
  }
  .footer-brand .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.5rem;
  }
  .footer-brand .tagline {
    color: #718096;
    font-size: 0.95rem;
    line-height: 1.5;
  }
  .footer-right-stack {
    flex: 2;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #2b6cb0;
  }
  .footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.9rem;
  }
  .footer-legal-links a {
    text-decoration: none;
    color: #718096;
  }
  .footer-legal-links a:hover {
    text-decoration: underline;
    color: #4a5568;
  }
  .footer-bottom {
    flex-basis: 100%;
    margin-top: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eaeaea;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.9rem;
  }
  .footer-contacts {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    color: #4a5568;
  }
  .footer-contacts a {
    color: inherit;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    text-decoration: underline;
    color: #2b6cb0;
  }
  .footer-disclaimer {
    color: #a0aec0;
    text-align: right;
    line-height: 1.5;
    max-width: 600px;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      gap: 2rem;
      padding: 2rem 1rem 1rem;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 1rem;
    }
    .footer-bottom {
      flex-direction: column;
      align-items: flex-start;
      text-align: left;
      gap: 1rem;
    }
    .footer-disclaimer {
      text-align: left;
    }
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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