:root {
  --font-family: "Noto Sans", sans-serif;
  --font-size-base: 18.6px;
  --line-height-base: 1.37;

  --max-w: 1120px;
  --space-x: 0.99rem;
  --space-y: 1.5rem;
  --gap: 1.56rem;

  --radius-xl: 1.33rem;
  --radius-lg: 1rem;
  --radius-md: 0.55rem;
  --radius-sm: 0.31rem;

  --shadow-sm: 0 3px 6px rgba(0,0,0,0.18);
  --shadow-md: 0 12px 20px rgba(0,0,0,0.23);
  --shadow-lg: 0 22px 46px rgba(0,0,0,0.28);

  --overlay: rgba(255, 255, 255, 0.85);
  --anim-duration: 240ms;
  --anim-ease: ease;
  --random-number: 1;

  --brand: #2E8B57;
  --brand-contrast: #FFFFFF;
  --accent: #38B2AC;
  --accent-contrast: #FFFFFF;

  --neutral-0: #FFFFFF;
  --neutral-100: #F7FAFC;
  --neutral-300: #CBD5E0;
  --neutral-600: #718096;
  --neutral-800: #2D3748;
  --neutral-900: #1A202C;

  --bg-page: #FFFFFF;
  --fg-on-page: #2D3748;

  --bg-alt: #F7FAFC;
  --fg-on-alt: #4A5568;

  --surface-1: #FFFFFF;
  --surface-2: #F7FAFC;
  --fg-on-surface: #2D3748;
  --border-on-surface: #E2E8F0;

  --surface-light: rgba(255, 255, 255, 0.95);
  --fg-on-surface-light: #4A5568;
  --border-on-surface-light: rgba(226, 232, 240, 0.7);

  --bg-primary: #2E8B57;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #276749;
  --ring: rgba(46, 139, 87, 0.4);

  --bg-accent: #E6FFFA;
  --fg-on-accent: #234E52;
  --bg-accent-hover: #319795;

  --link: #2E8B57;
  --link-hover: #276749;

  --gradient-hero: linear-gradient(135deg, #F0FFF4 0%, #E6FFFA 100%);
  --gradient-accent: linear-gradient(90deg, #2E8B57 0%, #38B2AC 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);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
  }

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

  .logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand);
    letter-spacing: -0.5px;
  }

  .cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color 0.2s var(--anim-ease);
  }

  .cta-button:hover {
    background-color: var(--bg-accent-hover);
  }

  .main-nav {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface-light);
  }

  .nav-list {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    list-style: none;
    display: flex;
    justify-content: center;
    gap: calc(var(--gap) * 2);
  }

  .nav-list a {
    color: var(--link);
    text-decoration: none;
    padding: 1rem 0;
    display: inline-block;
    font-weight: 500;
    position: relative;
    transition: color 0.2s var(--anim-ease);
  }

  .nav-list a:hover {
    color: var(--link-hover);
  }

  .nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0.75rem;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width 0.3s var(--anim-ease);
  }

  .nav-list a:hover::after {
    width: 100%;
  }

  .burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 1rem;
    flex-direction: column;
    justify-content: space-between;
    width: 44px;
    height: 44px;
    margin-left: auto;
  }

  .burger-menu span {
    display: block;
    height: 3px;
    width: 24px;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform 0.3s var(--anim-ease), opacity 0.3s var(--anim-ease);
  }

  /* Мобильная версия */
  @media (max-width: 767px) {
    .header-top {
      padding: calc(var(--space-y) * 0.75) var(--space-x);
    }

    .main-nav {
      position: relative;
      padding: 0 var(--space-x);
    }

    .burger-menu {
      display: flex;
    }

    .nav-list {
      display: none;
      flex-direction: column;
      gap: 0;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: var(--surface-2);
      padding: 0;
      box-shadow: var(--shadow-md);
      z-index: 1000;
      border-top: 1px solid var(--border-on-surface-light);
    }

    .nav-list.active {
      display: flex;
    }

    .nav-list li {
      border-bottom: 1px solid var(--border-on-surface-light);
    }

    .nav-list a {
      padding: 1rem var(--space-x);
      width: 100%;
      display: block;
    }

    .nav-list a::after {
      display: none;
    }

    /* Анимация бургера при открытии */
    .burger-menu[aria-expanded="true"] span:nth-child(1) {
      transform: translateY(10px) rotate(45deg);
    }

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

    .burger-menu[aria-expanded="true"] span:nth-child(3) {
      transform: translateY(-10px) rotate(-45deg);
    }
  }

.site-footer {
  background-color: #f8f9fa;
  border-top: 1px solid #eaeaea;
  color: #333;
  font-family: system-ui, -apple-system, sans-serif;
  padding: 2.5rem 1rem;
  margin-top: 3rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-container {
    grid-template-columns: repeat(3, 1fr);
    text-align: left;
  }
  .footer-legal {
    grid-column: 1 / -1;
  }
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2a7d3e;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.4;
  margin: 0;
}

.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .nav-list {
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.8rem;
  }
}

.nav-list a {
  color: #444;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.nav-list a:hover {
  color: #2a7d3e;
  text-decoration: underline;
}

.footer-contact address {
  font-style: normal;
  line-height: 1.6;
}

.footer-contact p {
  margin: 0.4rem 0;
  font-size: 0.95rem;
}

.footer-contact a {
  color: #2a7d3e;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-legal {
  border-top: 1px solid #ddd;
  padding-top: 1.5rem;
  font-size: 0.85rem;
  color: #777;
}

.legal-links {
  margin-bottom: 0.8rem;
}

.legal-links a {
  color: #555;
  text-decoration: none;
  margin: 0 0.3rem;
}

.legal-links a:hover {
  text-decoration: underline;
  color: #2a7d3e;
}

.copyright-disclaimer {
  margin: 0;
  line-height: 1.5;
}

.cookie-lv10 {
        position: fixed;
        right: var(--space-x);
        bottom: var(--space-y);
        width: min(420px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-lv10__body {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        color: var(--fg-on-page);
        padding: 12px;
        box-shadow: var(--shadow-sm);
    }

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

    .cookie-lv10__actions {
        margin-top: 10px;
        display: flex;
        justify-content: flex-end;
        gap: 8px;
    }

    .cookie-lv10__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-lv10__actions button[data-choice='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

.intro-flag-c11 {
        padding: clamp(3.8rem, 8vw, 6.8rem) var(--space-x);
        background: linear-gradient(160deg, var(--bg-primary), var(--bg-primary-hover));
        color: var(--fg-on-primary);
    }

    .intro-flag-c11__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1.2fr .8fr;
        gap: 1rem;
    }

    .intro-flag-c11__left, .intro-flag-c11__right {
        padding: 1.1rem;
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .intro-flag-c11__tag {
        display: inline-flex;
        padding: .4rem .75rem;
        border-radius: 999px;
        background: var(--chip-bg);
    }

    .intro-flag-c11__left h1 {
        margin: .8rem 0 0;
        font-size: clamp(2.5rem, 5vw, 4.6rem);
        line-height: 1;
    }

    .intro-flag-c11__left p {
        margin: .9rem 0 0;
        color: rgba(255, 255, 255, .86);
    }

    .intro-flag-c11__right {
        display: grid;
        align-content: center;
        gap: .65rem;
    }

    .intro-flag-c11__right div {
        font-size: clamp(2.8rem, 5vw, 4rem);
        font-weight: 700;
    }

    .intro-flag-c11__right span {
        color: rgba(255, 255, 255, .82);
    }

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

.values-ranks-l10 {
        padding: clamp(3.1rem, 7vw, 5.7rem) var(--space-x);
        background: linear-gradient(180deg, var(--surface-1), var(--bg-alt));
        color: var(--fg-on-page);
    }

    .values-ranks-l10__wrap {
        max-width: 58rem;
        margin: 0 auto;
    }

    .values-ranks-l10__head {
        margin-bottom: 1.1rem;
        text-align: center;
    }

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

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

    .values-ranks-l10__head span {
        display: block;
        margin-top: .75rem;
        color: var(--neutral-600);
    }

    .values-ranks-l10__rows {
        display: grid;
        gap: .8rem;
    }

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

    .values-ranks-l10__rows strong {
        display: grid;
        place-items: center;
        width: 3rem;
        height: 3rem;
        border-radius: 999px;
        background: var(--surface-2);
        color: var(--brand);
    }

    .values-ranks-l10__rows h3 {
        margin: 0;
    }

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

    .values-ranks-l10__rows small {
        display: block;
        margin-top: .55rem;
        color: var(--neutral-800);
    }

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

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

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

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

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

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

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

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

    .next-pulse-c3__copy {
        margin-top: 1rem;
        color: rgba(255, 255, 255, .86);
    }

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

.visual-board-l4 {
        padding: clamp(3.1rem, 7vw, 5.7rem) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    .visual-board-l4__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .visual-board-l4__head {
        margin-bottom: 1rem;
        text-align: center;
    }

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

    .visual-board-l4__head p {
        margin: .6rem 0 0;
        color: var(--neutral-600);
    }

    .visual-board-l4__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
        gap: var(--gap);
    }

    .visual-board-l4__grid figure {
        margin: 0;
        padding: .9rem;
        border-radius: var(--radius-xl);
        background: var(--bg-alt);
        border: 1px solid var(--border-on-surface-light);
    }

    .visual-board-l4__grid figcaption strong {
        color: var(--brand);
    }

    .visual-board-l4__grid h3 {
        margin: .45rem 0 .35rem;
    }

    .visual-board-l4__grid p {
        margin: 0;
        color: var(--neutral-600);
    }

    .visual-board-l4__grid img {
        display: block;
        width: 100%;
        height: 12rem;
        object-fit: cover;
        border-radius: var(--radius-md);
        margin-top: .85rem;
    }

header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
  }

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

  .logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand);
    letter-spacing: -0.5px;
  }

  .cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color 0.2s var(--anim-ease);
  }

  .cta-button:hover {
    background-color: var(--bg-accent-hover);
  }

  .main-nav {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface-light);
  }

  .nav-list {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    list-style: none;
    display: flex;
    justify-content: center;
    gap: calc(var(--gap) * 2);
  }

  .nav-list a {
    color: var(--link);
    text-decoration: none;
    padding: 1rem 0;
    display: inline-block;
    font-weight: 500;
    position: relative;
    transition: color 0.2s var(--anim-ease);
  }

  .nav-list a:hover {
    color: var(--link-hover);
  }

  .nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0.75rem;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width 0.3s var(--anim-ease);
  }

  .nav-list a:hover::after {
    width: 100%;
  }

  .burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 1rem;
    flex-direction: column;
    justify-content: space-between;
    width: 44px;
    height: 44px;
    margin-left: auto;
  }

  .burger-menu span {
    display: block;
    height: 3px;
    width: 24px;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform 0.3s var(--anim-ease), opacity 0.3s var(--anim-ease);
  }

  /* Мобильная версия */
  @media (max-width: 767px) {
    .header-top {
      padding: calc(var(--space-y) * 0.75) var(--space-x);
    }

    .main-nav {
      position: relative;
      padding: 0 var(--space-x);
    }

    .burger-menu {
      display: flex;
    }

    .nav-list {
      display: none;
      flex-direction: column;
      gap: 0;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: var(--surface-2);
      padding: 0;
      box-shadow: var(--shadow-md);
      z-index: 1000;
      border-top: 1px solid var(--border-on-surface-light);
    }

    .nav-list.active {
      display: flex;
    }

    .nav-list li {
      border-bottom: 1px solid var(--border-on-surface-light);
    }

    .nav-list a {
      padding: 1rem var(--space-x);
      width: 100%;
      display: block;
    }

    .nav-list a::after {
      display: none;
    }

    /* Анимация бургера при открытии */
    .burger-menu[aria-expanded="true"] span:nth-child(1) {
      transform: translateY(10px) rotate(45deg);
    }

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

    .burger-menu[aria-expanded="true"] span:nth-child(3) {
      transform: translateY(-10px) rotate(-45deg);
    }
  }

.site-footer {
  background-color: #f8f9fa;
  border-top: 1px solid #eaeaea;
  color: #333;
  font-family: system-ui, -apple-system, sans-serif;
  padding: 2.5rem 1rem;
  margin-top: 3rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-container {
    grid-template-columns: repeat(3, 1fr);
    text-align: left;
  }
  .footer-legal {
    grid-column: 1 / -1;
  }
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2a7d3e;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.4;
  margin: 0;
}

.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .nav-list {
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.8rem;
  }
}

.nav-list a {
  color: #444;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.nav-list a:hover {
  color: #2a7d3e;
  text-decoration: underline;
}

.footer-contact address {
  font-style: normal;
  line-height: 1.6;
}

.footer-contact p {
  margin: 0.4rem 0;
  font-size: 0.95rem;
}

.footer-contact a {
  color: #2a7d3e;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-legal {
  border-top: 1px solid #ddd;
  padding-top: 1.5rem;
  font-size: 0.85rem;
  color: #777;
}

.legal-links {
  margin-bottom: 0.8rem;
}

.legal-links a {
  color: #555;
  text-decoration: none;
  margin: 0 0.3rem;
}

.legal-links a:hover {
  text-decoration: underline;
  color: #2a7d3e;
}

.copyright-disclaimer {
  margin: 0;
  line-height: 1.5;
}

.cookie-lv10 {
        position: fixed;
        right: var(--space-x);
        bottom: var(--space-y);
        width: min(420px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-lv10__body {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        color: var(--fg-on-page);
        padding: 12px;
        box-shadow: var(--shadow-sm);
    }

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

    .cookie-lv10__actions {
        margin-top: 10px;
        display: flex;
        justify-content: flex-end;
        gap: 8px;
    }

    .cookie-lv10__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-lv10__actions button[data-choice='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

.identity-cv1 {
        padding: clamp(56px, 8vw, 104px) clamp(16px, 4vw, 40px);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

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

    .identity-cv1__head {
        text-align: center;
        margin-bottom: 18px;
    }

    .identity-cv1__head p {
        margin: 0;
        opacity: .9;
        letter-spacing: .08em;
        text-transform: uppercase;
    }

    .identity-cv1__head h2 {
        margin: 8px 0;
        font-size: clamp(30px, 5vw, 52px);
    }

    .identity-cv1__head span {
        display: block;
        max-width: 74ch;
        margin: 0 auto;
        opacity: .92;
    }

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

    .identity-cv1__grid article {
        border: 1px solid rgba(255, 255, 255, 0.25);
        background: rgba(255, 255, 255, 0.12);
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-md);
    }

    .identity-cv1__icon {
        font-size: 1.6rem;
        margin-bottom: 8px;
    }

    .identity-cv1__grid h3 {
        margin: 0;
    }

    .identity-cv1__grid p {
        margin: 7px 0;
        opacity: .92;
    }

    .identity-cv1__grid small {
        opacity: .9;
    }

.faq-layout-d {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: white;
        color: black;
    }

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

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

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

    .faq-layout-d .section-head p {
        margin: 10px auto 0;
        max-width: 68ch;
    }

    .faq-layout-d .cards {
        display: grid;
        gap: var(--gap);
        grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    }

    .faq-layout-d .card {
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, .22);
        background: var(--accent);
        color: var(--accent-contrast);
        padding: var(--space-y) var(--space-x);
    }

    .faq-layout-d .card h3 {
        margin: 0;
        font-size: 1.05rem;
    }

    .faq-layout-d .card p {
        margin: 9px 0 0;
        color: var(--neutral-100);
    }

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

    .story-metrics-c3__wrap {
        max-width: 60rem;
        margin: 0 auto;
    }

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

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

    .story-metrics-c3__head span {
        display: block;
        margin-top: .8rem;
        color: rgba(255, 255, 255, .86);
    }

    .story-metrics-c3__panel {
        margin-top: 1rem;
        display: grid;
        grid-template-columns: 1.1fr .9fr;
        gap: 1rem;
        padding: 1rem;
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .story-metrics-c3__text p {
        margin: 0 0 .75rem;
        color: rgba(255, 255, 255, .86);
    }

    .story-metrics-c3__stats {
        display: grid;
        gap: .75rem;
    }

    .story-metrics-c3__stats div {
        padding: .85rem;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .12);
    }

    .story-metrics-c3__stats span {
        display: block;
        margin-top: .25rem;
        color: rgba(255, 255, 255, .82);
    }

    .story-metrics-c3__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) {
        .story-metrics-c3__panel {
            grid-template-columns: 1fr;
        }
    }

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

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

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

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

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

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

    .partners .partners__item {
        text-align: center;
        background: var(--bg-page);
        border-radius: var(--radius-lg);
    }

    .partners .partners__logo {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: clamp(20px, 3vw, 28px);
    }

    .partners .partners__logo img {
        width: 100%;
        border-top-left-radius: var(--radius-lg);
        border-top-right-radius: var(--radius-lg);
    }

    .partners .partners__text {
        padding: var(--space-y)
    }

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

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

header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
  }

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

  .logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand);
    letter-spacing: -0.5px;
  }

  .cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color 0.2s var(--anim-ease);
  }

  .cta-button:hover {
    background-color: var(--bg-accent-hover);
  }

  .main-nav {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface-light);
  }

  .nav-list {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    list-style: none;
    display: flex;
    justify-content: center;
    gap: calc(var(--gap) * 2);
  }

  .nav-list a {
    color: var(--link);
    text-decoration: none;
    padding: 1rem 0;
    display: inline-block;
    font-weight: 500;
    position: relative;
    transition: color 0.2s var(--anim-ease);
  }

  .nav-list a:hover {
    color: var(--link-hover);
  }

  .nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0.75rem;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width 0.3s var(--anim-ease);
  }

  .nav-list a:hover::after {
    width: 100%;
  }

  .burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 1rem;
    flex-direction: column;
    justify-content: space-between;
    width: 44px;
    height: 44px;
    margin-left: auto;
  }

  .burger-menu span {
    display: block;
    height: 3px;
    width: 24px;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform 0.3s var(--anim-ease), opacity 0.3s var(--anim-ease);
  }

  /* Мобильная версия */
  @media (max-width: 767px) {
    .header-top {
      padding: calc(var(--space-y) * 0.75) var(--space-x);
    }

    .main-nav {
      position: relative;
      padding: 0 var(--space-x);
    }

    .burger-menu {
      display: flex;
    }

    .nav-list {
      display: none;
      flex-direction: column;
      gap: 0;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: var(--surface-2);
      padding: 0;
      box-shadow: var(--shadow-md);
      z-index: 1000;
      border-top: 1px solid var(--border-on-surface-light);
    }

    .nav-list.active {
      display: flex;
    }

    .nav-list li {
      border-bottom: 1px solid var(--border-on-surface-light);
    }

    .nav-list a {
      padding: 1rem var(--space-x);
      width: 100%;
      display: block;
    }

    .nav-list a::after {
      display: none;
    }

    /* Анимация бургера при открытии */
    .burger-menu[aria-expanded="true"] span:nth-child(1) {
      transform: translateY(10px) rotate(45deg);
    }

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

    .burger-menu[aria-expanded="true"] span:nth-child(3) {
      transform: translateY(-10px) rotate(-45deg);
    }
  }

.site-footer {
  background-color: #f8f9fa;
  border-top: 1px solid #eaeaea;
  color: #333;
  font-family: system-ui, -apple-system, sans-serif;
  padding: 2.5rem 1rem;
  margin-top: 3rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-container {
    grid-template-columns: repeat(3, 1fr);
    text-align: left;
  }
  .footer-legal {
    grid-column: 1 / -1;
  }
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2a7d3e;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.4;
  margin: 0;
}

.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .nav-list {
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.8rem;
  }
}

.nav-list a {
  color: #444;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.nav-list a:hover {
  color: #2a7d3e;
  text-decoration: underline;
}

.footer-contact address {
  font-style: normal;
  line-height: 1.6;
}

.footer-contact p {
  margin: 0.4rem 0;
  font-size: 0.95rem;
}

.footer-contact a {
  color: #2a7d3e;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-legal {
  border-top: 1px solid #ddd;
  padding-top: 1.5rem;
  font-size: 0.85rem;
  color: #777;
}

.legal-links {
  margin-bottom: 0.8rem;
}

.legal-links a {
  color: #555;
  text-decoration: none;
  margin: 0 0.3rem;
}

.legal-links a:hover {
  text-decoration: underline;
  color: #2a7d3e;
}

.copyright-disclaimer {
  margin: 0;
  line-height: 1.5;
}

.cookie-lv10 {
        position: fixed;
        right: var(--space-x);
        bottom: var(--space-y);
        width: min(420px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-lv10__body {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        color: var(--fg-on-page);
        padding: 12px;
        box-shadow: var(--shadow-sm);
    }

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

    .cookie-lv10__actions {
        margin-top: 10px;
        display: flex;
        justify-content: flex-end;
        gap: 8px;
    }

    .cookie-lv10__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-lv10__actions button[data-choice='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

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

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

    .index-feedback-list__h {
        text-align: center;
        margin-bottom: clamp(22px, 5vw, 44px);

        transform: translateY(-18px);
    }

    .index-feedback-list__eyebrow {
        margin: 0 0 10px;
        text-transform: uppercase;
        letter-spacing: 0.22em;
        font-size: 12px;
        color: var(--neutral-600);
    }

    .index-feedback-list__h h2 {
        margin: 0;
        font-size: clamp(26px, 4.4vw, 44px);
        letter-spacing: -0.02em;
        color: var(--fg-on-page);
    }

    .index-feedback-list__list {
        display: grid;
        gap: 12px;
    }

    .index-feedback-list__row {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-light);
        box-shadow: var(--shadow-sm);
        overflow: hidden;

        transform: translateY(24px);
    }

    .index-feedback-list__q {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        cursor: pointer;
        padding: 14px 16px;
        border: 0;
        background: transparent;
        color: var(--fg-on-page);
        font: inherit;
        text-align: left;
    }

    .index-feedback-list__who {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        min-width: 0;
    }

    .index-feedback-list__avatar {
        width: 36px;
        height: 36px;
        border-radius: 12px;
        background: var(--bg-accent);
        border: 1px solid var(--border-on-surface);
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
    }

    .index-feedback-list__name {
        font-weight: 800;
        font-size: 14px;
        color: var(--fg-on-page);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 18ch;
    }

    .index-feedback-list__meta {
        font-size: 12px;
        color: var(--neutral-600);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 24ch;
    }

    .index-feedback-list__rating {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        flex: 0 0 auto;
        padding: 6px 10px;
        border-radius: 999px;
        background: var(--surface-2);
        border: 1px solid var(--border-on-surface);
    }

    .index-feedback-list__stars {
        color: var(--accent);
        letter-spacing: 0.08em;
        font-size: 13px;
        line-height: 1;
    }

    .index-feedback-list__score {
        font-weight: 800;
        font-size: 12px;
        color: var(--fg-on-page);
    }

    .index-feedback-list__a {
        display: none;
        padding: 0 16px 14px;
        color: var(--neutral-800);
        overflow: hidden;
    }

    .index-feedback-list__a p {
        margin: 0;
        font-size: 14px;
        line-height: 1.65;
        color: var(--fg-on-surface-light);
    }

    .index-feedback-list__chip {
        display: inline-flex;
        margin-top: 10px;
        padding: 6px 10px;
        border-radius: 999px;
        background: var(--bg-primary);
        border: 1px solid var(--ring);
        color: var(--fg-on-primary);
        letter-spacing: 0.14em;
        text-transform: uppercase;
        font-size: 10px;
    }

    @media (max-width: 560px) {
        .index-feedback-list__q {
            align-items: flex-start;
        }

        .index-feedback-list__rating {
            margin-top: 2px;
        }

        .index-feedback-list__meta {
            display: none;
        }
    }

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

    .hiw-split-c6__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        gap: 1.5rem;
        align-items: center;
        flex-wrap: wrap;
    }

    .hiw-split-c6__media {
        flex: 1 1 18rem;
        order: var(--random-number);
    }

    .hiw-split-c6__content {
        flex: 1 1 22rem;
        order: calc(3 - var(--random-number));
    }

    .hiw-split-c6__media img {
        display: block;
        width: 100%;
        border-radius: var(--radius-xl);
        border: 1px solid rgba(255, 255, 255, .18);
        box-shadow: var(--shadow-lg);
    }

    .hiw-split-c6__content p:first-child {
        margin: 0;
        color: rgba(255, 255, 255, .78);
        text-transform: uppercase;
        letter-spacing: .12em;
        font-size: .82rem;
    }

    .hiw-split-c6__content h2 {
        margin: .55rem 0 0;
        font-size: clamp(2rem, 4vw, 3.1rem);
    }

    .hiw-split-c6__content strong {
        display: block;
        margin-top: .8rem;
        color: var(--bg-accent);
    }

    .hiw-split-c6__copy {
        margin: .75rem 0 0;
        color: rgba(255, 255, 255, .85);
    }

    .hiw-split-c6__content ul {
        margin: 1rem 0 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: .65rem;
    }

    .hiw-split-c6__content li {
        padding: .8rem .9rem;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .16);
    }

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

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

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

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

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

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

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

.features__icon--chip {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

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

.plans-cv1 {
        padding: clamp(54px, 7vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--gradient-accent);
        color: var(--accent-contrast);
    }

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

    .plans-cv1__head {
        margin-bottom: 16px;
    }

    .plans-cv1__head h2 {
        margin: 0;
        font-size: clamp(30px, 5vw, 48px);
    }

    .plans-cv1__head p {
        margin: 8px 0 0;
        opacity: .9;
        max-width: 72ch;
    }

    .plans-cv1__grid {
        display: grid;
        gap: var(--gap);
        grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    }

    .plans-cv1__card {
        border-radius: var(--radius-lg);
        border: 1px solid rgba(0, 0, 0, 0.12);
        background: rgba(255, 255, 255, 0.36);
        color: var(--fg-on-page);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-md);
    }

    .plans-cv1__line {
        display: flex;
        justify-content: space-between;
        gap: 8px;
        align-items: center;
    }

    .plans-cv1__line h3 {
        margin: 0;
    }

    .plans-cv1__line span {
        font-size: .82rem;
        padding: 4px 8px;
        border-radius: 999px;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    .plans-cv1__price {
        margin: 10px 0 6px;
        font-size: 1.45rem;
        font-weight: 800;
        color: var(--brand);
    }

    .plans-cv1__desc {
        margin: 0;
        color: var(--neutral-600);
    }

    .plans-cv1__card ul {
        margin: 10px 0 0;
        padding-left: 18px;
        display: grid;
        gap: 5px;
        color: var(--neutral-800);
    }

    .plans-cv1__card button {
        width: 100%;
        margin-top: 10px;
        border: 0;
        border-radius: var(--radius-sm);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: 9px 12px;
    }

header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
  }

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

  .logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand);
    letter-spacing: -0.5px;
  }

  .cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color 0.2s var(--anim-ease);
  }

  .cta-button:hover {
    background-color: var(--bg-accent-hover);
  }

  .main-nav {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface-light);
  }

  .nav-list {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    list-style: none;
    display: flex;
    justify-content: center;
    gap: calc(var(--gap) * 2);
  }

  .nav-list a {
    color: var(--link);
    text-decoration: none;
    padding: 1rem 0;
    display: inline-block;
    font-weight: 500;
    position: relative;
    transition: color 0.2s var(--anim-ease);
  }

  .nav-list a:hover {
    color: var(--link-hover);
  }

  .nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0.75rem;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width 0.3s var(--anim-ease);
  }

  .nav-list a:hover::after {
    width: 100%;
  }

  .burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 1rem;
    flex-direction: column;
    justify-content: space-between;
    width: 44px;
    height: 44px;
    margin-left: auto;
  }

  .burger-menu span {
    display: block;
    height: 3px;
    width: 24px;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform 0.3s var(--anim-ease), opacity 0.3s var(--anim-ease);
  }

  /* Мобильная версия */
  @media (max-width: 767px) {
    .header-top {
      padding: calc(var(--space-y) * 0.75) var(--space-x);
    }

    .main-nav {
      position: relative;
      padding: 0 var(--space-x);
    }

    .burger-menu {
      display: flex;
    }

    .nav-list {
      display: none;
      flex-direction: column;
      gap: 0;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: var(--surface-2);
      padding: 0;
      box-shadow: var(--shadow-md);
      z-index: 1000;
      border-top: 1px solid var(--border-on-surface-light);
    }

    .nav-list.active {
      display: flex;
    }

    .nav-list li {
      border-bottom: 1px solid var(--border-on-surface-light);
    }

    .nav-list a {
      padding: 1rem var(--space-x);
      width: 100%;
      display: block;
    }

    .nav-list a::after {
      display: none;
    }

    /* Анимация бургера при открытии */
    .burger-menu[aria-expanded="true"] span:nth-child(1) {
      transform: translateY(10px) rotate(45deg);
    }

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

    .burger-menu[aria-expanded="true"] span:nth-child(3) {
      transform: translateY(-10px) rotate(-45deg);
    }
  }

.site-footer {
  background-color: #f8f9fa;
  border-top: 1px solid #eaeaea;
  color: #333;
  font-family: system-ui, -apple-system, sans-serif;
  padding: 2.5rem 1rem;
  margin-top: 3rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-container {
    grid-template-columns: repeat(3, 1fr);
    text-align: left;
  }
  .footer-legal {
    grid-column: 1 / -1;
  }
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2a7d3e;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.4;
  margin: 0;
}

.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .nav-list {
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.8rem;
  }
}

.nav-list a {
  color: #444;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.nav-list a:hover {
  color: #2a7d3e;
  text-decoration: underline;
}

.footer-contact address {
  font-style: normal;
  line-height: 1.6;
}

.footer-contact p {
  margin: 0.4rem 0;
  font-size: 0.95rem;
}

.footer-contact a {
  color: #2a7d3e;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-legal {
  border-top: 1px solid #ddd;
  padding-top: 1.5rem;
  font-size: 0.85rem;
  color: #777;
}

.legal-links {
  margin-bottom: 0.8rem;
}

.legal-links a {
  color: #555;
  text-decoration: none;
  margin: 0 0.3rem;
}

.legal-links a:hover {
  text-decoration: underline;
  color: #2a7d3e;
}

.copyright-disclaimer {
  margin: 0;
  line-height: 1.5;
}

.cookie-lv10 {
        position: fixed;
        right: var(--space-x);
        bottom: var(--space-y);
        width: min(420px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-lv10__body {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        color: var(--fg-on-page);
        padding: 12px;
        box-shadow: var(--shadow-sm);
    }

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

    .cookie-lv10__actions {
        margin-top: 10px;
        display: flex;
        justify-content: flex-end;
        gap: 8px;
    }

    .cookie-lv10__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-lv10__actions button[data-choice='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

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

    .form-layout-d .wrap {
        max-width: 760px;
        margin: 0 auto;
    }

    .form-layout-d .section-head {
        margin-bottom: 18px;
    }

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

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

    .form-layout-d .line-form {
        border-top: 2px solid var(--brand);
        padding-top: 12px;
    }

    .form-layout-d label {
        display: grid;
        gap: 8px;
        margin-bottom: 12px;
        font-weight: 600;
        color: var(--brand);
    }

    .form-layout-d input, .form-layout-d textarea {
        border: 0;
        border-bottom: 1px solid var(--neutral-300);
        padding: 8px 2px;
        font: inherit;
        background: transparent;
    }

    .form-layout-d input:focus, .form-layout-d textarea:focus {
        outline: none;
        border-color: var(--ring);
    }

    .form-layout-d button {
        border: 1px solid var(--brand);
        color: var(--brand);
        background: transparent;
        border-radius: 999px;
        padding: 9px 16px;
    }

.contact-layout-d {
        padding: clamp(56px, 8vw, 94px) clamp(16px, 4vw, 34px);
        background: var(--accent);
        color: var(--neutral-0);
    }

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

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

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

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

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

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

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

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

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

.map-split-l1 {
        padding: clamp(3.2rem, 7vw, 5.8rem) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    .map-split-l1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: .85fr 1.15fr;
        gap: 1rem;
    }

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

    .map-split-l1__side p {
        margin: .6rem 0 0;
        color: var(--neutral-600);
    }

    .map-split-l1__list {
        margin-top: 1rem;
        display: grid;
        gap: .7rem;
    }

    .map-split-l1__list div {
        padding: .9rem;
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        border: 1px solid var(--border-on-surface-light);
    }

    .map-split-l1__list span {
        display: block;
        margin-top: .3rem;
        color: var(--neutral-600);
    }

    .map-split-l1__list a {
        color: var(--link);
        text-decoration: none;
    }

    .map-split-l1__list a:hover {
        color: var(--link-hover);
        text-decoration: underline;
    }

    .map-split-l1__embed {
        overflow: hidden;
        border-radius: var(--radius-xl);
        border: 1px solid var(--border-on-surface-light);
        box-shadow: var(--shadow-sm);
    }

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

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

header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
  }

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

  .logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand);
    letter-spacing: -0.5px;
  }

  .cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color 0.2s var(--anim-ease);
  }

  .cta-button:hover {
    background-color: var(--bg-accent-hover);
  }

  .main-nav {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface-light);
  }

  .nav-list {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    list-style: none;
    display: flex;
    justify-content: center;
    gap: calc(var(--gap) * 2);
  }

  .nav-list a {
    color: var(--link);
    text-decoration: none;
    padding: 1rem 0;
    display: inline-block;
    font-weight: 500;
    position: relative;
    transition: color 0.2s var(--anim-ease);
  }

  .nav-list a:hover {
    color: var(--link-hover);
  }

  .nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0.75rem;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width 0.3s var(--anim-ease);
  }

  .nav-list a:hover::after {
    width: 100%;
  }

  .burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 1rem;
    flex-direction: column;
    justify-content: space-between;
    width: 44px;
    height: 44px;
    margin-left: auto;
  }

  .burger-menu span {
    display: block;
    height: 3px;
    width: 24px;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform 0.3s var(--anim-ease), opacity 0.3s var(--anim-ease);
  }

  /* Мобильная версия */
  @media (max-width: 767px) {
    .header-top {
      padding: calc(var(--space-y) * 0.75) var(--space-x);
    }

    .main-nav {
      position: relative;
      padding: 0 var(--space-x);
    }

    .burger-menu {
      display: flex;
    }

    .nav-list {
      display: none;
      flex-direction: column;
      gap: 0;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: var(--surface-2);
      padding: 0;
      box-shadow: var(--shadow-md);
      z-index: 1000;
      border-top: 1px solid var(--border-on-surface-light);
    }

    .nav-list.active {
      display: flex;
    }

    .nav-list li {
      border-bottom: 1px solid var(--border-on-surface-light);
    }

    .nav-list a {
      padding: 1rem var(--space-x);
      width: 100%;
      display: block;
    }

    .nav-list a::after {
      display: none;
    }

    /* Анимация бургера при открытии */
    .burger-menu[aria-expanded="true"] span:nth-child(1) {
      transform: translateY(10px) rotate(45deg);
    }

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

    .burger-menu[aria-expanded="true"] span:nth-child(3) {
      transform: translateY(-10px) rotate(-45deg);
    }
  }

.site-footer {
  background-color: #f8f9fa;
  border-top: 1px solid #eaeaea;
  color: #333;
  font-family: system-ui, -apple-system, sans-serif;
  padding: 2.5rem 1rem;
  margin-top: 3rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-container {
    grid-template-columns: repeat(3, 1fr);
    text-align: left;
  }
  .footer-legal {
    grid-column: 1 / -1;
  }
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2a7d3e;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.4;
  margin: 0;
}

.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .nav-list {
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.8rem;
  }
}

.nav-list a {
  color: #444;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.nav-list a:hover {
  color: #2a7d3e;
  text-decoration: underline;
}

.footer-contact address {
  font-style: normal;
  line-height: 1.6;
}

.footer-contact p {
  margin: 0.4rem 0;
  font-size: 0.95rem;
}

.footer-contact a {
  color: #2a7d3e;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-legal {
  border-top: 1px solid #ddd;
  padding-top: 1.5rem;
  font-size: 0.85rem;
  color: #777;
}

.legal-links {
  margin-bottom: 0.8rem;
}

.legal-links a {
  color: #555;
  text-decoration: none;
  margin: 0 0.3rem;
}

.legal-links a:hover {
  text-decoration: underline;
  color: #2a7d3e;
}

.copyright-disclaimer {
  margin: 0;
  line-height: 1.5;
}

.cookie-lv10 {
        position: fixed;
        right: var(--space-x);
        bottom: var(--space-y);
        width: min(420px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-lv10__body {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        color: var(--fg-on-page);
        padding: 12px;
        box-shadow: var(--shadow-sm);
    }

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

    .cookie-lv10__actions {
        margin-top: 10px;
        display: flex;
        justify-content: flex-end;
        gap: 8px;
    }

    .cookie-lv10__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-lv10__actions button[data-choice='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

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

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

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

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

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

    .policy-layout-e .columns {
        columns: 2 260px;
        column-gap: 14px;
    }

    .policy-layout-e article {
        break-inside: avoid;
        margin-bottom: 12px;
        border-radius: var(--radius-md);
        border: 1px solid rgba(255, 255, 255, .22);
        padding: 12px;
        background: rgba(255, 255, 255, .05);
    }

    .policy-layout-e h3 {
        margin: 0;
    }

    .policy-layout-e .meta {
        margin: 7px 0 0;
        color: var(--neutral-100);
    }

    .policy-layout-e article p:last-child {
        margin: 7px 0 0;
        color: var(--neutral-100);
    }

header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
  }

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

  .logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand);
    letter-spacing: -0.5px;
  }

  .cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color 0.2s var(--anim-ease);
  }

  .cta-button:hover {
    background-color: var(--bg-accent-hover);
  }

  .main-nav {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface-light);
  }

  .nav-list {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    list-style: none;
    display: flex;
    justify-content: center;
    gap: calc(var(--gap) * 2);
  }

  .nav-list a {
    color: var(--link);
    text-decoration: none;
    padding: 1rem 0;
    display: inline-block;
    font-weight: 500;
    position: relative;
    transition: color 0.2s var(--anim-ease);
  }

  .nav-list a:hover {
    color: var(--link-hover);
  }

  .nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0.75rem;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width 0.3s var(--anim-ease);
  }

  .nav-list a:hover::after {
    width: 100%;
  }

  .burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 1rem;
    flex-direction: column;
    justify-content: space-between;
    width: 44px;
    height: 44px;
    margin-left: auto;
  }

  .burger-menu span {
    display: block;
    height: 3px;
    width: 24px;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform 0.3s var(--anim-ease), opacity 0.3s var(--anim-ease);
  }

  /* Мобильная версия */
  @media (max-width: 767px) {
    .header-top {
      padding: calc(var(--space-y) * 0.75) var(--space-x);
    }

    .main-nav {
      position: relative;
      padding: 0 var(--space-x);
    }

    .burger-menu {
      display: flex;
    }

    .nav-list {
      display: none;
      flex-direction: column;
      gap: 0;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: var(--surface-2);
      padding: 0;
      box-shadow: var(--shadow-md);
      z-index: 1000;
      border-top: 1px solid var(--border-on-surface-light);
    }

    .nav-list.active {
      display: flex;
    }

    .nav-list li {
      border-bottom: 1px solid var(--border-on-surface-light);
    }

    .nav-list a {
      padding: 1rem var(--space-x);
      width: 100%;
      display: block;
    }

    .nav-list a::after {
      display: none;
    }

    /* Анимация бургера при открытии */
    .burger-menu[aria-expanded="true"] span:nth-child(1) {
      transform: translateY(10px) rotate(45deg);
    }

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

    .burger-menu[aria-expanded="true"] span:nth-child(3) {
      transform: translateY(-10px) rotate(-45deg);
    }
  }

.site-footer {
  background-color: #f8f9fa;
  border-top: 1px solid #eaeaea;
  color: #333;
  font-family: system-ui, -apple-system, sans-serif;
  padding: 2.5rem 1rem;
  margin-top: 3rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-container {
    grid-template-columns: repeat(3, 1fr);
    text-align: left;
  }
  .footer-legal {
    grid-column: 1 / -1;
  }
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2a7d3e;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.4;
  margin: 0;
}

.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .nav-list {
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.8rem;
  }
}

.nav-list a {
  color: #444;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.nav-list a:hover {
  color: #2a7d3e;
  text-decoration: underline;
}

.footer-contact address {
  font-style: normal;
  line-height: 1.6;
}

.footer-contact p {
  margin: 0.4rem 0;
  font-size: 0.95rem;
}

.footer-contact a {
  color: #2a7d3e;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-legal {
  border-top: 1px solid #ddd;
  padding-top: 1.5rem;
  font-size: 0.85rem;
  color: #777;
}

.legal-links {
  margin-bottom: 0.8rem;
}

.legal-links a {
  color: #555;
  text-decoration: none;
  margin: 0 0.3rem;
}

.legal-links a:hover {
  text-decoration: underline;
  color: #2a7d3e;
}

.copyright-disclaimer {
  margin: 0;
  line-height: 1.5;
}

.cookie-lv10 {
        position: fixed;
        right: var(--space-x);
        bottom: var(--space-y);
        width: min(420px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-lv10__body {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        color: var(--fg-on-page);
        padding: 12px;
        box-shadow: var(--shadow-sm);
    }

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

    .cookie-lv10__actions {
        margin-top: 10px;
        display: flex;
        justify-content: flex-end;
        gap: 8px;
    }

    .cookie-lv10__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-lv10__actions button[data-choice='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

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

    .terms-layout-d .wrap {
        max-width: 920px;
        margin: 0 auto;
    }

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

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

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

    .terms-layout-d ol {
        margin: 0;
        padding-left: 20px;
        display: grid;
        gap: 10px;
    }

    .terms-layout-d li {
        border: 1px solid rgba(255, 255, 255, .2);
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .05);
        padding: 12px;
    }

    .terms-layout-d h3, .terms-layout-d h4 {
        margin: 0 0 8px;
    }

    .terms-layout-d p, .terms-layout-d li li {
        color: var(--neutral-100);
    }
    .terms-layout-d a {
        color: var(--link);
    }
    .terms-layout-d a:hover {
        color: var(--link-hover);
    }

header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
  }

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

  .logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand);
    letter-spacing: -0.5px;
  }

  .cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color 0.2s var(--anim-ease);
  }

  .cta-button:hover {
    background-color: var(--bg-accent-hover);
  }

  .main-nav {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface-light);
  }

  .nav-list {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    list-style: none;
    display: flex;
    justify-content: center;
    gap: calc(var(--gap) * 2);
  }

  .nav-list a {
    color: var(--link);
    text-decoration: none;
    padding: 1rem 0;
    display: inline-block;
    font-weight: 500;
    position: relative;
    transition: color 0.2s var(--anim-ease);
  }

  .nav-list a:hover {
    color: var(--link-hover);
  }

  .nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0.75rem;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width 0.3s var(--anim-ease);
  }

  .nav-list a:hover::after {
    width: 100%;
  }

  .burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 1rem;
    flex-direction: column;
    justify-content: space-between;
    width: 44px;
    height: 44px;
    margin-left: auto;
  }

  .burger-menu span {
    display: block;
    height: 3px;
    width: 24px;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform 0.3s var(--anim-ease), opacity 0.3s var(--anim-ease);
  }

  /* Мобильная версия */
  @media (max-width: 767px) {
    .header-top {
      padding: calc(var(--space-y) * 0.75) var(--space-x);
    }

    .main-nav {
      position: relative;
      padding: 0 var(--space-x);
    }

    .burger-menu {
      display: flex;
    }

    .nav-list {
      display: none;
      flex-direction: column;
      gap: 0;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: var(--surface-2);
      padding: 0;
      box-shadow: var(--shadow-md);
      z-index: 1000;
      border-top: 1px solid var(--border-on-surface-light);
    }

    .nav-list.active {
      display: flex;
    }

    .nav-list li {
      border-bottom: 1px solid var(--border-on-surface-light);
    }

    .nav-list a {
      padding: 1rem var(--space-x);
      width: 100%;
      display: block;
    }

    .nav-list a::after {
      display: none;
    }

    /* Анимация бургера при открытии */
    .burger-menu[aria-expanded="true"] span:nth-child(1) {
      transform: translateY(10px) rotate(45deg);
    }

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

    .burger-menu[aria-expanded="true"] span:nth-child(3) {
      transform: translateY(-10px) rotate(-45deg);
    }
  }

.site-footer {
  background-color: #f8f9fa;
  border-top: 1px solid #eaeaea;
  color: #333;
  font-family: system-ui, -apple-system, sans-serif;
  padding: 2.5rem 1rem;
  margin-top: 3rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-container {
    grid-template-columns: repeat(3, 1fr);
    text-align: left;
  }
  .footer-legal {
    grid-column: 1 / -1;
  }
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2a7d3e;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.4;
  margin: 0;
}

.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .nav-list {
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.8rem;
  }
}

.nav-list a {
  color: #444;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.nav-list a:hover {
  color: #2a7d3e;
  text-decoration: underline;
}

.footer-contact address {
  font-style: normal;
  line-height: 1.6;
}

.footer-contact p {
  margin: 0.4rem 0;
  font-size: 0.95rem;
}

.footer-contact a {
  color: #2a7d3e;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-legal {
  border-top: 1px solid #ddd;
  padding-top: 1.5rem;
  font-size: 0.85rem;
  color: #777;
}

.legal-links {
  margin-bottom: 0.8rem;
}

.legal-links a {
  color: #555;
  text-decoration: none;
  margin: 0 0.3rem;
}

.legal-links a:hover {
  text-decoration: underline;
  color: #2a7d3e;
}

.copyright-disclaimer {
  margin: 0;
  line-height: 1.5;
}

.cookie-lv10 {
        position: fixed;
        right: var(--space-x);
        bottom: var(--space-y);
        width: min(420px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-lv10__body {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        color: var(--fg-on-page);
        padding: 12px;
        box-shadow: var(--shadow-sm);
    }

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

    .cookie-lv10__actions {
        margin-top: 10px;
        display: flex;
        justify-content: flex-end;
        gap: 8px;
    }

    .cookie-lv10__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-lv10__actions button[data-choice='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

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

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

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

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

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

header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
  }

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

  .logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand);
    letter-spacing: -0.5px;
  }

  .cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color 0.2s var(--anim-ease);
  }

  .cta-button:hover {
    background-color: var(--bg-accent-hover);
  }

  .main-nav {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface-light);
  }

  .nav-list {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    list-style: none;
    display: flex;
    justify-content: center;
    gap: calc(var(--gap) * 2);
  }

  .nav-list a {
    color: var(--link);
    text-decoration: none;
    padding: 1rem 0;
    display: inline-block;
    font-weight: 500;
    position: relative;
    transition: color 0.2s var(--anim-ease);
  }

  .nav-list a:hover {
    color: var(--link-hover);
  }

  .nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0.75rem;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width 0.3s var(--anim-ease);
  }

  .nav-list a:hover::after {
    width: 100%;
  }

  .burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 1rem;
    flex-direction: column;
    justify-content: space-between;
    width: 44px;
    height: 44px;
    margin-left: auto;
  }

  .burger-menu span {
    display: block;
    height: 3px;
    width: 24px;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform 0.3s var(--anim-ease), opacity 0.3s var(--anim-ease);
  }

  /* Мобильная версия */
  @media (max-width: 767px) {
    .header-top {
      padding: calc(var(--space-y) * 0.75) var(--space-x);
    }

    .main-nav {
      position: relative;
      padding: 0 var(--space-x);
    }

    .burger-menu {
      display: flex;
    }

    .nav-list {
      display: none;
      flex-direction: column;
      gap: 0;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: var(--surface-2);
      padding: 0;
      box-shadow: var(--shadow-md);
      z-index: 1000;
      border-top: 1px solid var(--border-on-surface-light);
    }

    .nav-list.active {
      display: flex;
    }

    .nav-list li {
      border-bottom: 1px solid var(--border-on-surface-light);
    }

    .nav-list a {
      padding: 1rem var(--space-x);
      width: 100%;
      display: block;
    }

    .nav-list a::after {
      display: none;
    }

    /* Анимация бургера при открытии */
    .burger-menu[aria-expanded="true"] span:nth-child(1) {
      transform: translateY(10px) rotate(45deg);
    }

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

    .burger-menu[aria-expanded="true"] span:nth-child(3) {
      transform: translateY(-10px) rotate(-45deg);
    }
  }

.site-footer {
  background-color: #f8f9fa;
  border-top: 1px solid #eaeaea;
  color: #333;
  font-family: system-ui, -apple-system, sans-serif;
  padding: 2.5rem 1rem;
  margin-top: 3rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-container {
    grid-template-columns: repeat(3, 1fr);
    text-align: left;
  }
  .footer-legal {
    grid-column: 1 / -1;
  }
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2a7d3e;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.4;
  margin: 0;
}

.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .nav-list {
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.8rem;
  }
}

.nav-list a {
  color: #444;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.nav-list a:hover {
  color: #2a7d3e;
  text-decoration: underline;
}

.footer-contact address {
  font-style: normal;
  line-height: 1.6;
}

.footer-contact p {
  margin: 0.4rem 0;
  font-size: 0.95rem;
}

.footer-contact a {
  color: #2a7d3e;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-legal {
  border-top: 1px solid #ddd;
  padding-top: 1.5rem;
  font-size: 0.85rem;
  color: #777;
}

.legal-links {
  margin-bottom: 0.8rem;
}

.legal-links a {
  color: #555;
  text-decoration: none;
  margin: 0 0.3rem;
}

.legal-links a:hover {
  text-decoration: underline;
  color: #2a7d3e;
}

.copyright-disclaimer {
  margin: 0;
  line-height: 1.5;
}

.cookie-lv10 {
        position: fixed;
        right: var(--space-x);
        bottom: var(--space-y);
        width: min(420px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-lv10__body {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        color: var(--fg-on-page);
        padding: 12px;
        box-shadow: var(--shadow-sm);
    }

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

    .cookie-lv10__actions {
        margin-top: 10px;
        display: flex;
        justify-content: flex-end;
        gap: 8px;
    }

    .cookie-lv10__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-lv10__actions button[data-choice='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

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

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

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

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

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