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

  --max-w: 1100px;
  --space-x: 1.51rem;
  --space-y: 1.5rem;
  --gap: 1.15rem;

  --radius-xl: 1.4rem;
  --radius-lg: 1rem;
  --radius-md: 0.7rem;
  --radius-sm: 0.38rem;

  --shadow-sm: 0 0px 4px rgba(0,0,0,0.04);
  --shadow-md: 0 5px 12px rgba(0,0,0,0.05);
  --shadow-lg: 0 14px 26px rgba(0,0,0,0.06);

  --overlay: rgba(0, 0, 0, 0.45);
  --anim-duration: 510ms;
  --anim-ease: ease;
  --random-number: 2;

  --brand: #0056A3;
  --brand-contrast: #FFFFFF;
  --accent: #00A3A0;
  --accent-contrast: #FFFFFF;

  --neutral-0: #FFFFFF;
  --neutral-100: #F5F7FA;
  --neutral-300: #D1D9E6;
  --neutral-600: #6B7B9C;
  --neutral-800: #2C3A5E;
  --neutral-900: #0F1A3A;

  --bg-page: #F5F7FA;
  --fg-on-page: #0F1A3A;

  --bg-alt: #FFFFFF;
  --fg-on-alt: #2C3A5E;

  --surface-1: #FFFFFF;
  --surface-2: #F5F7FA;
  --fg-on-surface: #0F1A3A;
  --border-on-surface: #D1D9E6;

  --surface-light: #FFFFFF;
  --fg-on-surface-light: #2C3A5E;
  --border-on-surface-light: #E6ECF2;

  --bg-primary: #0056A3;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #004A8C;
  --ring: #0056A3;

  --bg-accent: #E6F7F7;
  --fg-on-accent: #003D3C;
  --bg-accent-hover: #008B88;

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

  --gradient-hero: linear-gradient(135deg, #0056A3 0%, #00A3A0 100%);
  --gradient-accent: linear-gradient(90deg, #E6F7F7 0%, #FFFFFF 100%);

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

.header {
  background-color: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  padding: var(--space-y) 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.header__container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
}
.header__logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}
.header__logo:hover {
  color: var(--accent);
}
.header__nav {
  display: flex;
}
.nav__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: calc(var(--gap) / 2);
  background-color: var(--chip-bg);
  padding: calc(var(--space-y) / 4);
  border-radius: var(--radius-xl);
}
.nav__item {
  display: block;
}
.nav__link {
  display: block;
  padding: calc(var(--space-y) / 2) calc(var(--space-x) * 1.2);
  text-decoration: none;
  color: var(--fg-on-surface);
  font-weight: 500;
  border-radius: var(--radius-lg);
  white-space: nowrap;
  transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}
.nav__link:hover {
  background-color: var(--btn-ghost-bg-hover);
  color: var(--link-hover);
}
.header__burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: calc(var(--space-y) / 2);
  flex-direction: column;
  justify-content: space-between;
  width: 2.5rem;
  height: 2rem;
}
.burger__line {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--fg-on-surface);
  border-radius: var(--radius-sm);
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
  .header__burger {
    display: flex;
  }
  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 70%;
    max-width: 300px;
    background-color: var(--surface-1);
    box-shadow: var(--shadow-lg);
    padding: calc(var(--space-y) * 2) var(--space-x);
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    z-index: 101;
    overflow-y: auto;
  }
  .header__nav.is-active {
    transform: translateX(0);
  }
  .header__nav.is-active + .header__burger .burger__line:nth-child(1) {
    transform: translateY(0.65rem) rotate(45deg);
  }
  .header__nav.is-active + .header__burger .burger__line:nth-child(2) {
    opacity: 0;
  }
  .header__nav.is-active + .header__burger .burger__line:nth-child(3) {
    transform: translateY(-0.65rem) rotate(-45deg);
  }
  .nav__list {
    flex-direction: column;
    background-color: transparent;
    padding: 0;
    gap: 0;
  }
  .nav__link {
    padding: calc(var(--space-y) * 0.8) 0;
    border-radius: 0;
    border-bottom: 1px solid var(--border-on-surface-light);
  }
  .nav__link:hover {
    background-color: transparent;
    color: var(--link);
  }
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 2.5rem 1.5rem;
    background-color: #f8f9fa;
    color: #333;
    font-family: sans-serif;
    line-height: 1.6;
    border-top: 1px solid #dee2e6;
  }
  .footer-left, .footer-right {
    box-sizing: border-box;
  }
  .footer-left {
    flex: 1 1 300px;
    margin-bottom: 2rem;
    padding-right: 2rem;
    min-width: 250px;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    min-width: 250px;
  }
  .footer-logo {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #0056b3;
  }
  .copyright {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
  }
  .legal-links {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }
  .legal-links a {
    color: #0056b3;
    text-decoration: none;
  }
  .legal-links a:hover {
    text-decoration: underline;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #777;
    font-style: italic;
    margin-top: 1rem;
    line-height: 1.4;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
  }
  .footer-nav a:hover {
    color: #0056b3;
    text-decoration: underline;
  }
  .footer-contacts p {
    margin: 0.4rem 0;
  }
  .footer-contacts a {
    color: #0056b3;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    text-decoration: underline;
  }
  .footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
  }
  .footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #ddd;
    color: #333;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
  }
  .footer-social a:hover {
    background-color: #ccc;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      padding: 2rem 1rem;
    }
    .footer-left, .footer-right {
      padding-right: 0;
      width: 100%;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 0.8rem;
    }
  }

.cookie-lv2 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-md);
    }

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

    .cookie-lv2__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

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

    .cookie-lv2__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

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

* {
        box-sizing: border-box;
    }

    .intro-tableau-l14 {
        padding: clamp(3.6rem, 8vw, 6.5rem) var(--space-x);
        background: linear-gradient(180deg, var(--surface-1), var(--bg-alt));
        color: var(--fg-on-page);
    }

    .intro-tableau-l14__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1.1fr .9fr;
        gap: 1rem;
        align-items: start;
    }

    .intro-tableau-l14__copy p {
        margin: 0;
        color: var(--neutral-600);
        font-size: .82rem;
        letter-spacing: .1em;
        text-transform: uppercase;
    }

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

    .intro-tableau-l14__copy span {
        display: block;
        margin-top: .9rem;
        color: var(--neutral-600);
    }

    .intro-tableau-l14__stats {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: .75rem;
    }

    .intro-tableau-l14__stats div {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
    }

    .intro-tableau-l14__stats strong {
        display: block;
        color: var(--brand);
        font-size: 1.35rem;
    }

    .intro-tableau-l14__stats span {
        display: block;
        margin-top: .25rem;
        color: var(--neutral-600);
    }

    @media (max-width: 860px) {
        .intro-tableau-l14__wrap {
            grid-template-columns: 1fr;
        }
    }

.next-signal-c7 {
        padding: clamp(3.7rem, 8vw, 6.3rem) var(--space-x);
        background: linear-gradient(145deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
    }

    .next-signal-c7__wrap {
        max-width: 60rem;
        margin: 0 auto;
        display: grid;
        grid-template-columns: .95fr 1.05fr;
        gap: 1rem;
        align-items: center;
    }

    .next-signal-c7__copy p {
        margin: 0;
        color: rgba(255, 255, 255, .78);
    }

    .next-signal-c7__copy h2 {
        margin: .5rem 0 0;
        font-size: clamp(2rem, 4vw, 3.1rem);
    }

    .next-signal-c7__copy span {
        display: block;
        margin-top: .85rem;
        color: rgba(255, 255, 255, .86);
    }

    .next-signal-c7__stack {
        display: grid;
        gap: .7rem;
    }

    .next-signal-c7__stack a {
        display: flex;
        justify-content: space-between;
        gap: .75rem;
        align-items: center;
        padding: .9rem 1rem;
        border-radius: var(--radius-lg);
        text-decoration: none;
        color: var(--fg-on-primary);
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .next-signal-c7__stack span {
        color: rgba(255, 255, 255, .8);
    }

    .next-signal-c7__button {
        display: inline-flex;
        margin-top: 1rem;
        min-height: 2.85rem;
        align-items: center;
        justify-content: center;
        padding: 0 1rem;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        color: var(--fg-on-page);
        text-decoration: none;
    }

    @media (max-width: 820px) {
        .next-signal-c7__wrap {
            grid-template-columns: 1fr;
        }
    }

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

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

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

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

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

    .faq-layout-f .table {
        display: grid;
        gap: 10px;
    }

    .faq-layout-f .line {
        display: grid;
        grid-template-columns: .9fr 1.1fr;
        gap: 12px;
        padding: 12px;
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--surface-1);
    }

    .faq-layout-f .q {
        font-weight: 600;
        color: var(--brand);
    }

    .faq-layout-f .a {
        color: var(--neutral-600);
    }

    @media (max-width: 780px) {
        .faq-layout-f .line {
            grid-template-columns: 1fr;
        }
    }

.clarifications-c2 {

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

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

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

    .clarifications-c2__title {
        margin: 0;
        font-size: clamp(24px, 4.4vw, 42px);
        letter-spacing: -.02em;
        line-height: 1.1;
    }

    .clarifications-c2__sub {
        margin: 10px 0 0;
        max-width: 70ch;
        color: rgba(255, 255, 255, .82);
    }

    .clarifications-c2__rail {
        position: relative;
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.16);
        box-shadow: var(--shadow-lg);
        overflow: hidden;
    }

    /* Световой “луч” двигается постоянно */
    .clarifications-c2__beam {
        position: absolute;
        top: 0;
        left: 0;
        width: 48%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
        transform: translateX(-120%);
        animation: c2Beam 6.2s linear infinite;
        pointer-events: none;
    }

    @keyframes c2Beam {
        0% {
            transform: translateX(-120%)
        }
        55% {
            transform: translateX(160%)
        }
        100% {
            transform: translateX(160%)
        }
    }

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

    .clarifications-c2__row {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 12px;
        padding: 12px 14px;
        border-radius: var(--radius-lg);
        background: rgba(0, 0, 0, 0.14);
        border: 1px solid rgba(255, 255, 255, 0.12);
        transition: transform var(--anim-duration) var(--anim-ease), background var(--anim-duration) var(--anim-ease);
    }

    .clarifications-c2__row.is-hot {
        transform: translateY(-2px);
        background: rgba(255, 255, 255, 0.12);
    }

    .clarifications-c2__tag {
        align-self: start;
        padding: 8px 10px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.10);
        border: 1px solid rgba(255, 255, 255, 0.16);
        font-weight: 800;
        white-space: nowrap;
        color: rgba(255, 255, 255, .92);
    }

    .clarifications-c2__q {
        font-weight: 900;
        letter-spacing: -.01em;
        margin-bottom: 6px;
    }

    .clarifications-c2__a {
        color: rgba(255, 255, 255, .82);
        line-height: var(--line-height-base);
    }

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

        .clarifications-c2__tag {
            justify-self: start
        }
    }

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

.features {
    padding: clamp(48px, 8vw, 80px) 0;
    color: var(--fg-on-page);
}

.features--alt {
    background-color: var(--bg-alt);
    color: var(--fg-on-alt);
}

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

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

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

.features__card {
    background-color: var(--surface-1);
    padding: clamp(16px, 3vw, 32px);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--anim-duration) var(--anim-ease);
    text-align: center;
    border: 1px solid var(--border-on-surface);
}

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

.features__icon {
    font-size: 2.5rem;
    color: var(--brand);
    margin-bottom: var(--space-y);
}

.features__card h3 {
    margin-bottom: var(--space-y);
    color: var(--fg-on-surface);
}

.features__card p {
    color: var(--fg-on-surface-light);
    margin: 0 auto;
}

.header {
  background-color: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  padding: var(--space-y) 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.header__container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
}
.header__logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}
.header__logo:hover {
  color: var(--accent);
}
.header__nav {
  display: flex;
}
.nav__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: calc(var(--gap) / 2);
  background-color: var(--chip-bg);
  padding: calc(var(--space-y) / 4);
  border-radius: var(--radius-xl);
}
.nav__item {
  display: block;
}
.nav__link {
  display: block;
  padding: calc(var(--space-y) / 2) calc(var(--space-x) * 1.2);
  text-decoration: none;
  color: var(--fg-on-surface);
  font-weight: 500;
  border-radius: var(--radius-lg);
  white-space: nowrap;
  transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}
.nav__link:hover {
  background-color: var(--btn-ghost-bg-hover);
  color: var(--link-hover);
}
.header__burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: calc(var(--space-y) / 2);
  flex-direction: column;
  justify-content: space-between;
  width: 2.5rem;
  height: 2rem;
}
.burger__line {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--fg-on-surface);
  border-radius: var(--radius-sm);
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
  .header__burger {
    display: flex;
  }
  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 70%;
    max-width: 300px;
    background-color: var(--surface-1);
    box-shadow: var(--shadow-lg);
    padding: calc(var(--space-y) * 2) var(--space-x);
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    z-index: 101;
    overflow-y: auto;
  }
  .header__nav.is-active {
    transform: translateX(0);
  }
  .header__nav.is-active + .header__burger .burger__line:nth-child(1) {
    transform: translateY(0.65rem) rotate(45deg);
  }
  .header__nav.is-active + .header__burger .burger__line:nth-child(2) {
    opacity: 0;
  }
  .header__nav.is-active + .header__burger .burger__line:nth-child(3) {
    transform: translateY(-0.65rem) rotate(-45deg);
  }
  .nav__list {
    flex-direction: column;
    background-color: transparent;
    padding: 0;
    gap: 0;
  }
  .nav__link {
    padding: calc(var(--space-y) * 0.8) 0;
    border-radius: 0;
    border-bottom: 1px solid var(--border-on-surface-light);
  }
  .nav__link:hover {
    background-color: transparent;
    color: var(--link);
  }
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 2.5rem 1.5rem;
    background-color: #f8f9fa;
    color: #333;
    font-family: sans-serif;
    line-height: 1.6;
    border-top: 1px solid #dee2e6;
  }
  .footer-left, .footer-right {
    box-sizing: border-box;
  }
  .footer-left {
    flex: 1 1 300px;
    margin-bottom: 2rem;
    padding-right: 2rem;
    min-width: 250px;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    min-width: 250px;
  }
  .footer-logo {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #0056b3;
  }
  .copyright {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
  }
  .legal-links {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }
  .legal-links a {
    color: #0056b3;
    text-decoration: none;
  }
  .legal-links a:hover {
    text-decoration: underline;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #777;
    font-style: italic;
    margin-top: 1rem;
    line-height: 1.4;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
  }
  .footer-nav a:hover {
    color: #0056b3;
    text-decoration: underline;
  }
  .footer-contacts p {
    margin: 0.4rem 0;
  }
  .footer-contacts a {
    color: #0056b3;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    text-decoration: underline;
  }
  .footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
  }
  .footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #ddd;
    color: #333;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
  }
  .footer-social a:hover {
    background-color: #ccc;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      padding: 2rem 1rem;
    }
    .footer-left, .footer-right {
      padding-right: 0;
      width: 100%;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 0.8rem;
    }
  }

.cookie-lv2 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-md);
    }

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

    .cookie-lv2__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

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

    .cookie-lv2__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

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

.profile {

        color: var(--fg-on-page);
        background: linear-gradient(135deg, var(--bg-accent) 0%, var(--bg-page) 100%);
        padding: clamp(24px, 4vw, 56px) clamp(16px, 4vw, 40px);
    }

    .profile .profile__c {
        max-width: 900px;
        margin: 0 auto;
    }

    .profile .profile__h {
        text-align: center;
        margin-bottom: clamp(32px, 5vw, 48px);
    }

    .profile h1 {
        font-size: clamp(32px, 6vw, 56px);
        margin: 0 0 0.75rem;
        color: var(--fg-on-page);
        font-weight: 700;
    }

    .profile .profile__h p {
        font-size: clamp(16px, 2.4vw, 20px);
        color: var(--neutral-600);
        margin: 0;
    }

    .profile .profile__tabs {
        display: flex;
        gap: 0.5rem;
        justify-content: center;
        margin-bottom: clamp(32px, 5vw, 48px);
        flex-wrap: wrap;
    }

    /* Dacă randomNumber este par (2) - primul copil primește order: 2 */
    .profile .profile__tabs > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    .profile .profile__tab {
        padding: 0.875rem 2rem;
        border-radius: var(--radius-lg);
        border: 2px solid var(--ring);
        background: var(--bg-page);
        color: var(--fg-on-page);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        font-weight: 600;
    }

    .profile .profile__tab:hover {
        background: var(--bg-alt);
        border-color: var(--bg-primary);
    }

    .profile .profile__tab.active {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-color: var(--bg-primary);
        box-shadow: var(--shadow-sm);
    }

    .profile .profile__panels {
        background: var(--surface-light);
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-xl);
        padding: clamp(32px, 4vw, 48px);
        box-shadow: var(--shadow-md);
    }

    .profile .profile__panel {
        display: none;
    }

    .profile .profile__panel.active {
        display: block;
    }

    .profile .profile__avatar-section {
        display: flex;
        gap: clamp(24px, 4vw, 40px);
        align-items: center;
        margin-bottom: clamp(32px, 4vw, 40px);
        padding-bottom: clamp(24px, 4vw, 32px);
        border-bottom: 1px solid var(--border-on-surface-light);
    }

    /* Dacă randomNumber este par (2) - primul copil primește order: 2 */
    .profile .profile__avatar-section > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    .profile .profile__avatar {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2.5rem;
        font-weight: 700;
        border: 4px solid var(--ring);
        box-shadow: var(--shadow-md);
        flex-shrink: 0;
    }

    .profile .profile__avatar-actions {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        flex: 1;
    }

    .profile .profile__upload-btn {
        padding: 0.75rem 1.5rem;
        border-radius: var(--radius-md);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        font-weight: 600;
        text-align: center;
        border: 2px solid var(--bg-primary);
    }

    .profile .profile__upload-btn input {
        display: none;
    }

    .profile .profile__upload-btn:hover {
        background: var(--bg-primary-hover);
    }

    .profile .profile__remove-btn {
        padding: 0.75rem 1.5rem;
        border-radius: var(--radius-md);
        background: transparent;
        color: var(--fg-on-page);
        border: 2px solid var(--ring);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        font-weight: 600;
    }

    .profile .profile__remove-btn:hover {
        border-color: var(--accent);
        color: var(--accent);
        background: rgba(239, 68, 68, 0.1);
    }

    .profile .profile__form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: clamp(20px, 3vw, 28px);
        margin-bottom: clamp(20px, 3vw, 28px);
    }

    /* Dacă randomNumber este par (2) - primul copil primește order: 2 */
    .profile .profile__form-row > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    @media (max-width: 767px) {
        .profile .profile__form-row {
            grid-template-columns: 1fr;
        }

        .profile .profile__avatar-section {
            flex-direction: column;
            text-align: center;
        }
    }

    .profile .profile__form-group {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        margin-bottom: clamp(20px, 3vw, 24px);
    }

    .profile .profile__form-group label {
        font-weight: 600;
        color: var(--fg-on-page);
        font-size: 0.875rem;
    }

    .profile .profile__form-group input,
    .profile .profile__form-group textarea {
        padding: 0.875rem 1.25rem;
        border-radius: var(--radius-md);
        border: 2px solid var(--ring);
        background: var(--bg-page);
        color: var(--fg-on-page);

        font-size: 1rem;
        outline: none;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .profile .profile__form-group input::placeholder,
    .profile .profile__form-group textarea::placeholder {
        color: var(--neutral-600);
    }

    .profile .profile__form-group input:focus,
    .profile .profile__form-group textarea:focus {
        border-color: var(--bg-primary);
        box-shadow: 0 0 0 3px var(--ring);
    }

    .profile .profile__submit {
        padding: 1rem 2.5rem;
        border-radius: var(--radius-lg);
        border: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 700;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        align-self: flex-start;
        box-shadow: var(--shadow-md);
    }

    .profile .profile__submit:hover {
        background: var(--bg-primary-hover);
        transform: translateY(-3px);
        box-shadow: var(--shadow-lg);
    }

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

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

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

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

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

    .support-lv1__grid {
        display: grid;
        gap: 10px;
        grid-template-columns: repeat(var(--cols, 3), minmax(0, 1fr));
    }

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

    .support-lv1__grid h3 {
        margin: 0 0 6px;
    }

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

    .support-lv1__grid a {
        color: var(--link);
        text-decoration: none;
        font-weight: 600;
    }

    @media (max-width: 900px) {
        .support-lv1__grid {
            grid-template-columns: 1fr 1fr;
        }
    }

    @media (max-width: 640px) {
        .support-lv1__grid {
            grid-template-columns: 1fr;
        }
    }

.team-radiance {
        background: radial-gradient(circle at top right, rgba(255, 183, 96, 0.75), rgba(255, 183, 96, 0)), var(--bg-primary);
        color: var(--fg-on-primary);
        padding: clamp(60px, 8vw, 110px) clamp(16px, 4vw, 48px);
    }

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

    .team-radiance__h {
        text-align: center;
        margin-bottom: clamp(40px, 5vw, 72px);

        transform: translateY(-20px);
    }

    .team-radiance__h span {
        display: inline-flex;
        padding: 0.35rem 1rem;
        border-radius: 999px;
        background: rgba(255, 206, 182, 0.2);
        border: 1px solid rgba(255, 206, 182, 0.4);
        text-transform: uppercase;
        letter-spacing: 0.2em;
        font-size: 0.8rem;
    }

    .team-radiance__h h2 {
        margin: 0.75rem 0 0;
        font-size: clamp(34px, 4.8vw, 56px);
    }

    .team-radiance__list {
        display: flex;
        flex-direction: column;
        gap: clamp(20px, 3vw, 32px);
    }

    .team-radiance__item {
        background: rgba(255, 206, 182, 0.2);
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, 0.15);
        padding: clamp(20px, 3vw, 32px);
        box-shadow: 0 25px 45px rgba(6, 3, 19, 0.4);

        transform: translateY(26px);
    }

    .team-radiance__header {
        display: grid;
        grid-template-columns: auto 1fr auto;
        gap: 1rem;
        align-items: center;
        margin-bottom: 1rem;
    }

    .team-radiance__photo {
        width: 72px;
        height: 72px;
        border-radius: var(--radius-sm);
        overflow: hidden;
        border: 2px solid rgba(255, 255, 255, 0.4);
    }

    .team-radiance__photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .team-radiance__header h3 {
        margin: 0;
        font-size: 1.35rem;
    }

    .team-radiance__header p {
        margin: 0.15rem 0 0;
        color: rgba(255, 255, 255, 0.7);
    }

    .team-radiance__badge {
        padding: 0.5rem 0.85rem;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.15);
        font-weight: 700;
        text-align: center;
    }

    .team-radiance__bio {
        margin: 0 0 0.75rem;
        color: rgba(255, 255, 255, 0.78);
    }

    .team-radiance__impact {
        font-weight: 600;
        color: #FFD1C0;
    }

.header {
  background-color: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  padding: var(--space-y) 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.header__container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
}
.header__logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}
.header__logo:hover {
  color: var(--accent);
}
.header__nav {
  display: flex;
}
.nav__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: calc(var(--gap) / 2);
  background-color: var(--chip-bg);
  padding: calc(var(--space-y) / 4);
  border-radius: var(--radius-xl);
}
.nav__item {
  display: block;
}
.nav__link {
  display: block;
  padding: calc(var(--space-y) / 2) calc(var(--space-x) * 1.2);
  text-decoration: none;
  color: var(--fg-on-surface);
  font-weight: 500;
  border-radius: var(--radius-lg);
  white-space: nowrap;
  transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}
.nav__link:hover {
  background-color: var(--btn-ghost-bg-hover);
  color: var(--link-hover);
}
.header__burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: calc(var(--space-y) / 2);
  flex-direction: column;
  justify-content: space-between;
  width: 2.5rem;
  height: 2rem;
}
.burger__line {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--fg-on-surface);
  border-radius: var(--radius-sm);
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
  .header__burger {
    display: flex;
  }
  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 70%;
    max-width: 300px;
    background-color: var(--surface-1);
    box-shadow: var(--shadow-lg);
    padding: calc(var(--space-y) * 2) var(--space-x);
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    z-index: 101;
    overflow-y: auto;
  }
  .header__nav.is-active {
    transform: translateX(0);
  }
  .header__nav.is-active + .header__burger .burger__line:nth-child(1) {
    transform: translateY(0.65rem) rotate(45deg);
  }
  .header__nav.is-active + .header__burger .burger__line:nth-child(2) {
    opacity: 0;
  }
  .header__nav.is-active + .header__burger .burger__line:nth-child(3) {
    transform: translateY(-0.65rem) rotate(-45deg);
  }
  .nav__list {
    flex-direction: column;
    background-color: transparent;
    padding: 0;
    gap: 0;
  }
  .nav__link {
    padding: calc(var(--space-y) * 0.8) 0;
    border-radius: 0;
    border-bottom: 1px solid var(--border-on-surface-light);
  }
  .nav__link:hover {
    background-color: transparent;
    color: var(--link);
  }
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 2.5rem 1.5rem;
    background-color: #f8f9fa;
    color: #333;
    font-family: sans-serif;
    line-height: 1.6;
    border-top: 1px solid #dee2e6;
  }
  .footer-left, .footer-right {
    box-sizing: border-box;
  }
  .footer-left {
    flex: 1 1 300px;
    margin-bottom: 2rem;
    padding-right: 2rem;
    min-width: 250px;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    min-width: 250px;
  }
  .footer-logo {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #0056b3;
  }
  .copyright {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
  }
  .legal-links {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }
  .legal-links a {
    color: #0056b3;
    text-decoration: none;
  }
  .legal-links a:hover {
    text-decoration: underline;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #777;
    font-style: italic;
    margin-top: 1rem;
    line-height: 1.4;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
  }
  .footer-nav a:hover {
    color: #0056b3;
    text-decoration: underline;
  }
  .footer-contacts p {
    margin: 0.4rem 0;
  }
  .footer-contacts a {
    color: #0056b3;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    text-decoration: underline;
  }
  .footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
  }
  .footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #ddd;
    color: #333;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
  }
  .footer-social a:hover {
    background-color: #ccc;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      padding: 2rem 1rem;
    }
    .footer-left, .footer-right {
      padding-right: 0;
      width: 100%;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 0.8rem;
    }
  }

.cookie-lv2 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-md);
    }

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

    .cookie-lv2__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

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

    .cookie-lv2__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

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

.settings {

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

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

    .settings .settings__h {
        text-align: center;
        margin-bottom: clamp(40px, 6vw, 64px);
    }

    .settings h1 {
        font-size: clamp(32px, 6vw, 56px);
        margin: 0 0 0.75rem;
        color: var(--fg-on-primary);
        font-weight: 700;
    }

    .settings .settings__h p {
        font-size: clamp(16px, 2.4vw, 20px);
        opacity: 0.9;
        margin: 0;
    }

    .settings .settings__layout {
        display: grid;
        grid-template-columns: 240px 1fr;
        gap: clamp(32px, 5vw, 48px);
        align-items: start;
    }

    /* Если randomNumber четное (2) - первый ребенок получает order: 2 */
    .settings .settings__layout > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    @media (max-width: 1023px) {
        .settings .settings__layout {
            grid-template-columns: 1fr;
        }
    }

    .settings .settings__sidebar {
        position: sticky;
        top: 20px;
    }

    .settings .settings__nav {
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.25);
        border-radius: var(--radius-lg);
        padding: clamp(16px, 2.5vw, 24px);
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    /* Если randomNumber четное (2) - первый ребенок получает order: 2 */
    .settings .settings__nav > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    .settings .settings__nav-link {
        padding: 0.875rem 1rem;
        border-radius: var(--radius-md);
        color: var(--fg-on-primary);
        text-decoration: none;
        transition: all var(--anim-duration) var(--anim-ease);
        display: flex;
        align-items: center;
        gap: 0.75rem;
        font-weight: 500;
    }

    .settings .settings__nav-link:hover {
        background: rgba(255, 255, 255, 0.2);
    }

    .settings .settings__nav-link.active {
        background: var(--fg-on-primary);
        color: var(--bg-primary);
    }

    .settings .settings__nav-icon {
        font-size: 1.25rem;
        width: 24px;
        text-align: center;
    }

    .settings .settings__main {
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.25);
        border-radius: var(--radius-xl);
        padding: clamp(32px, 4vw, 48px);
    }

    .settings .settings__panel {
        display: none;
    }

    .settings .settings__panel.active {
        display: block;
    }

    .settings .settings__panel h2 {
        margin: 0 0 clamp(24px, 4vw, 32px);
        font-size: clamp(24px, 3.5vw, 28px);
        color: var(--fg-on-primary);
        font-weight: 700;
    }

    .settings .settings__avatar-section {
        display: flex;
        gap: clamp(20px, 3vw, 32px);
        align-items: center;
        margin-bottom: clamp(24px, 4vw, 32px);
        padding-bottom: clamp(24px, 4vw, 32px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    /* Если randomNumber четное (2) - первый ребенок получает order: 2 */
    .settings .settings__avatar-section > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    .settings .settings__avatar {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        background: var(--fg-on-primary);
        color: var(--bg-primary);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        font-weight: 700;
        border: 4px solid rgba(255, 255, 255, 0.3);
    }

    .settings .settings__avatar-actions {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .settings .settings__upload-btn {
        padding: 0.75rem 1.5rem;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, 0.2);
        color: var(--fg-on-primary);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        font-weight: 600;
        text-align: center;
        border: 2px solid rgba(255, 255, 255, 0.3);
    }

    .settings .settings__upload-btn input {
        display: none;
    }

    .settings .settings__upload-btn:hover {
        background: rgba(255, 255, 255, 0.3);
    }

    .settings .settings__remove-btn {
        padding: 0.75rem 1.5rem;
        border-radius: var(--radius-md);
        background: transparent;
        color: var(--fg-on-primary);
        border: 2px solid rgba(255, 255, 255, 0.3);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        font-weight: 600;
    }

    .settings .settings__remove-btn:hover {
        border-color: rgba(255, 255, 255, 0.5);
        background: rgba(255, 255, 255, 0.1);
    }

    .settings .settings__form-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: clamp(20px, 3vw, 28px);
        margin-bottom: clamp(20px, 3vw, 28px);
    }

    /* Если randomNumber четное (2) - первый ребенок получает order: 2 */
    .settings .settings__form-grid > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    @media (max-width: 767px) {
        .settings .settings__form-grid {
            grid-template-columns: 1fr;
        }
    }

    .settings .settings__form-group {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        margin-bottom: clamp(20px, 3vw, 28px);
    }

    .settings .settings__form-group label {
        font-weight: 600;
        color: var(--fg-on-primary);
        font-size: 0.875rem;
    }

    .settings .settings__form-group input,
    .settings .settings__form-group textarea {
        padding: 0.875rem 1.25rem;
        border-radius: var(--radius-md);
        border: 2px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.1);
        color: var(--fg-on-primary);

        font-size: 1rem;
        outline: none;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .settings .settings__form-group input::placeholder,
    .settings .settings__form-group textarea::placeholder {
        color: rgba(255, 255, 255, 0.7);
    }

    .settings .settings__form-group input:focus,
    .settings .settings__form-group textarea:focus {
        border-color: rgba(255, 255, 255, 0.6);
        background: rgba(255, 255, 255, 0.2);
        box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
    }

    .settings .settings__form-actions {
        display: flex;
        gap: 1rem;
        margin-top: clamp(24px, 4vw, 32px);
    }

    /* Если randomNumber четное (2) - первый ребенок получает order: 2 */
    .settings .settings__form-actions > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    .settings .settings__submit {
        padding: 1rem 2.5rem;
        border-radius: var(--radius-lg);
        border: none;
        background: var(--fg-on-primary);
        color: var(--bg-primary);
        font-weight: 700;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    }

    .settings .settings__submit:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    }

    .settings .settings__cancel {
        padding: 1rem 2.5rem;
        border-radius: var(--radius-lg);
        border: 2px solid rgba(255, 255, 255, 0.3);
        background: transparent;
        color: var(--fg-on-primary);
        font-weight: 600;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .settings .settings__cancel:hover {
        border-color: rgba(255, 255, 255, 0.5);
        background: rgba(255, 255, 255, 0.1);
    }

    @media (max-width: 1023px) {
        .settings .settings__sidebar {
            position: static;
        }
    }

.about-mission {

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

    .about-mission .about-mission__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .about-mission .about-mission__grid {
        display: grid;
        gap: var(--space-x);
        grid-template-columns: 1fr 1fr;
    }

    .about-mission p {
        color: var(--neutral-600);
    }

    @media (max-width: 767px) {
        .about-mission .about-mission__grid {
            grid-template-columns: 1fr;
        }
    }

.header {
  background-color: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  padding: var(--space-y) 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.header__container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
}
.header__logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}
.header__logo:hover {
  color: var(--accent);
}
.header__nav {
  display: flex;
}
.nav__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: calc(var(--gap) / 2);
  background-color: var(--chip-bg);
  padding: calc(var(--space-y) / 4);
  border-radius: var(--radius-xl);
}
.nav__item {
  display: block;
}
.nav__link {
  display: block;
  padding: calc(var(--space-y) / 2) calc(var(--space-x) * 1.2);
  text-decoration: none;
  color: var(--fg-on-surface);
  font-weight: 500;
  border-radius: var(--radius-lg);
  white-space: nowrap;
  transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}
.nav__link:hover {
  background-color: var(--btn-ghost-bg-hover);
  color: var(--link-hover);
}
.header__burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: calc(var(--space-y) / 2);
  flex-direction: column;
  justify-content: space-between;
  width: 2.5rem;
  height: 2rem;
}
.burger__line {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--fg-on-surface);
  border-radius: var(--radius-sm);
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
  .header__burger {
    display: flex;
  }
  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 70%;
    max-width: 300px;
    background-color: var(--surface-1);
    box-shadow: var(--shadow-lg);
    padding: calc(var(--space-y) * 2) var(--space-x);
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    z-index: 101;
    overflow-y: auto;
  }
  .header__nav.is-active {
    transform: translateX(0);
  }
  .header__nav.is-active + .header__burger .burger__line:nth-child(1) {
    transform: translateY(0.65rem) rotate(45deg);
  }
  .header__nav.is-active + .header__burger .burger__line:nth-child(2) {
    opacity: 0;
  }
  .header__nav.is-active + .header__burger .burger__line:nth-child(3) {
    transform: translateY(-0.65rem) rotate(-45deg);
  }
  .nav__list {
    flex-direction: column;
    background-color: transparent;
    padding: 0;
    gap: 0;
  }
  .nav__link {
    padding: calc(var(--space-y) * 0.8) 0;
    border-radius: 0;
    border-bottom: 1px solid var(--border-on-surface-light);
  }
  .nav__link:hover {
    background-color: transparent;
    color: var(--link);
  }
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 2.5rem 1.5rem;
    background-color: #f8f9fa;
    color: #333;
    font-family: sans-serif;
    line-height: 1.6;
    border-top: 1px solid #dee2e6;
  }
  .footer-left, .footer-right {
    box-sizing: border-box;
  }
  .footer-left {
    flex: 1 1 300px;
    margin-bottom: 2rem;
    padding-right: 2rem;
    min-width: 250px;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    min-width: 250px;
  }
  .footer-logo {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #0056b3;
  }
  .copyright {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
  }
  .legal-links {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }
  .legal-links a {
    color: #0056b3;
    text-decoration: none;
  }
  .legal-links a:hover {
    text-decoration: underline;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #777;
    font-style: italic;
    margin-top: 1rem;
    line-height: 1.4;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
  }
  .footer-nav a:hover {
    color: #0056b3;
    text-decoration: underline;
  }
  .footer-contacts p {
    margin: 0.4rem 0;
  }
  .footer-contacts a {
    color: #0056b3;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    text-decoration: underline;
  }
  .footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
  }
  .footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #ddd;
    color: #333;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
  }
  .footer-social a:hover {
    background-color: #ccc;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      padding: 2rem 1rem;
    }
    .footer-left, .footer-right {
      padding-right: 0;
      width: 100%;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 0.8rem;
    }
  }

.cookie-lv2 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-md);
    }

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

    .cookie-lv2__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

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

    .cookie-lv2__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

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

.activities--light-v6 {
    padding: 56px 20px;
    background: var(--surface-light);
    color: var(--fg-on-surface-light);
}

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

.activities__header h2 {
    margin: 0 0 16px;
    font-size: clamp(24px,4vw,30px);
    color: var(--fg-on-page);
}

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

.activities__card {
    background: var(--bg-page);
    border-radius: var(--radius-lg);
    padding: 16px 18px;
    border: 1px solid var(--border-on-surface-light);
    box-shadow: var(--shadow-sm);
}

.activities__card h3 {
    margin: 0 0 6px;
    font-size: 1rem;
    color: var(--fg-on-page);
}

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

.messages {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .messages .messages__message {
        background: var(--bg-page);
        padding: 0.875rem 1rem;
        border-radius: var(--radius-md);
        max-width: 70%;
    }

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

    .messages .messages__message-time {
        font-size: 0.75rem;
    }

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

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

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

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

.header {
  background-color: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  padding: var(--space-y) 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.header__container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
}
.header__logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}
.header__logo:hover {
  color: var(--accent);
}
.header__nav {
  display: flex;
}
.nav__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: calc(var(--gap) / 2);
  background-color: var(--chip-bg);
  padding: calc(var(--space-y) / 4);
  border-radius: var(--radius-xl);
}
.nav__item {
  display: block;
}
.nav__link {
  display: block;
  padding: calc(var(--space-y) / 2) calc(var(--space-x) * 1.2);
  text-decoration: none;
  color: var(--fg-on-surface);
  font-weight: 500;
  border-radius: var(--radius-lg);
  white-space: nowrap;
  transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}
.nav__link:hover {
  background-color: var(--btn-ghost-bg-hover);
  color: var(--link-hover);
}
.header__burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: calc(var(--space-y) / 2);
  flex-direction: column;
  justify-content: space-between;
  width: 2.5rem;
  height: 2rem;
}
.burger__line {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--fg-on-surface);
  border-radius: var(--radius-sm);
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
  .header__burger {
    display: flex;
  }
  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 70%;
    max-width: 300px;
    background-color: var(--surface-1);
    box-shadow: var(--shadow-lg);
    padding: calc(var(--space-y) * 2) var(--space-x);
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    z-index: 101;
    overflow-y: auto;
  }
  .header__nav.is-active {
    transform: translateX(0);
  }
  .header__nav.is-active + .header__burger .burger__line:nth-child(1) {
    transform: translateY(0.65rem) rotate(45deg);
  }
  .header__nav.is-active + .header__burger .burger__line:nth-child(2) {
    opacity: 0;
  }
  .header__nav.is-active + .header__burger .burger__line:nth-child(3) {
    transform: translateY(-0.65rem) rotate(-45deg);
  }
  .nav__list {
    flex-direction: column;
    background-color: transparent;
    padding: 0;
    gap: 0;
  }
  .nav__link {
    padding: calc(var(--space-y) * 0.8) 0;
    border-radius: 0;
    border-bottom: 1px solid var(--border-on-surface-light);
  }
  .nav__link:hover {
    background-color: transparent;
    color: var(--link);
  }
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 2.5rem 1.5rem;
    background-color: #f8f9fa;
    color: #333;
    font-family: sans-serif;
    line-height: 1.6;
    border-top: 1px solid #dee2e6;
  }
  .footer-left, .footer-right {
    box-sizing: border-box;
  }
  .footer-left {
    flex: 1 1 300px;
    margin-bottom: 2rem;
    padding-right: 2rem;
    min-width: 250px;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    min-width: 250px;
  }
  .footer-logo {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #0056b3;
  }
  .copyright {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
  }
  .legal-links {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }
  .legal-links a {
    color: #0056b3;
    text-decoration: none;
  }
  .legal-links a:hover {
    text-decoration: underline;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #777;
    font-style: italic;
    margin-top: 1rem;
    line-height: 1.4;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
  }
  .footer-nav a:hover {
    color: #0056b3;
    text-decoration: underline;
  }
  .footer-contacts p {
    margin: 0.4rem 0;
  }
  .footer-contacts a {
    color: #0056b3;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    text-decoration: underline;
  }
  .footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
  }
  .footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #ddd;
    color: #333;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
  }
  .footer-social a:hover {
    background-color: #ccc;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      padding: 2rem 1rem;
    }
    .footer-left, .footer-right {
      padding-right: 0;
      width: 100%;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 0.8rem;
    }
  }

.cookie-lv2 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-md);
    }

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

    .cookie-lv2__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

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

    .cookie-lv2__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

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

.security {

        color: var(--fg-on-primary);
        background: var(--gradient-hero);
        padding: clamp(16px, 3vw, 40px);
    }

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

    .security .security__h {
        margin-bottom: var(--space-y);
    }

    .security h1 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 0.5rem;
        color: var(--fg-on-primary);
    }

    .security .security__sections {
        display: flex;
        flex-direction: column;
        gap: var(--space-y);
    }

    .security .security__section {
        background: var(--surface-light);
        padding: clamp(24px, 3vw, 32px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--ring);
        box-shadow: var(--shadow-sm);
    }

    .security h2 {
        font-size: clamp(20px, 3vw, 24px);
        margin: 0 0 1.5rem;
        color: var(--fg-on-primary);
    }

    .security .security__form {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .security .security__form input {
        padding: 0.875rem;
        border-radius: var(--radius-md);
        border: 1px solid var(--ring);

        outline: none;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .security .security__form input:focus {
        border-color: var(--bg-primary);
        box-shadow: 0 0 0 3px var(--ring);
    }

    .security .security__form button {
        padding: 0.875rem 2rem;
        border-radius: var(--radius-lg);
        border: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 600;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        align-self: flex-start;
    }

    .security .security__form button:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
    }

    .security .security__sessions {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .security .security__session {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem;
        background: var(--gradient-hero);
        border-radius: var(--radius-md);
        border: 1px solid var(--ring);
    }

    .security h4 {
        margin: 0 0 0.25rem;
        color: var(--fg-on-primary);
    }

    .security .security__session p {
        margin: 0;
        color: var(--neutral-600);
        font-size: 0.875rem;
    }

    .security .security__logout {
        padding: 0.5rem 1rem;
        border-radius: var(--radius-md);
        border: 1px solid var(--ring);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
    }

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

.story-folio-l6 {
        padding: clamp(3.2rem, 7vw, 5.7rem) var(--space-x);
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

    .story-folio-l6__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .story-folio-l6__head {
        margin-bottom: 1rem;
    }

    .story-folio-l6__head p {
        margin: 0;
        color: var(--neutral-600);
        font-size: .82rem;
        text-transform: uppercase;
        letter-spacing: .1em;
    }

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

    .story-folio-l6__head span {
        display: block;
        margin-top: .8rem;
        color: var(--neutral-600);
    }

    .story-folio-l6__body {
        display: grid;
        grid-template-columns: 1fr .9fr;
        gap: 1rem;
        align-items: center;
    }

    .story-folio-l6__body p {
        margin: 0 0 .75rem;
        color: var(--neutral-600);
    }

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

    @media (max-width: 820px) {
        .story-folio-l6__body {
            grid-template-columns: 1fr;
        }
    }

.header {
  background-color: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  padding: var(--space-y) 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.header__container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
}
.header__logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}
.header__logo:hover {
  color: var(--accent);
}
.header__nav {
  display: flex;
}
.nav__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: calc(var(--gap) / 2);
  background-color: var(--chip-bg);
  padding: calc(var(--space-y) / 4);
  border-radius: var(--radius-xl);
}
.nav__item {
  display: block;
}
.nav__link {
  display: block;
  padding: calc(var(--space-y) / 2) calc(var(--space-x) * 1.2);
  text-decoration: none;
  color: var(--fg-on-surface);
  font-weight: 500;
  border-radius: var(--radius-lg);
  white-space: nowrap;
  transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}
.nav__link:hover {
  background-color: var(--btn-ghost-bg-hover);
  color: var(--link-hover);
}
.header__burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: calc(var(--space-y) / 2);
  flex-direction: column;
  justify-content: space-between;
  width: 2.5rem;
  height: 2rem;
}
.burger__line {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--fg-on-surface);
  border-radius: var(--radius-sm);
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
  .header__burger {
    display: flex;
  }
  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 70%;
    max-width: 300px;
    background-color: var(--surface-1);
    box-shadow: var(--shadow-lg);
    padding: calc(var(--space-y) * 2) var(--space-x);
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    z-index: 101;
    overflow-y: auto;
  }
  .header__nav.is-active {
    transform: translateX(0);
  }
  .header__nav.is-active + .header__burger .burger__line:nth-child(1) {
    transform: translateY(0.65rem) rotate(45deg);
  }
  .header__nav.is-active + .header__burger .burger__line:nth-child(2) {
    opacity: 0;
  }
  .header__nav.is-active + .header__burger .burger__line:nth-child(3) {
    transform: translateY(-0.65rem) rotate(-45deg);
  }
  .nav__list {
    flex-direction: column;
    background-color: transparent;
    padding: 0;
    gap: 0;
  }
  .nav__link {
    padding: calc(var(--space-y) * 0.8) 0;
    border-radius: 0;
    border-bottom: 1px solid var(--border-on-surface-light);
  }
  .nav__link:hover {
    background-color: transparent;
    color: var(--link);
  }
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 2.5rem 1.5rem;
    background-color: #f8f9fa;
    color: #333;
    font-family: sans-serif;
    line-height: 1.6;
    border-top: 1px solid #dee2e6;
  }
  .footer-left, .footer-right {
    box-sizing: border-box;
  }
  .footer-left {
    flex: 1 1 300px;
    margin-bottom: 2rem;
    padding-right: 2rem;
    min-width: 250px;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    min-width: 250px;
  }
  .footer-logo {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #0056b3;
  }
  .copyright {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
  }
  .legal-links {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }
  .legal-links a {
    color: #0056b3;
    text-decoration: none;
  }
  .legal-links a:hover {
    text-decoration: underline;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #777;
    font-style: italic;
    margin-top: 1rem;
    line-height: 1.4;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
  }
  .footer-nav a:hover {
    color: #0056b3;
    text-decoration: underline;
  }
  .footer-contacts p {
    margin: 0.4rem 0;
  }
  .footer-contacts a {
    color: #0056b3;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    text-decoration: underline;
  }
  .footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
  }
  .footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #ddd;
    color: #333;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
  }
  .footer-social a:hover {
    background-color: #ccc;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      padding: 2rem 1rem;
    }
    .footer-left, .footer-right {
      padding-right: 0;
      width: 100%;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 0.8rem;
    }
  }

.cookie-lv2 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-md);
    }

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

    .cookie-lv2__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

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

    .cookie-lv2__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

    .form-layout-e button:hover {
        background: var(--bg-primary-hover);
    }

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

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

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

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

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

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

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

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

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

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

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

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

.connect {
        color: var(--accent-contrast);
        background: var(--accent);
        padding: clamp(32px, 5vw, 64px) clamp(16px, 4vw, 40px);
    }

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

    .connect .connect__header {
        text-align: center;
        margin-bottom: clamp(40px, 6vw, 56px);
    }

    .connect .connect__header h2 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 0.5rem;
    }

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

    .connect .connect__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
        gap: clamp(20px, 3vw, 28px);
    }

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

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

    .connect .connect__icon {
        font-size: clamp(40px, 7vw, 64px);
        width: clamp(80px, 12vw, 120px);
        height: clamp(80px, 12vw, 120px);
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-accent);
        border-radius: 50%;
    }

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

.header {
  background-color: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  padding: var(--space-y) 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.header__container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
}
.header__logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}
.header__logo:hover {
  color: var(--accent);
}
.header__nav {
  display: flex;
}
.nav__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: calc(var(--gap) / 2);
  background-color: var(--chip-bg);
  padding: calc(var(--space-y) / 4);
  border-radius: var(--radius-xl);
}
.nav__item {
  display: block;
}
.nav__link {
  display: block;
  padding: calc(var(--space-y) / 2) calc(var(--space-x) * 1.2);
  text-decoration: none;
  color: var(--fg-on-surface);
  font-weight: 500;
  border-radius: var(--radius-lg);
  white-space: nowrap;
  transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}
.nav__link:hover {
  background-color: var(--btn-ghost-bg-hover);
  color: var(--link-hover);
}
.header__burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: calc(var(--space-y) / 2);
  flex-direction: column;
  justify-content: space-between;
  width: 2.5rem;
  height: 2rem;
}
.burger__line {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--fg-on-surface);
  border-radius: var(--radius-sm);
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
  .header__burger {
    display: flex;
  }
  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 70%;
    max-width: 300px;
    background-color: var(--surface-1);
    box-shadow: var(--shadow-lg);
    padding: calc(var(--space-y) * 2) var(--space-x);
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    z-index: 101;
    overflow-y: auto;
  }
  .header__nav.is-active {
    transform: translateX(0);
  }
  .header__nav.is-active + .header__burger .burger__line:nth-child(1) {
    transform: translateY(0.65rem) rotate(45deg);
  }
  .header__nav.is-active + .header__burger .burger__line:nth-child(2) {
    opacity: 0;
  }
  .header__nav.is-active + .header__burger .burger__line:nth-child(3) {
    transform: translateY(-0.65rem) rotate(-45deg);
  }
  .nav__list {
    flex-direction: column;
    background-color: transparent;
    padding: 0;
    gap: 0;
  }
  .nav__link {
    padding: calc(var(--space-y) * 0.8) 0;
    border-radius: 0;
    border-bottom: 1px solid var(--border-on-surface-light);
  }
  .nav__link:hover {
    background-color: transparent;
    color: var(--link);
  }
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 2.5rem 1.5rem;
    background-color: #f8f9fa;
    color: #333;
    font-family: sans-serif;
    line-height: 1.6;
    border-top: 1px solid #dee2e6;
  }
  .footer-left, .footer-right {
    box-sizing: border-box;
  }
  .footer-left {
    flex: 1 1 300px;
    margin-bottom: 2rem;
    padding-right: 2rem;
    min-width: 250px;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    min-width: 250px;
  }
  .footer-logo {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #0056b3;
  }
  .copyright {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
  }
  .legal-links {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }
  .legal-links a {
    color: #0056b3;
    text-decoration: none;
  }
  .legal-links a:hover {
    text-decoration: underline;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #777;
    font-style: italic;
    margin-top: 1rem;
    line-height: 1.4;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
  }
  .footer-nav a:hover {
    color: #0056b3;
    text-decoration: underline;
  }
  .footer-contacts p {
    margin: 0.4rem 0;
  }
  .footer-contacts a {
    color: #0056b3;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    text-decoration: underline;
  }
  .footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
  }
  .footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #ddd;
    color: #333;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
  }
  .footer-social a:hover {
    background-color: #ccc;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      padding: 2rem 1rem;
    }
    .footer-left, .footer-right {
      padding-right: 0;
      width: 100%;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 0.8rem;
    }
  }

.cookie-lv2 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-md);
    }

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

    .cookie-lv2__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

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

    .cookie-lv2__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

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

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

    .terms-layout-e .wrap {
        max-width: 900px;
        margin: 0 auto;
    }

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

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

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

    .terms-layout-e .rows {
        display: grid;
        gap: 10px;
    }

    .terms-layout-e article {
        border-left: 4px solid var(--brand);
        background: var(--surface-1);
        border-radius: var(--radius-sm);
        padding: 12px 12px 12px 14px;
        box-shadow: var(--shadow-sm);
    }

    .terms-layout-e .head h3 {
        margin: 0 0 8px;
    }

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

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

.header {
  background-color: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  padding: var(--space-y) 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.header__container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
}
.header__logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}
.header__logo:hover {
  color: var(--accent);
}
.header__nav {
  display: flex;
}
.nav__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: calc(var(--gap) / 2);
  background-color: var(--chip-bg);
  padding: calc(var(--space-y) / 4);
  border-radius: var(--radius-xl);
}
.nav__item {
  display: block;
}
.nav__link {
  display: block;
  padding: calc(var(--space-y) / 2) calc(var(--space-x) * 1.2);
  text-decoration: none;
  color: var(--fg-on-surface);
  font-weight: 500;
  border-radius: var(--radius-lg);
  white-space: nowrap;
  transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}
.nav__link:hover {
  background-color: var(--btn-ghost-bg-hover);
  color: var(--link-hover);
}
.header__burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: calc(var(--space-y) / 2);
  flex-direction: column;
  justify-content: space-between;
  width: 2.5rem;
  height: 2rem;
}
.burger__line {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--fg-on-surface);
  border-radius: var(--radius-sm);
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
  .header__burger {
    display: flex;
  }
  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 70%;
    max-width: 300px;
    background-color: var(--surface-1);
    box-shadow: var(--shadow-lg);
    padding: calc(var(--space-y) * 2) var(--space-x);
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    z-index: 101;
    overflow-y: auto;
  }
  .header__nav.is-active {
    transform: translateX(0);
  }
  .header__nav.is-active + .header__burger .burger__line:nth-child(1) {
    transform: translateY(0.65rem) rotate(45deg);
  }
  .header__nav.is-active + .header__burger .burger__line:nth-child(2) {
    opacity: 0;
  }
  .header__nav.is-active + .header__burger .burger__line:nth-child(3) {
    transform: translateY(-0.65rem) rotate(-45deg);
  }
  .nav__list {
    flex-direction: column;
    background-color: transparent;
    padding: 0;
    gap: 0;
  }
  .nav__link {
    padding: calc(var(--space-y) * 0.8) 0;
    border-radius: 0;
    border-bottom: 1px solid var(--border-on-surface-light);
  }
  .nav__link:hover {
    background-color: transparent;
    color: var(--link);
  }
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 2.5rem 1.5rem;
    background-color: #f8f9fa;
    color: #333;
    font-family: sans-serif;
    line-height: 1.6;
    border-top: 1px solid #dee2e6;
  }
  .footer-left, .footer-right {
    box-sizing: border-box;
  }
  .footer-left {
    flex: 1 1 300px;
    margin-bottom: 2rem;
    padding-right: 2rem;
    min-width: 250px;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    min-width: 250px;
  }
  .footer-logo {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #0056b3;
  }
  .copyright {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
  }
  .legal-links {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }
  .legal-links a {
    color: #0056b3;
    text-decoration: none;
  }
  .legal-links a:hover {
    text-decoration: underline;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #777;
    font-style: italic;
    margin-top: 1rem;
    line-height: 1.4;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
  }
  .footer-nav a:hover {
    color: #0056b3;
    text-decoration: underline;
  }
  .footer-contacts p {
    margin: 0.4rem 0;
  }
  .footer-contacts a {
    color: #0056b3;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    text-decoration: underline;
  }
  .footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
  }
  .footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #ddd;
    color: #333;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
  }
  .footer-social a:hover {
    background-color: #ccc;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      padding: 2rem 1rem;
    }
    .footer-left, .footer-right {
      padding-right: 0;
      width: 100%;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 0.8rem;
    }
  }

.cookie-lv2 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-md);
    }

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

    .cookie-lv2__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

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

    .cookie-lv2__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

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

.thank-mode-c {
        padding: clamp(56px, 10vw, 112px) 18px;
        background: linear-gradient(180deg, var(--fg-on-page), var(--bg-page));
        color: var(--fg-on-page);
    }

    .thank-mode-c .panel {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(30px, 4vw, 44px);
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
    }

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

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

    .thank-mode-c a {
        display: inline-block;
        margin-top: 17px;
        color: var(--link);
        text-decoration: none;
        border-bottom: 2px solid var(--link);
        padding-bottom: 2px;
    }

.header {
  background-color: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  padding: var(--space-y) 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.header__container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
}
.header__logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}
.header__logo:hover {
  color: var(--accent);
}
.header__nav {
  display: flex;
}
.nav__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: calc(var(--gap) / 2);
  background-color: var(--chip-bg);
  padding: calc(var(--space-y) / 4);
  border-radius: var(--radius-xl);
}
.nav__item {
  display: block;
}
.nav__link {
  display: block;
  padding: calc(var(--space-y) / 2) calc(var(--space-x) * 1.2);
  text-decoration: none;
  color: var(--fg-on-surface);
  font-weight: 500;
  border-radius: var(--radius-lg);
  white-space: nowrap;
  transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}
.nav__link:hover {
  background-color: var(--btn-ghost-bg-hover);
  color: var(--link-hover);
}
.header__burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: calc(var(--space-y) / 2);
  flex-direction: column;
  justify-content: space-between;
  width: 2.5rem;
  height: 2rem;
}
.burger__line {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--fg-on-surface);
  border-radius: var(--radius-sm);
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
  .header__burger {
    display: flex;
  }
  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 70%;
    max-width: 300px;
    background-color: var(--surface-1);
    box-shadow: var(--shadow-lg);
    padding: calc(var(--space-y) * 2) var(--space-x);
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    z-index: 101;
    overflow-y: auto;
  }
  .header__nav.is-active {
    transform: translateX(0);
  }
  .header__nav.is-active + .header__burger .burger__line:nth-child(1) {
    transform: translateY(0.65rem) rotate(45deg);
  }
  .header__nav.is-active + .header__burger .burger__line:nth-child(2) {
    opacity: 0;
  }
  .header__nav.is-active + .header__burger .burger__line:nth-child(3) {
    transform: translateY(-0.65rem) rotate(-45deg);
  }
  .nav__list {
    flex-direction: column;
    background-color: transparent;
    padding: 0;
    gap: 0;
  }
  .nav__link {
    padding: calc(var(--space-y) * 0.8) 0;
    border-radius: 0;
    border-bottom: 1px solid var(--border-on-surface-light);
  }
  .nav__link:hover {
    background-color: transparent;
    color: var(--link);
  }
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 2.5rem 1.5rem;
    background-color: #f8f9fa;
    color: #333;
    font-family: sans-serif;
    line-height: 1.6;
    border-top: 1px solid #dee2e6;
  }
  .footer-left, .footer-right {
    box-sizing: border-box;
  }
  .footer-left {
    flex: 1 1 300px;
    margin-bottom: 2rem;
    padding-right: 2rem;
    min-width: 250px;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    min-width: 250px;
  }
  .footer-logo {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #0056b3;
  }
  .copyright {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
  }
  .legal-links {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }
  .legal-links a {
    color: #0056b3;
    text-decoration: none;
  }
  .legal-links a:hover {
    text-decoration: underline;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #777;
    font-style: italic;
    margin-top: 1rem;
    line-height: 1.4;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
  }
  .footer-nav a:hover {
    color: #0056b3;
    text-decoration: underline;
  }
  .footer-contacts p {
    margin: 0.4rem 0;
  }
  .footer-contacts a {
    color: #0056b3;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    text-decoration: underline;
  }
  .footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
  }
  .footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #ddd;
    color: #333;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
  }
  .footer-social a:hover {
    background-color: #ccc;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      padding: 2rem 1rem;
    }
    .footer-left, .footer-right {
      padding-right: 0;
      width: 100%;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 0.8rem;
    }
  }

.cookie-lv2 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-md);
    }

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

    .cookie-lv2__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

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

    .cookie-lv2__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

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

.err-slab-d {
        padding: clamp(56px, 10vw, 114px) 20px;
        background: var(--accent);
        color: var(--neutral-0);
    }

    .err-slab-d .plate {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(30px, 4vw, 50px);
        border-radius: var(--radius-xl);
        background: linear-gradient(160deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
        border: 1px solid rgba(255, 255, 255, 0.25);
    }

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

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

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