:root {
  --font-family: "Montserrat", sans-serif;
  --font-size-base: 16.3px;
  --line-height-base: 1.8;

  --max-w: 860px;
  --space-x: 1.44rem;
  --space-y: 1.46rem;
  --gap: 0.77rem;

  --radius-xl: 0.87rem;
  --radius-lg: 0.62rem;
  --radius-md: 0.34rem;
  --radius-sm: 0.27rem;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 3px 14px rgba(0,0,0,0.07);
  --shadow-lg: 0 8px 18px rgba(0,0,0,0.09);

  --overlay: rgba(0,0,0,0.5);
  --anim-duration: 370ms;
  --anim-ease: cubic-bezier(0.4,0,0.2,1);
  --random-number: 1;

  --brand: #1A3C2E;
  --brand-contrast: #F5F0E8;
  --accent: #C8A96E;
  --accent-contrast: #1A1A1A;

  --neutral-0: #FFFFFF;
  --neutral-100: #F7F5F0;
  --neutral-300: #D6D0C4;
  --neutral-600: #7A7568;
  --neutral-800: #3D3A33;
  --neutral-900: #1A1A1A;

  --bg-page: #F5F0E8;
  --fg-on-page: #1A1A1A;

  --bg-alt: #E8E0D0;
  --fg-on-alt: #1A1A1A;

  --surface-1: #FFFFFF;
  --surface-2: #F7F5F0;
  --fg-on-surface: #1A1A1A;
  --border-on-surface: #D6D0C4;

  --surface-light: #FAF8F4;
  --fg-on-surface-light: #1A1A1A;
  --border-on-surface-light: #E0DAC8;

  --bg-primary: #1A3C2E;
  --fg-on-primary: #F5F0E8;
  --bg-primary-hover: #234F3D;
  --ring: #C8A96E;

  --bg-accent: #C8A96E;
  --fg-on-accent: #1A1A1A;
  --bg-accent-hover: #B8944F;

  --link: #1A3C2E;
  --link-hover: #C8A96E;

  --gradient-hero: linear-gradient(135deg, #1A3C2E 0%, #2A5C48 50%, #3D7A5E 100%);
  --gradient-accent: linear-gradient(135deg, #C8A96E 0%, #D4B88A 50%, #E0C8A0 100%);

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

.site-header {
    background: var(--surface-1);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }
  .nav-list a {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-list a:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--brand);
  }
  .header-cta {
    display: flex;
    align-items: center;
    gap: var(--gap);
    flex-shrink: 0;
  }
  .contact-phone {
    color: var(--neutral-600);
    font-size: var(--font-size-base);
    white-space: nowrap;
  }
  .btn-action {
    display: inline-block;
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-size: var(--font-size-base);
    font-weight: 600;
    transition: background var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }
  .btn-action:hover {
    background: var(--bg-primary-hover);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  @media (max-width: 767px) {
    .burger {
      display: flex;
    }
    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1);
      box-shadow: var(--shadow-md);
      padding: var(--space-y) var(--space-x);
      display: none;
    }
    .nav-menu.open {
      display: block;
    }
    .nav-list {
      flex-direction: column;
      gap: 0.5rem;
    }
    .nav-list a {
      display: block;
      padding: 0.75rem 1rem;
    }
    .header-cta {
      display: none;
    }
  }
  @media (min-width: 768px) {
    .nav-menu {
      display: flex !important;
    }
  }

footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 40px 20px 20px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 30px;
}
.footer-brand {
  flex: 1 1 200px;
}
.footer-logo {
  font-size: 24px;
  font-weight: bold;
  color: #f0c040;
  text-decoration: none;
}
.footer-nav {
  flex: 2 1 300px;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.footer-nav a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-nav a:hover {
  color: #f0c040;
}
.footer-links {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links a:hover {
  color: #f0c040;
}
.footer-contacts {
  flex: 1 1 250px;
}
.footer-contacts p {
  margin: 5px 0;
}
.footer-contacts a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-contacts a:hover {
  color: #f0c040;
}
.footer-disclaimer {
  border-top: 1px solid #333;
  padding-top: 20px;
  margin-top: 20px;
  font-size: 12px;
  color: #aaa;
  text-align: center;
}
.footer-copyright {
  text-align: center;
  margin-top: 15px;
  font-size: 12px;
  color: #888;
}
@media (max-width: 768px) {
  .footer-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-nav ul {
    justify-content: center;
  }
  .footer-links {
    align-items: center;
  }
  .footer-contacts {
    text-align: center;
  }
}

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

    .cookie-lv12__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px var(--gap);
        align-items: center;
    }

    .cookie-lv12__title {
        font-weight: 700;
        color: var(--fg-on-surface);
    }

    .cookie-lv12 p {
        margin: 0;
        grid-column: 1 / 2;
        color: var(--fg-muted);
    }

    .cookie-lv12__actions {
        grid-row: 1 / 3;
        grid-column: 2 / 3;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .cookie-lv12__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-2);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-lv12__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-lv12__wrap {
            grid-template-columns: 1fr;
        }

        .cookie-lv12 p,
        .cookie-lv12__actions {
            grid-column: auto;
            grid-row: auto;
        }

        .cookie-lv12__actions {
            justify-content: flex-start;
        }
    }

.hero-arc-v6 {
        padding: calc(var(--space-y) * 3) var(--space-x);
        background: var(--bg-page);
        color: var(--fg-on-page);
    }

    .hero-arc-v6 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: calc(var(--gap) * 1.5);
    }

    .hero-arc-v6 .top {
        display: grid;
        grid-template-columns:1fr minmax(260px, .82fr);
        gap: var(--gap);
        align-items: stretch;
    }

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

    .hero-arc-v6 h1 {
        margin: 0;
        font-size: clamp(2rem, 4.3vw, 3.5rem);
        line-height: 1.1;
    }

    .hero-arc-v6 .subtitle {
        margin: 0;
        max-width: 50ch;
        color: var(--fg-on-surface-light);
    }

    .hero-arc-v6 .actions {
        display: flex;
        flex-wrap: wrap;
        gap: .7rem;
    }

    .hero-arc-v6 .actions a {
        padding: .64rem .95rem;
        border-radius: var(--radius-md);
        text-decoration: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 700;
        transition: background var(--anim-duration) var(--anim-ease);
    }

    .hero-arc-v6 .actions a:hover {
        background: var(--bg-primary-hover);
    }

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

    .hero-arc-v6 .image {
        overflow: hidden;
        border-radius: var(--radius-xl);
    }

    .hero-arc-v6 img {
        width: 100%;
        height: 100%;
        min-height: 300px;
        object-fit: cover;
        display: block;
    }

    .hero-arc-v6 .bottom {
        display: grid;
        grid-template-columns:repeat(4, minmax(0, 1fr));
        gap: var(--gap);
    }

    .hero-arc-v6 .bottom article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--gradient-accent);
        color: var(--accent-contrast);
        box-shadow: var(--shadow-sm);
    }

    .hero-arc-v6 .bottom p {
        margin: .3rem 0 0;
        opacity: .92;
    }

    @media (max-width: 960px) {
        .hero-arc-v6 .top {
            grid-template-columns:1fr;
        }

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

.nfsocial-v11 {
        padding: clamp(48px, 8vw, 80px) 0;
        background: linear-gradient(145deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
    }

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

    .nfsocial-v11__grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: calc(var(--gap) * 2);
        align-items: center;
    }

    .nfsocial-v11__media img {
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        width: 100%;
        display: block;
    }

    .nfsocial-v11__text h2 {
        margin-bottom: var(--space-y);
    }

    .nfsocial-v11__text p {
        margin-bottom: var(--space-y);
        opacity: .92;
    }

    .nfsocial-v11__text a {
        display: inline-block;
        padding: 12px 24px;
        border-radius: var(--radius-md);
        text-decoration: none;
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    @media (max-width: 840px) {
        .nfsocial-v11__grid {
            grid-template-columns: 1fr;
        }
    }

.faq-fresh-v3 {
        padding: calc(var(--space-y) * 3) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-surface);
    }

    .faq-fresh-v3 .shell {
        max-width: 920px;
        margin: 0 auto;
        display: grid;
        gap: 1rem;
    }

    .faq-fresh-v3 h2 {
        margin: 0;
        font-size: clamp(1.8rem, 3.3vw, 2.5rem);
    }

    .faq-fresh-v3 .list {
        display: grid;
        gap: var(--gap);
        padding: 0;
        margin: 0;
        counter-reset: faqnum;
    }

    .faq-fresh-v3 li {
        list-style: none;
        padding: 1rem 1rem 1rem 3rem;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
        position: relative;
        background: var(--surface-2);
    }

    .faq-fresh-v3 li::before {
        counter-increment: faqnum;
        content: counter(faqnum);
        position: absolute;
        left: 1rem;
        top: 1rem;
        width: 1.4rem;
        height: 1.4rem;
        border-radius: 50%;
        display: grid;
        place-items: center;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-size: .78rem;
        font-weight: 700;
    }

    .faq-fresh-v3 h3 {
        margin: 0 0 .45rem;
    }

    .faq-fresh-v3 p {
        margin: 0;
        color: var(--fg-on-surface-light);
    }

body{margin:0;padding:0;font-family:var(--font-family);box-sizing: border-box;}
    *{box-sizing:border-box;}

    .next-ux20 {
        padding: calc(var(--space-y) * 1.9) var(--space-x);
        background: var(--bg-primary);
        color: var(--fg-on-primary)
    }

    .next-ux20 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: var(--gap)
    }

    .next-ux20 h2, .next-ux20 h3, .next-ux20 p {
        margin: 0
    }

    .next-ux20 a {
        text-decoration: none
    }

    .next-ux20 .center, .next-ux20 .banner, .next-ux20 .stack, .next-ux20 .bar, .next-ux20 .split, .next-ux20 .duo article {
        padding: .9rem;
        border-radius: var(--radius-xl);
        background: var(--chip-bg);
        border: 1px solid var(--border-on-surface)
    }

    .next-ux20 .center {
        display: grid;
        gap: .5rem;
        justify-items: center;
        text-align: center
    }

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

    .next-ux20 .actions {
        display: flex;
        gap: .45rem;
        flex-wrap: wrap
    }

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

    .next-ux20 .banner {
        display: grid;
        gap: .6rem
    }

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

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

    .next-ux20 .duo {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: var(--gap)
    }

    .next-ux20 .duo article {
        display: grid;
        gap: .45rem
    }

    .next-ux20 .stack {
        display: grid;
        gap: .6rem;
        justify-items: start
    }

    .next-ux20 .chips {
        display: flex;
        gap: .35rem;
        flex-wrap: wrap
    }

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

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

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

        .next-ux20 .numbers {
            grid-template-columns:1fr 1fr
        }
    }

    @media (max-width: 620px) {
        .next-ux20 .numbers {
            grid-template-columns:1fr
        }
    }

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

    .touch-bulletin .wrap {
        max-width: 860px;
        margin: 0 auto;
    }

    .touch-bulletin .touch-header {
        margin-bottom: 14px;
    }

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

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

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

    .touch-bulletin li {
        border: 1px solid var(--border-on-surface);
        border-radius: 12px;
        background: var(--neutral-0);
        padding: 10px 12px;
        display: grid;
        grid-template-columns: auto 1fr auto;
        gap: 8px;
        align-items: center;
    }

    .touch-bulletin span {
        color: var(--neutral-600);
        font-size: .85rem;
    }

    .touch-bulletin a {
        color: var(--bg-primary);
        text-decoration: none;
    }

    .touch-bulletin .cta {
        display: inline-block;
        margin-top: 12px;
        text-decoration: none;
        background: var(--bg-primary);
        color: var(--neutral-0);
        border-radius: 10px;
        padding: 10px 14px;
    }

.site-header {
    background: var(--surface-1);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }
  .nav-list a {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-list a:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--brand);
  }
  .header-cta {
    display: flex;
    align-items: center;
    gap: var(--gap);
    flex-shrink: 0;
  }
  .contact-phone {
    color: var(--neutral-600);
    font-size: var(--font-size-base);
    white-space: nowrap;
  }
  .btn-action {
    display: inline-block;
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-size: var(--font-size-base);
    font-weight: 600;
    transition: background var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }
  .btn-action:hover {
    background: var(--bg-primary-hover);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  @media (max-width: 767px) {
    .burger {
      display: flex;
    }
    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1);
      box-shadow: var(--shadow-md);
      padding: var(--space-y) var(--space-x);
      display: none;
    }
    .nav-menu.open {
      display: block;
    }
    .nav-list {
      flex-direction: column;
      gap: 0.5rem;
    }
    .nav-list a {
      display: block;
      padding: 0.75rem 1rem;
    }
    .header-cta {
      display: none;
    }
  }
  @media (min-width: 768px) {
    .nav-menu {
      display: flex !important;
    }
  }

footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 40px 20px 20px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 30px;
}
.footer-brand {
  flex: 1 1 200px;
}
.footer-logo {
  font-size: 24px;
  font-weight: bold;
  color: #f0c040;
  text-decoration: none;
}
.footer-nav {
  flex: 2 1 300px;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.footer-nav a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-nav a:hover {
  color: #f0c040;
}
.footer-links {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links a:hover {
  color: #f0c040;
}
.footer-contacts {
  flex: 1 1 250px;
}
.footer-contacts p {
  margin: 5px 0;
}
.footer-contacts a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-contacts a:hover {
  color: #f0c040;
}
.footer-disclaimer {
  border-top: 1px solid #333;
  padding-top: 20px;
  margin-top: 20px;
  font-size: 12px;
  color: #aaa;
  text-align: center;
}
.footer-copyright {
  text-align: center;
  margin-top: 15px;
  font-size: 12px;
  color: #888;
}
@media (max-width: 768px) {
  .footer-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-nav ul {
    justify-content: center;
  }
  .footer-links {
    align-items: center;
  }
  .footer-contacts {
    text-align: center;
  }
}

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

    .cookie-lv12__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px var(--gap);
        align-items: center;
    }

    .cookie-lv12__title {
        font-weight: 700;
        color: var(--fg-on-surface);
    }

    .cookie-lv12 p {
        margin: 0;
        grid-column: 1 / 2;
        color: var(--fg-muted);
    }

    .cookie-lv12__actions {
        grid-row: 1 / 3;
        grid-column: 2 / 3;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .cookie-lv12__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-2);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-lv12__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-lv12__wrap {
            grid-template-columns: 1fr;
        }

        .cookie-lv12 p,
        .cookie-lv12__actions {
            grid-column: auto;
            grid-row: auto;
        }

        .cookie-lv12__actions {
            justify-content: flex-start;
        }
    }

.review-list--light-v6 {

    padding: 48px 20px;
    background: var(--surface-light);
    color: var(--fg-on-surface-light);
}

.review-list__inner {
    max-width: 640px;
    margin: 0 auto;
}

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

.review-list__items {
    margin: 0;
    padding: 0;
    list-style: none;
    border-radius: var(--radius-xl);
    background: var(--bg-page);
    border: 1px solid var(--border-on-surface-light);
    overflow: hidden;
}

.review-list__row {
    display: grid;
    grid-template-columns: minmax(0,1fr) auto;
    gap: 12px;
    padding: 8px 12px;
    border-top: 1px solid var(--border-on-surface-light);
}

.review-list__row:first-child {
    border-top: none;
}

.review-list__name {
    font-size: 0.9rem;
    color: var(--fg-on-page);
}

.review-list__rating {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent);
}

.nfsocial-v11 {
        padding: clamp(48px, 8vw, 80px) 0;
        background: linear-gradient(145deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
    }

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

    .nfsocial-v11__grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: calc(var(--gap) * 2);
        align-items: center;
    }

    .nfsocial-v11__media img {
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        width: 100%;
        display: block;
    }

    .nfsocial-v11__text h2 {
        margin-bottom: var(--space-y);
    }

    .nfsocial-v11__text p {
        margin-bottom: var(--space-y);
        opacity: .92;
    }

    .nfsocial-v11__text a {
        display: inline-block;
        padding: 12px 24px;
        border-radius: var(--radius-md);
        text-decoration: none;
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    @media (max-width: 840px) {
        .nfsocial-v11__grid {
            grid-template-columns: 1fr;
        }
    }

.site-header {
    background: var(--surface-1);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }
  .nav-list a {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-list a:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--brand);
  }
  .header-cta {
    display: flex;
    align-items: center;
    gap: var(--gap);
    flex-shrink: 0;
  }
  .contact-phone {
    color: var(--neutral-600);
    font-size: var(--font-size-base);
    white-space: nowrap;
  }
  .btn-action {
    display: inline-block;
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-size: var(--font-size-base);
    font-weight: 600;
    transition: background var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }
  .btn-action:hover {
    background: var(--bg-primary-hover);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  @media (max-width: 767px) {
    .burger {
      display: flex;
    }
    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1);
      box-shadow: var(--shadow-md);
      padding: var(--space-y) var(--space-x);
      display: none;
    }
    .nav-menu.open {
      display: block;
    }
    .nav-list {
      flex-direction: column;
      gap: 0.5rem;
    }
    .nav-list a {
      display: block;
      padding: 0.75rem 1rem;
    }
    .header-cta {
      display: none;
    }
  }
  @media (min-width: 768px) {
    .nav-menu {
      display: flex !important;
    }
  }

footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 40px 20px 20px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 30px;
}
.footer-brand {
  flex: 1 1 200px;
}
.footer-logo {
  font-size: 24px;
  font-weight: bold;
  color: #f0c040;
  text-decoration: none;
}
.footer-nav {
  flex: 2 1 300px;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.footer-nav a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-nav a:hover {
  color: #f0c040;
}
.footer-links {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links a:hover {
  color: #f0c040;
}
.footer-contacts {
  flex: 1 1 250px;
}
.footer-contacts p {
  margin: 5px 0;
}
.footer-contacts a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-contacts a:hover {
  color: #f0c040;
}
.footer-disclaimer {
  border-top: 1px solid #333;
  padding-top: 20px;
  margin-top: 20px;
  font-size: 12px;
  color: #aaa;
  text-align: center;
}
.footer-copyright {
  text-align: center;
  margin-top: 15px;
  font-size: 12px;
  color: #888;
}
@media (max-width: 768px) {
  .footer-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-nav ul {
    justify-content: center;
  }
  .footer-links {
    align-items: center;
  }
  .footer-contacts {
    text-align: center;
  }
}

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

    .cookie-lv12__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px var(--gap);
        align-items: center;
    }

    .cookie-lv12__title {
        font-weight: 700;
        color: var(--fg-on-surface);
    }

    .cookie-lv12 p {
        margin: 0;
        grid-column: 1 / 2;
        color: var(--fg-muted);
    }

    .cookie-lv12__actions {
        grid-row: 1 / 3;
        grid-column: 2 / 3;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .cookie-lv12__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-2);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-lv12__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-lv12__wrap {
            grid-template-columns: 1fr;
        }

        .cookie-lv12 p,
        .cookie-lv12__actions {
            grid-column: auto;
            grid-row: auto;
        }

        .cookie-lv12__actions {
            justify-content: flex-start;
        }
    }

.review-item {

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

    .review-item .review-item__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .review-item .review-item__review {
        background: var(--surface-light);
        padding: clamp(24px, 3vw, 40px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--ring);
        box-shadow: var(--shadow-md);
    }

    .review-item .review-item__author-info {
        display: flex;
        gap: 1rem;
        margin-bottom: var(--space-y);
        align-items: flex-start;
    }

    .review-item .review-item__avatar {
        width: 64px;
        height: 64px;
        border-radius: 50%;
        background: var(--bg-primary);
        color: var(--fg-on-page) fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 1.5rem;
    }

    .review-item h1 {
        font-size: clamp(24px, 4vw, 36px);
        margin: 0 0 0.5rem;
        color: var(--fg-on-page);
    }

    .review-item .review-item__author {
        color: var(--neutral-600);
        margin-bottom: 0.5rem;
    }

    .review-item .review-item__rating {
        color: #ffd700;
        font-size: 1.25rem;
    }

    .review-item .review-item__content {
        line-height: 1.8;
        color: var(--fg-on-page);
        margin-bottom: var(--space-y);
    }

    .review-item .review-item__meta {
        padding-top: var(--space-y);
        border-top: 1px solid var(--ring);
        color: var(--neutral-600);
        font-size: 0.875rem;
    }

.about-mission {

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

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

    .about-mission .about-mission__q {
        font-size: clamp(22px, 4.5vw, 40px);
        margin: 0 0 .6rem;
        font-weight: 700;
    }

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

.site-header {
    background: var(--surface-1);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }
  .nav-list a {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-list a:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--brand);
  }
  .header-cta {
    display: flex;
    align-items: center;
    gap: var(--gap);
    flex-shrink: 0;
  }
  .contact-phone {
    color: var(--neutral-600);
    font-size: var(--font-size-base);
    white-space: nowrap;
  }
  .btn-action {
    display: inline-block;
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-size: var(--font-size-base);
    font-weight: 600;
    transition: background var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }
  .btn-action:hover {
    background: var(--bg-primary-hover);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  @media (max-width: 767px) {
    .burger {
      display: flex;
    }
    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1);
      box-shadow: var(--shadow-md);
      padding: var(--space-y) var(--space-x);
      display: none;
    }
    .nav-menu.open {
      display: block;
    }
    .nav-list {
      flex-direction: column;
      gap: 0.5rem;
    }
    .nav-list a {
      display: block;
      padding: 0.75rem 1rem;
    }
    .header-cta {
      display: none;
    }
  }
  @media (min-width: 768px) {
    .nav-menu {
      display: flex !important;
    }
  }

footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 40px 20px 20px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 30px;
}
.footer-brand {
  flex: 1 1 200px;
}
.footer-logo {
  font-size: 24px;
  font-weight: bold;
  color: #f0c040;
  text-decoration: none;
}
.footer-nav {
  flex: 2 1 300px;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.footer-nav a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-nav a:hover {
  color: #f0c040;
}
.footer-links {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links a:hover {
  color: #f0c040;
}
.footer-contacts {
  flex: 1 1 250px;
}
.footer-contacts p {
  margin: 5px 0;
}
.footer-contacts a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-contacts a:hover {
  color: #f0c040;
}
.footer-disclaimer {
  border-top: 1px solid #333;
  padding-top: 20px;
  margin-top: 20px;
  font-size: 12px;
  color: #aaa;
  text-align: center;
}
.footer-copyright {
  text-align: center;
  margin-top: 15px;
  font-size: 12px;
  color: #888;
}
@media (max-width: 768px) {
  .footer-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-nav ul {
    justify-content: center;
  }
  .footer-links {
    align-items: center;
  }
  .footer-contacts {
    text-align: center;
  }
}

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

    .cookie-lv12__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px var(--gap);
        align-items: center;
    }

    .cookie-lv12__title {
        font-weight: 700;
        color: var(--fg-on-surface);
    }

    .cookie-lv12 p {
        margin: 0;
        grid-column: 1 / 2;
        color: var(--fg-muted);
    }

    .cookie-lv12__actions {
        grid-row: 1 / 3;
        grid-column: 2 / 3;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .cookie-lv12__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-2);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-lv12__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-lv12__wrap {
            grid-template-columns: 1fr;
        }

        .cookie-lv12 p,
        .cookie-lv12__actions {
            grid-column: auto;
            grid-row: auto;
        }

        .cookie-lv12__actions {
            justify-content: flex-start;
        }
    }

.review-item--colored-v5 {

    padding: 56px 20px;
    background: radial-gradient(circle at top left, rgba(59,130,246,0.4), transparent),
                radial-gradient(circle at bottom right, rgba(236,72,153,0.4), transparent),
                var(--neutral-900);
    color: var(--neutral-0);
}

.review-item__inner {
    max-width: 640px;
    margin: 0 auto;
}

.review-item__card {
    background: rgba(15,23,42,0.98);
    border-radius: var(--radius-xl);
    padding: 18px 20px;
    border: 1px solid rgba(191,219,254,0.7);
    box-shadow: var(--shadow-lg);
}

.review-item__header {
    display: grid;
    grid-template-columns: auto minmax(0,1fr) auto;
    gap: 12px;
    align-items: center;
    margin-bottom: 12px;
}

.review-item__avatar {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.review-item__meta h3 {
    margin: 0 0 2px;
    font-size: 1rem;
    color: var(--brand-contrast);
}

.review-item__meta p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--neutral-300);
}

.review-item__rating {
    font-size: 0.9rem;
    color: var(--accent);
}

.review-item__text {
    margin: 0;
    font-size: 0.95rem;
    color: var(--neutral-100);
    line-height: 1.7;
}

.faq-fresh-v3 {
        padding: calc(var(--space-y) * 3) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-surface);
    }

    .faq-fresh-v3 .shell {
        max-width: 920px;
        margin: 0 auto;
        display: grid;
        gap: 1rem;
    }

    .faq-fresh-v3 h2 {
        margin: 0;
        font-size: clamp(1.8rem, 3.3vw, 2.5rem);
    }

    .faq-fresh-v3 .list {
        display: grid;
        gap: var(--gap);
        padding: 0;
        margin: 0;
        counter-reset: faqnum;
    }

    .faq-fresh-v3 li {
        list-style: none;
        padding: 1rem 1rem 1rem 3rem;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
        position: relative;
        background: var(--surface-2);
    }

    .faq-fresh-v3 li::before {
        counter-increment: faqnum;
        content: counter(faqnum);
        position: absolute;
        left: 1rem;
        top: 1rem;
        width: 1.4rem;
        height: 1.4rem;
        border-radius: 50%;
        display: grid;
        place-items: center;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-size: .78rem;
        font-weight: 700;
    }

    .faq-fresh-v3 h3 {
        margin: 0 0 .45rem;
    }

    .faq-fresh-v3 p {
        margin: 0;
        color: var(--fg-on-surface-light);
    }

.site-header {
    background: var(--surface-1);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }
  .nav-list a {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-list a:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--brand);
  }
  .header-cta {
    display: flex;
    align-items: center;
    gap: var(--gap);
    flex-shrink: 0;
  }
  .contact-phone {
    color: var(--neutral-600);
    font-size: var(--font-size-base);
    white-space: nowrap;
  }
  .btn-action {
    display: inline-block;
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-size: var(--font-size-base);
    font-weight: 600;
    transition: background var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }
  .btn-action:hover {
    background: var(--bg-primary-hover);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  @media (max-width: 767px) {
    .burger {
      display: flex;
    }
    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1);
      box-shadow: var(--shadow-md);
      padding: var(--space-y) var(--space-x);
      display: none;
    }
    .nav-menu.open {
      display: block;
    }
    .nav-list {
      flex-direction: column;
      gap: 0.5rem;
    }
    .nav-list a {
      display: block;
      padding: 0.75rem 1rem;
    }
    .header-cta {
      display: none;
    }
  }
  @media (min-width: 768px) {
    .nav-menu {
      display: flex !important;
    }
  }

footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 40px 20px 20px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 30px;
}
.footer-brand {
  flex: 1 1 200px;
}
.footer-logo {
  font-size: 24px;
  font-weight: bold;
  color: #f0c040;
  text-decoration: none;
}
.footer-nav {
  flex: 2 1 300px;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.footer-nav a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-nav a:hover {
  color: #f0c040;
}
.footer-links {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links a:hover {
  color: #f0c040;
}
.footer-contacts {
  flex: 1 1 250px;
}
.footer-contacts p {
  margin: 5px 0;
}
.footer-contacts a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-contacts a:hover {
  color: #f0c040;
}
.footer-disclaimer {
  border-top: 1px solid #333;
  padding-top: 20px;
  margin-top: 20px;
  font-size: 12px;
  color: #aaa;
  text-align: center;
}
.footer-copyright {
  text-align: center;
  margin-top: 15px;
  font-size: 12px;
  color: #888;
}
@media (max-width: 768px) {
  .footer-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-nav ul {
    justify-content: center;
  }
  .footer-links {
    align-items: center;
  }
  .footer-contacts {
    text-align: center;
  }
}

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

    .cookie-lv12__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px var(--gap);
        align-items: center;
    }

    .cookie-lv12__title {
        font-weight: 700;
        color: var(--fg-on-surface);
    }

    .cookie-lv12 p {
        margin: 0;
        grid-column: 1 / 2;
        color: var(--fg-muted);
    }

    .cookie-lv12__actions {
        grid-row: 1 / 3;
        grid-column: 2 / 3;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .cookie-lv12__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-2);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-lv12__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-lv12__wrap {
            grid-template-columns: 1fr;
        }

        .cookie-lv12 p,
        .cookie-lv12__actions {
            grid-column: auto;
            grid-row: auto;
        }

        .cookie-lv12__actions {
            justify-content: flex-start;
        }
    }

.review-item--colored-v5 {

    padding: 56px 20px;
    background: radial-gradient(circle at top left, rgba(59,130,246,0.4), transparent),
                radial-gradient(circle at bottom right, rgba(236,72,153,0.4), transparent),
                var(--neutral-900);
    color: var(--neutral-0);
}

.review-item__inner {
    max-width: 640px;
    margin: 0 auto;
}

.review-item__card {
    background: rgba(15,23,42,0.98);
    border-radius: var(--radius-xl);
    padding: 18px 20px;
    border: 1px solid rgba(191,219,254,0.7);
    box-shadow: var(--shadow-lg);
}

.review-item__header {
    display: grid;
    grid-template-columns: auto minmax(0,1fr) auto;
    gap: 12px;
    align-items: center;
    margin-bottom: 12px;
}

.review-item__avatar {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.review-item__meta h3 {
    margin: 0 0 2px;
    font-size: 1rem;
    color: var(--brand-contrast);
}

.review-item__meta p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--neutral-300);
}

.review-item__rating {
    font-size: 0.9rem;
    color: var(--accent);
}

.review-item__text {
    margin: 0;
    font-size: 0.95rem;
    color: var(--neutral-100);
    line-height: 1.7;
}

.recommendations-list {
        background: var(--neutral-100);
        color: var(--neutral-900);
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 40px);
    }

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

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

        transform: translateY(-18px);
    }

    .recommendations-list__eyebrow {
        margin: 0 0 10px;
        text-transform: uppercase;
        font-size: 12px;
        color: var(--neutral-600);
    }

    .recommendations-list__h h2 {
        margin: 0;
        font-size: clamp(28px, 4.6vw, 48px);
        color: var(--neutral-900);
    }

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

    .recommendations-list__row {
        border-radius: var(--radius-lg);
        border: 1px solid var(--neutral-300);
        background: var(--neutral-0);
        box-shadow: var(--shadow-sm);
        overflow: hidden;

        transform: translateY(24px);
    }

    .recommendations-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(--neutral-900);
        font: inherit;
        text-align: left;
    }

    .recommendations-list__left {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        min-width: 0;
    }

    .recommendations-list__icon {
        width: 36px;
        height: 36px;
        border-radius: 12px;
        background: var(--bg-accent);
        border: 1px solid var(--neutral-300);
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
    }

    .recommendations-list__title {
        font-weight: 900;
        font-size: 14px;
        color: var(--neutral-900);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 30ch;
    }

    .recommendations-list__right {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        flex: 0 0 auto;
    }

    .recommendations-list__tag {
        padding: 6px 10px;
        border-radius: 999px;
        background: var(--neutral-100);
        border: 1px solid var(--neutral-300);
        color: var(--neutral-600);
        font-size: 10px;
        text-transform: uppercase;
        white-space: nowrap;
    }

    .recommendations-list__chev {
        width: 30px;
        height: 30px;
        border-radius: 999px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-primary);
        border: 1px solid var(--ring);
        color: var(--fg-on-primary);
        font-weight: 900;
        line-height: 1;
    }

    .recommendations-list__a {
        display: none;
        padding: 0 16px 14px;
        overflow: hidden;
    }

    .recommendations-list__a p {
        margin: 0;
        color: var(--neutral-800);
        font-size: 14px;
        line-height: 1.65;
    }

    .recommendations-list__actions {
        margin-top: 10px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        flex-wrap: wrap;
    }

    .recommendations-list__hint {
        font-size: 12px;
        color: var(--neutral-600);
        text-transform: uppercase;
    }

    .recommendations-list__cta {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        text-decoration: none;
        padding: 10px 14px;
        border-radius: 999px;
        background: var(--bg-primary);
        border: 1px solid var(--ring);
        color: var(--fg-on-primary);
        font-weight: 800;
        text-transform: uppercase;
        font-size: 11px;
    }

    .recommendations-list__cta::after {
        content: '->';
    }

    .recommendations-list__cta:hover {
        background: var(--bg-primary-hover);
    }

    @media (max-width: 560px) {
        .recommendations-list__tag {
            display: none;
        }
    }

.site-header {
    background: var(--surface-1);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }
  .nav-list a {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-list a:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--brand);
  }
  .header-cta {
    display: flex;
    align-items: center;
    gap: var(--gap);
    flex-shrink: 0;
  }
  .contact-phone {
    color: var(--neutral-600);
    font-size: var(--font-size-base);
    white-space: nowrap;
  }
  .btn-action {
    display: inline-block;
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-size: var(--font-size-base);
    font-weight: 600;
    transition: background var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }
  .btn-action:hover {
    background: var(--bg-primary-hover);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  @media (max-width: 767px) {
    .burger {
      display: flex;
    }
    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1);
      box-shadow: var(--shadow-md);
      padding: var(--space-y) var(--space-x);
      display: none;
    }
    .nav-menu.open {
      display: block;
    }
    .nav-list {
      flex-direction: column;
      gap: 0.5rem;
    }
    .nav-list a {
      display: block;
      padding: 0.75rem 1rem;
    }
    .header-cta {
      display: none;
    }
  }
  @media (min-width: 768px) {
    .nav-menu {
      display: flex !important;
    }
  }

footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 40px 20px 20px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 30px;
}
.footer-brand {
  flex: 1 1 200px;
}
.footer-logo {
  font-size: 24px;
  font-weight: bold;
  color: #f0c040;
  text-decoration: none;
}
.footer-nav {
  flex: 2 1 300px;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.footer-nav a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-nav a:hover {
  color: #f0c040;
}
.footer-links {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links a:hover {
  color: #f0c040;
}
.footer-contacts {
  flex: 1 1 250px;
}
.footer-contacts p {
  margin: 5px 0;
}
.footer-contacts a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-contacts a:hover {
  color: #f0c040;
}
.footer-disclaimer {
  border-top: 1px solid #333;
  padding-top: 20px;
  margin-top: 20px;
  font-size: 12px;
  color: #aaa;
  text-align: center;
}
.footer-copyright {
  text-align: center;
  margin-top: 15px;
  font-size: 12px;
  color: #888;
}
@media (max-width: 768px) {
  .footer-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-nav ul {
    justify-content: center;
  }
  .footer-links {
    align-items: center;
  }
  .footer-contacts {
    text-align: center;
  }
}

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

    .cookie-lv12__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px var(--gap);
        align-items: center;
    }

    .cookie-lv12__title {
        font-weight: 700;
        color: var(--fg-on-surface);
    }

    .cookie-lv12 p {
        margin: 0;
        grid-column: 1 / 2;
        color: var(--fg-muted);
    }

    .cookie-lv12__actions {
        grid-row: 1 / 3;
        grid-column: 2 / 3;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .cookie-lv12__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-2);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-lv12__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-lv12__wrap {
            grid-template-columns: 1fr;
        }

        .cookie-lv12 p,
        .cookie-lv12__actions {
            grid-column: auto;
            grid-row: auto;
        }

        .cookie-lv12__actions {
            justify-content: flex-start;
        }
    }

.nfsocial-v11 {
        padding: clamp(48px, 8vw, 80px) 0;
        background: linear-gradient(145deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
    }

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

    .nfsocial-v11__grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: calc(var(--gap) * 2);
        align-items: center;
    }

    .nfsocial-v11__media img {
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        width: 100%;
        display: block;
    }

    .nfsocial-v11__text h2 {
        margin-bottom: var(--space-y);
    }

    .nfsocial-v11__text p {
        margin-bottom: var(--space-y);
        opacity: .92;
    }

    .nfsocial-v11__text a {
        display: inline-block;
        padding: 12px 24px;
        border-radius: var(--radius-md);
        text-decoration: none;
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    @media (max-width: 840px) {
        .nfsocial-v11__grid {
            grid-template-columns: 1fr;
        }
    }

body{margin:0;padding:0;font-family:var(--font-family);box-sizing: border-box;}
    *{box-sizing:border-box;}

    .index-feedback {
        background: radial-gradient(circle at 20% 25%, rgba(255, 255, 255, 0.7), transparent 60%),
        radial-gradient(circle at 85% 65%, rgba(212, 165, 165, 0.35), transparent 55%),
        var(--gradient-accent);
        color: var(--fg-on-primary);
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 40px);
        overflow: hidden;
    }

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

    .index-feedback__h {
        text-align: center;
        margin-bottom: clamp(28px, 6vw, 60px);

        transform: translateY(-18px);
    }

    .index-feedback__eyebrow {
        margin: 0 0 10px;
        text-transform: uppercase;
        letter-spacing: 0.22em;
        font-size: 12px;
        color: rgba(58, 46, 61, 0.75);
    }

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

    .index-feedback__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
        gap: clamp(14px, 2.6vw, 22px);
    }

    .index-feedback__card {
        border-radius: var(--radius-xl);
        border: 1px solid rgba(58, 46, 61, 0.12);
        background: rgba(255, 255, 255, 0.6);
        box-shadow: var(--shadow-lg);
        padding: clamp(18px, 3vw, 26px);
        backdrop-filter: blur(10px);

        transform: translateY(28px);
        position: relative;
        overflow: hidden;
    }

    .index-feedback__card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.6), transparent 55%);
        opacity: 0.6;
        pointer-events: none;
    }

    .index-feedback__top {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 14px;
        position: relative;
        z-index: 1;
    }

    .index-feedback__who {
        display: flex;
        align-items: center;
        gap: 12px;
        min-width: 0;
    }

    .index-feedback__name {
        margin: 0;
        font-size: 16px;
        font-weight: 700;
        color: var(--fg-on-page);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 18ch;
    }

    .index-feedback__meta {
        margin: 2px 0 0;
        font-size: 13px;
        color: rgba(58, 46, 61, 0.7);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 22ch;
    }

    .index-feedback__rating {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 8px 10px;
        border-radius: 999px;
        background: var(--bg-page);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-sm);
        flex: 0 0 auto;
    }

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

    .index-feedback__score {
        font-size: 12px;
        font-weight: 700;
        color: var(--fg-on-page);
    }

    .index-feedback__quote {
        margin: 14px 0 0;
        position: relative;
        z-index: 1;
        color: rgba(58, 46, 61, 0.88);
        font-size: 14px;
        line-height: 1.65;
    }

    .index-feedback__badge {
        display: inline-flex;
        margin-top: 12px;
        position: relative;
        z-index: 1;
        padding: 6px 10px;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border: 1px solid var(--border-on-surface-light);
        font-size: 11px;
        letter-spacing: 0.14em;
        text-transform: uppercase;
    }

.why-choose {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.site-header {
    background: var(--surface-1);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }
  .nav-list a {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-list a:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--brand);
  }
  .header-cta {
    display: flex;
    align-items: center;
    gap: var(--gap);
    flex-shrink: 0;
  }
  .contact-phone {
    color: var(--neutral-600);
    font-size: var(--font-size-base);
    white-space: nowrap;
  }
  .btn-action {
    display: inline-block;
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-size: var(--font-size-base);
    font-weight: 600;
    transition: background var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }
  .btn-action:hover {
    background: var(--bg-primary-hover);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  @media (max-width: 767px) {
    .burger {
      display: flex;
    }
    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1);
      box-shadow: var(--shadow-md);
      padding: var(--space-y) var(--space-x);
      display: none;
    }
    .nav-menu.open {
      display: block;
    }
    .nav-list {
      flex-direction: column;
      gap: 0.5rem;
    }
    .nav-list a {
      display: block;
      padding: 0.75rem 1rem;
    }
    .header-cta {
      display: none;
    }
  }
  @media (min-width: 768px) {
    .nav-menu {
      display: flex !important;
    }
  }

footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 40px 20px 20px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 30px;
}
.footer-brand {
  flex: 1 1 200px;
}
.footer-logo {
  font-size: 24px;
  font-weight: bold;
  color: #f0c040;
  text-decoration: none;
}
.footer-nav {
  flex: 2 1 300px;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.footer-nav a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-nav a:hover {
  color: #f0c040;
}
.footer-links {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links a:hover {
  color: #f0c040;
}
.footer-contacts {
  flex: 1 1 250px;
}
.footer-contacts p {
  margin: 5px 0;
}
.footer-contacts a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-contacts a:hover {
  color: #f0c040;
}
.footer-disclaimer {
  border-top: 1px solid #333;
  padding-top: 20px;
  margin-top: 20px;
  font-size: 12px;
  color: #aaa;
  text-align: center;
}
.footer-copyright {
  text-align: center;
  margin-top: 15px;
  font-size: 12px;
  color: #888;
}
@media (max-width: 768px) {
  .footer-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-nav ul {
    justify-content: center;
  }
  .footer-links {
    align-items: center;
  }
  .footer-contacts {
    text-align: center;
  }
}

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

    .cookie-lv12__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px var(--gap);
        align-items: center;
    }

    .cookie-lv12__title {
        font-weight: 700;
        color: var(--fg-on-surface);
    }

    .cookie-lv12 p {
        margin: 0;
        grid-column: 1 / 2;
        color: var(--fg-muted);
    }

    .cookie-lv12__actions {
        grid-row: 1 / 3;
        grid-column: 2 / 3;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .cookie-lv12__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-2);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-lv12__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-lv12__wrap {
            grid-template-columns: 1fr;
        }

        .cookie-lv12 p,
        .cookie-lv12__actions {
            grid-column: auto;
            grid-row: auto;
        }

        .cookie-lv12__actions {
            justify-content: flex-start;
        }
    }

.map-panel-l5 {
        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);
    }

    .map-panel-l5__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .map-panel-l5__top {
        display: flex;
        justify-content: space-between;
        align-items: end;
        gap: 1rem;
        flex-wrap: wrap;
        margin-bottom: 1rem;
    }

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

    .map-panel-l5__top p {
        margin: .55rem 0 0;
        color: var(--neutral-600);
    }

    .map-panel-l5__tags {
        color: var(--brand);
    }

    .map-panel-l5__grid {
        display: grid;
        grid-template-columns: 1.15fr .85fr;
        gap: 1rem;
    }

    .map-panel-l5__embed {
        overflow: hidden;
        border-radius: var(--radius-xl);
        border: 1px solid var(--border-on-surface-light);
    }

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

    .map-panel-l5__list {
        display: grid;
        gap: .75rem;
    }

    .map-panel-l5__list div {
        padding: .95rem;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
    }

    .map-panel-l5__list span {
        display: block;
        margin-top: .35rem;
        color: var(--neutral-600);
    }

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

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

    .nfform-v7__form {
        max-width: 760px;
        margin: 0 auto;
        border: 1px solid rgba(255, 255, 255, .26);
        border-radius: var(--radius-lg);
        background: rgba(255, 255, 255, .1);
        padding: 16px;
        display: grid;
        gap: 10px;
    }

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

    .nfform-v7 p {
        margin: 0 0 2px;
        opacity: .92;
    }

    .nfform-v7 label {
        display: grid;
        gap: 6px;
    }

    .nfform-v7 input:not([type='checkbox']),
    .nfform-v7 textarea {
        width: 100%;
        border: 1px solid rgba(255, 255, 255, .35);
        border-radius: var(--radius-sm);
        background: rgba(255, 255, 255, .14);
        color: var(--fg-on-primary);
        padding: 9px;
        font: inherit;
    }

    .nfform-v7__agree {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .nfform-v7 button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 10px 14px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-weight: 700;
    }

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

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

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

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

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

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

    .contact-layout-f .capsule article {
        border-radius: 12px;
        border: 1px solid var(--border-on-surface-light);
        padding: 14px 16px;
        background: var(--surface-1);
    }

    .contact-layout-f .capsule h3 {
        margin: 0;
        font-size: .96rem;
        color: var(--brand);
    }

    .contact-layout-f .capsule p {
        margin: 5px 0 0;
    }

    .contact-layout-f .social-strip {
        margin-top: 18px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }

    .contact-layout-f .social-strip a {
        text-decoration: none;
        color: var(--fg-on-primary);
        background: var(--gradient-hero);
        padding: 7px 11px;
        border-radius: var(--radius-sm);
    }

    .social-follow {
        text-align: center;
    }

.site-header {
    background: var(--surface-1);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }
  .nav-list a {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-list a:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--brand);
  }
  .header-cta {
    display: flex;
    align-items: center;
    gap: var(--gap);
    flex-shrink: 0;
  }
  .contact-phone {
    color: var(--neutral-600);
    font-size: var(--font-size-base);
    white-space: nowrap;
  }
  .btn-action {
    display: inline-block;
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-size: var(--font-size-base);
    font-weight: 600;
    transition: background var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }
  .btn-action:hover {
    background: var(--bg-primary-hover);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  @media (max-width: 767px) {
    .burger {
      display: flex;
    }
    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1);
      box-shadow: var(--shadow-md);
      padding: var(--space-y) var(--space-x);
      display: none;
    }
    .nav-menu.open {
      display: block;
    }
    .nav-list {
      flex-direction: column;
      gap: 0.5rem;
    }
    .nav-list a {
      display: block;
      padding: 0.75rem 1rem;
    }
    .header-cta {
      display: none;
    }
  }
  @media (min-width: 768px) {
    .nav-menu {
      display: flex !important;
    }
  }

footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 40px 20px 20px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 30px;
}
.footer-brand {
  flex: 1 1 200px;
}
.footer-logo {
  font-size: 24px;
  font-weight: bold;
  color: #f0c040;
  text-decoration: none;
}
.footer-nav {
  flex: 2 1 300px;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.footer-nav a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-nav a:hover {
  color: #f0c040;
}
.footer-links {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links a:hover {
  color: #f0c040;
}
.footer-contacts {
  flex: 1 1 250px;
}
.footer-contacts p {
  margin: 5px 0;
}
.footer-contacts a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-contacts a:hover {
  color: #f0c040;
}
.footer-disclaimer {
  border-top: 1px solid #333;
  padding-top: 20px;
  margin-top: 20px;
  font-size: 12px;
  color: #aaa;
  text-align: center;
}
.footer-copyright {
  text-align: center;
  margin-top: 15px;
  font-size: 12px;
  color: #888;
}
@media (max-width: 768px) {
  .footer-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-nav ul {
    justify-content: center;
  }
  .footer-links {
    align-items: center;
  }
  .footer-contacts {
    text-align: center;
  }
}

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

    .cookie-lv12__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px var(--gap);
        align-items: center;
    }

    .cookie-lv12__title {
        font-weight: 700;
        color: var(--fg-on-surface);
    }

    .cookie-lv12 p {
        margin: 0;
        grid-column: 1 / 2;
        color: var(--fg-muted);
    }

    .cookie-lv12__actions {
        grid-row: 1 / 3;
        grid-column: 2 / 3;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .cookie-lv12__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-2);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-lv12__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-lv12__wrap {
            grid-template-columns: 1fr;
        }

        .cookie-lv12 p,
        .cookie-lv12__actions {
            grid-column: auto;
            grid-row: auto;
        }

        .cookie-lv12__actions {
            justify-content: flex-start;
        }
    }

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

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

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

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

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

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

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

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

.site-header {
    background: var(--surface-1);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }
  .nav-list a {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-list a:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--brand);
  }
  .header-cta {
    display: flex;
    align-items: center;
    gap: var(--gap);
    flex-shrink: 0;
  }
  .contact-phone {
    color: var(--neutral-600);
    font-size: var(--font-size-base);
    white-space: nowrap;
  }
  .btn-action {
    display: inline-block;
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-size: var(--font-size-base);
    font-weight: 600;
    transition: background var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }
  .btn-action:hover {
    background: var(--bg-primary-hover);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  @media (max-width: 767px) {
    .burger {
      display: flex;
    }
    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1);
      box-shadow: var(--shadow-md);
      padding: var(--space-y) var(--space-x);
      display: none;
    }
    .nav-menu.open {
      display: block;
    }
    .nav-list {
      flex-direction: column;
      gap: 0.5rem;
    }
    .nav-list a {
      display: block;
      padding: 0.75rem 1rem;
    }
    .header-cta {
      display: none;
    }
  }
  @media (min-width: 768px) {
    .nav-menu {
      display: flex !important;
    }
  }

footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 40px 20px 20px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 30px;
}
.footer-brand {
  flex: 1 1 200px;
}
.footer-logo {
  font-size: 24px;
  font-weight: bold;
  color: #f0c040;
  text-decoration: none;
}
.footer-nav {
  flex: 2 1 300px;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.footer-nav a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-nav a:hover {
  color: #f0c040;
}
.footer-links {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links a:hover {
  color: #f0c040;
}
.footer-contacts {
  flex: 1 1 250px;
}
.footer-contacts p {
  margin: 5px 0;
}
.footer-contacts a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-contacts a:hover {
  color: #f0c040;
}
.footer-disclaimer {
  border-top: 1px solid #333;
  padding-top: 20px;
  margin-top: 20px;
  font-size: 12px;
  color: #aaa;
  text-align: center;
}
.footer-copyright {
  text-align: center;
  margin-top: 15px;
  font-size: 12px;
  color: #888;
}
@media (max-width: 768px) {
  .footer-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-nav ul {
    justify-content: center;
  }
  .footer-links {
    align-items: center;
  }
  .footer-contacts {
    text-align: center;
  }
}

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

    .cookie-lv12__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px var(--gap);
        align-items: center;
    }

    .cookie-lv12__title {
        font-weight: 700;
        color: var(--fg-on-surface);
    }

    .cookie-lv12 p {
        margin: 0;
        grid-column: 1 / 2;
        color: var(--fg-muted);
    }

    .cookie-lv12__actions {
        grid-row: 1 / 3;
        grid-column: 2 / 3;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .cookie-lv12__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-2);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-lv12__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-lv12__wrap {
            grid-template-columns: 1fr;
        }

        .cookie-lv12 p,
        .cookie-lv12__actions {
            grid-column: auto;
            grid-row: auto;
        }

        .cookie-lv12__actions {
            justify-content: flex-start;
        }
    }

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

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

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

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

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

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

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

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

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

.site-header {
    background: var(--surface-1);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }
  .nav-list a {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-list a:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--brand);
  }
  .header-cta {
    display: flex;
    align-items: center;
    gap: var(--gap);
    flex-shrink: 0;
  }
  .contact-phone {
    color: var(--neutral-600);
    font-size: var(--font-size-base);
    white-space: nowrap;
  }
  .btn-action {
    display: inline-block;
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-size: var(--font-size-base);
    font-weight: 600;
    transition: background var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }
  .btn-action:hover {
    background: var(--bg-primary-hover);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  @media (max-width: 767px) {
    .burger {
      display: flex;
    }
    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1);
      box-shadow: var(--shadow-md);
      padding: var(--space-y) var(--space-x);
      display: none;
    }
    .nav-menu.open {
      display: block;
    }
    .nav-list {
      flex-direction: column;
      gap: 0.5rem;
    }
    .nav-list a {
      display: block;
      padding: 0.75rem 1rem;
    }
    .header-cta {
      display: none;
    }
  }
  @media (min-width: 768px) {
    .nav-menu {
      display: flex !important;
    }
  }

footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 40px 20px 20px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 30px;
}
.footer-brand {
  flex: 1 1 200px;
}
.footer-logo {
  font-size: 24px;
  font-weight: bold;
  color: #f0c040;
  text-decoration: none;
}
.footer-nav {
  flex: 2 1 300px;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.footer-nav a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-nav a:hover {
  color: #f0c040;
}
.footer-links {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links a:hover {
  color: #f0c040;
}
.footer-contacts {
  flex: 1 1 250px;
}
.footer-contacts p {
  margin: 5px 0;
}
.footer-contacts a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-contacts a:hover {
  color: #f0c040;
}
.footer-disclaimer {
  border-top: 1px solid #333;
  padding-top: 20px;
  margin-top: 20px;
  font-size: 12px;
  color: #aaa;
  text-align: center;
}
.footer-copyright {
  text-align: center;
  margin-top: 15px;
  font-size: 12px;
  color: #888;
}
@media (max-width: 768px) {
  .footer-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-nav ul {
    justify-content: center;
  }
  .footer-links {
    align-items: center;
  }
  .footer-contacts {
    text-align: center;
  }
}

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

    .cookie-lv12__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px var(--gap);
        align-items: center;
    }

    .cookie-lv12__title {
        font-weight: 700;
        color: var(--fg-on-surface);
    }

    .cookie-lv12 p {
        margin: 0;
        grid-column: 1 / 2;
        color: var(--fg-muted);
    }

    .cookie-lv12__actions {
        grid-row: 1 / 3;
        grid-column: 2 / 3;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .cookie-lv12__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-2);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-lv12__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-lv12__wrap {
            grid-template-columns: 1fr;
        }

        .cookie-lv12 p,
        .cookie-lv12__actions {
            grid-column: auto;
            grid-row: auto;
        }

        .cookie-lv12__actions {
            justify-content: flex-start;
        }
    }

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

.site-header {
    background: var(--surface-1);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }
  .nav-list a {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-list a:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--brand);
  }
  .header-cta {
    display: flex;
    align-items: center;
    gap: var(--gap);
    flex-shrink: 0;
  }
  .contact-phone {
    color: var(--neutral-600);
    font-size: var(--font-size-base);
    white-space: nowrap;
  }
  .btn-action {
    display: inline-block;
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-size: var(--font-size-base);
    font-weight: 600;
    transition: background var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }
  .btn-action:hover {
    background: var(--bg-primary-hover);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  @media (max-width: 767px) {
    .burger {
      display: flex;
    }
    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1);
      box-shadow: var(--shadow-md);
      padding: var(--space-y) var(--space-x);
      display: none;
    }
    .nav-menu.open {
      display: block;
    }
    .nav-list {
      flex-direction: column;
      gap: 0.5rem;
    }
    .nav-list a {
      display: block;
      padding: 0.75rem 1rem;
    }
    .header-cta {
      display: none;
    }
  }
  @media (min-width: 768px) {
    .nav-menu {
      display: flex !important;
    }
  }

footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 40px 20px 20px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 30px;
}
.footer-brand {
  flex: 1 1 200px;
}
.footer-logo {
  font-size: 24px;
  font-weight: bold;
  color: #f0c040;
  text-decoration: none;
}
.footer-nav {
  flex: 2 1 300px;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.footer-nav a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-nav a:hover {
  color: #f0c040;
}
.footer-links {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links a:hover {
  color: #f0c040;
}
.footer-contacts {
  flex: 1 1 250px;
}
.footer-contacts p {
  margin: 5px 0;
}
.footer-contacts a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-contacts a:hover {
  color: #f0c040;
}
.footer-disclaimer {
  border-top: 1px solid #333;
  padding-top: 20px;
  margin-top: 20px;
  font-size: 12px;
  color: #aaa;
  text-align: center;
}
.footer-copyright {
  text-align: center;
  margin-top: 15px;
  font-size: 12px;
  color: #888;
}
@media (max-width: 768px) {
  .footer-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-nav ul {
    justify-content: center;
  }
  .footer-links {
    align-items: center;
  }
  .footer-contacts {
    text-align: center;
  }
}

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

    .cookie-lv12__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px var(--gap);
        align-items: center;
    }

    .cookie-lv12__title {
        font-weight: 700;
        color: var(--fg-on-surface);
    }

    .cookie-lv12 p {
        margin: 0;
        grid-column: 1 / 2;
        color: var(--fg-muted);
    }

    .cookie-lv12__actions {
        grid-row: 1 / 3;
        grid-column: 2 / 3;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .cookie-lv12__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-2);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-lv12__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-lv12__wrap {
            grid-template-columns: 1fr;
        }

        .cookie-lv12 p,
        .cookie-lv12__actions {
            grid-column: auto;
            grid-row: auto;
        }

        .cookie-lv12__actions {
            justify-content: flex-start;
        }
    }

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

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

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

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

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