:root {
  --font-family: "Epilogue", sans-serif;
  --font-size-base: 14.7px;
  --line-height-base: 1.34;

  --max-w: 1020px;
  --space-x: 0.95rem;
  --space-y: 0.93rem;
  --gap: 0.85rem;

  --radius-xl: 0.94rem;
  --radius-lg: 0.57rem;
  --radius-md: 0.31rem;
  --radius-sm: 0.24rem;

  --shadow-sm: 0 0px 4px rgba(0,0,0,0.05);
  --shadow-md: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-lg: 0 14px 28px rgba(0,0,0,0.08);

  --overlay: rgba(0,0,0,0.5);
  --anim-duration: 150ms;
  --anim-ease: ease-in-out;
  --random-number: 1;

  --brand: #D32F2F;
  --brand-contrast: #FFFFFF;
  --accent: #1976D2;
  --accent-contrast: #FFFFFF;

  --neutral-0: #FFFFFF;
  --neutral-100: #F5F5F5;
  --neutral-300: #BDBDBD;
  --neutral-600: #757575;
  --neutral-800: #424242;
  --neutral-900: #212121;

  --bg-page: #FFFFFF;
  --fg-on-page: #212121;

  --bg-alt: #F5F5F5;
  --fg-on-alt: #424242;

  --surface-1: #FFFFFF;
  --surface-2: #FAFAFA;
  --fg-on-surface: #212121;
  --border-on-surface: #E0E0E0;

  --surface-light: #FFFFFF;
  --fg-on-surface-light: #424242;
  --border-on-surface-light: #EEEEEE;

  --bg-primary: #D32F2F;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #C62828;
  --ring: #D32F2F;

  --bg-accent: #1976D2;
  --fg-on-accent: #FFFFFF;
  --bg-accent-hover: #1565C0;

  --link: #1976D2;
  --link-hover: #1565C0;

  --gradient-hero: linear-gradient(135deg, #D32F2F 0%, #B71C1C 100%);
  --gradient-accent: linear-gradient(135deg, #1976D2 0%, #1565C0 100%);

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

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: var(--space-y) var(--space-x);
    box-sizing: border-box;
  }

  .header-card {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--surface-1);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem 1.5rem;
    gap: var(--gap);
  }

  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
  }

  .nav-menu ul {
    list-style: none;
    display: flex;
    gap: var(--gap);
    margin: 0;
    padding: 0;
  }

  .nav-menu a {
    text-decoration: none;
    color: var(--fg-on-surface);
    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-menu a:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--brand);
  }

  .btn-accent {
    display: inline-block;
    background: var(--accent);
    color: var(--accent-contrast);
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    transition: background var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

  .btn-accent:hover {
    background: var(--bg-accent-hover);
  }

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 0;
  }

  .burger span {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
  }

  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .burger.active span:nth-child(2) {
    opacity: 0;
  }

  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  @media (max-width: 767px) {
    .header-card {
      padding: 0.5rem 1rem;
    }

    .nav-menu {
      position: absolute;
      top: 100%;
      left: var(--space-x);
      right: var(--space-x);
      background: var(--surface-1);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
      padding: 1rem;
      display: none;
      margin-top: 0.5rem;
    }

    .nav-menu.open {
      display: block;
    }

    .nav-menu ul {
      flex-direction: column;
      gap: 0.5rem;
    }

    .nav-menu a {
      display: block;
      padding: 0.75rem 1rem;
    }

    .btn-accent {
      display: none;
    }

    .burger {
      display: flex;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #333;
  }
  .footer-logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0c040;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .footer-logo a:hover {
    color: #ffd966;
  }
  .footer-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 0;
    padding: 0;
  }
  .footer-nav ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav ul li a:hover {
    color: #f0c040;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
  }
  .footer-contacts {
    flex: 1 1 300px;
  }
  .footer-contacts address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .contact-item {
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .contact-item .icon {
    font-size: 1.1rem;
  }
  .contact-item a {
    color: #e0e0e0;
    text-decoration: none;
  }
  .contact-item a:hover {
    color: #f0c040;
  }
  .footer-legal {
    flex: 1 1 200px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .footer-legal a {
    color: #bbb;
    text-decoration: none;
    font-size: 0.95rem;
  }
  .footer-legal a:hover {
    color: #f0c040;
  }
  .footer-disclaimer {
    flex: 1 1 100%;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #333;
    font-size: 0.85rem;
    color: #aaa;
    text-align: center;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  .footer-copyright {
    flex: 1 1 100%;
    text-align: center;
    font-size: 0.9rem;
    color: #888;
    margin-top: 10px;
  }
  .footer-copyright p {
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 15px;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-bottom {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-contacts address {
      align-items: center;
    }
    .footer-legal {
      align-items: center;
    }
  }

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

    .nfcookie-v12__shell {
        max-width: 720px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
    }

    .nfcookie-v12__meta {display: flex; align-items: center; gap: 8px;}

    .nfcookie-v12__shell p {margin: 8px 0 0; color: var(--fg-on-surface-light);}

    .nfcookie-v12__actions {margin-top: 14px; display: flex; gap: 8px; flex-wrap: wrap;}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.social-l2 {

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

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

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

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

    .social-l2__sub {
        margin: 10px 0 0;
        max-width: 72ch;
        color: var(--neutral-600);
    }

    .social-l2__wrap {
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-lg);
        overflow: hidden;
    }

    .social-l2__quoteBox {
        padding: 18px;
        border-bottom: 1px solid var(--border-on-surface);
        position: relative;
    }

    .social-l2__quote {
        display: none;
    }

    .social-l2__quote.is-on {
        display: block;
    }

    .social-l2__q {
        font-size: clamp(16px, 2.2vw, 20px);
        line-height: 1.7;
        color: var(--fg-on-page);
        letter-spacing: -.01em;
    }

    .social-l2__m {
        margin-top: 12px;
        color: var(--neutral-600);
        font-weight: 800;
    }

    .social-l2__badges {
        overflow: hidden;
        background: var(--bg-alt);
    }

    .social-l2__badgeTrack {
        display: flex;
        gap: 10px;
        padding: 12px;
        width: max-content;
        animation: socialL2Badges 16s linear infinite;
    }

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

    .social-l2__badge {
        display: inline-flex;
        align-items: center;
        padding: 8px 12px;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border: 1px solid rgba(0, 0, 0, 0.06);
        font-weight: 900;
        white-space: nowrap;
    }

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

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

    .faq-layout-c .wrap {
        max-width: 900px;
        margin: 0 auto;
    }

    .faq-layout-c .section-head {
        margin-bottom: 16px;
    }

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

    .faq-layout-c .section-head p {
        margin: 10px 0 0;
        color: var(--neutral-700, var(--neutral-600));
    }

    .faq-layout-c .faq-list {
        margin: 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 12px;
        counter-reset: faq;
    }

    .faq-layout-c .row {
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        overflow: hidden;
    }

    .faq-layout-c .q {
        width: 100%;
        border: 0;
        background: transparent;
        text-align: left;
        padding: 12px;
        font: inherit;
        cursor: pointer;
    }

    .faq-layout-c .q span {
        display: inline-block;
        min-width: 50px;
        color: var(--brand);
        font-weight: 700;
    }

    .faq-layout-c .a {
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease);
    }

    .faq-layout-c .a p {
        margin: 0;
        padding: 0 12px 12px;
        color: var(--neutral-600);
    }

    .faq-layout-c .row.open .a {
        max-height: 240px;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .visual-wave-c5__head {
        text-align: center;
        margin-bottom: 1rem;
    }

    .visual-wave-c5__head p {
        margin: 0;
        color: rgba(255, 255, 255, .76);
    }

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

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

    .visual-wave-c5__grid figure {
        margin: 0;
        overflow: hidden;
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .visual-wave-c5__image {
        overflow: hidden;
    }

    .visual-wave-c5__image img {
        display: block;
        width: 100%;
        height: 14rem;
        object-fit: cover;
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .visual-wave-c5__grid figure:hover img {
        transform: scale(1.05);
    }

    .visual-wave-c5__grid figcaption {
        padding: 1rem;
    }

    .visual-wave-c5__grid small {
        color: rgba(255, 255, 255, .76);
    }

    .visual-wave-c5__grid h3 {
        margin: .45rem 0 .35rem;
    }

    .visual-wave-c5__grid p {
        margin: 0;
        color: rgba(255, 255, 255, .84);
    }

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: var(--space-y) var(--space-x);
    box-sizing: border-box;
  }

  .header-card {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--surface-1);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem 1.5rem;
    gap: var(--gap);
  }

  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
  }

  .nav-menu ul {
    list-style: none;
    display: flex;
    gap: var(--gap);
    margin: 0;
    padding: 0;
  }

  .nav-menu a {
    text-decoration: none;
    color: var(--fg-on-surface);
    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-menu a:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--brand);
  }

  .btn-accent {
    display: inline-block;
    background: var(--accent);
    color: var(--accent-contrast);
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    transition: background var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

  .btn-accent:hover {
    background: var(--bg-accent-hover);
  }

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 0;
  }

  .burger span {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
  }

  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .burger.active span:nth-child(2) {
    opacity: 0;
  }

  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  @media (max-width: 767px) {
    .header-card {
      padding: 0.5rem 1rem;
    }

    .nav-menu {
      position: absolute;
      top: 100%;
      left: var(--space-x);
      right: var(--space-x);
      background: var(--surface-1);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
      padding: 1rem;
      display: none;
      margin-top: 0.5rem;
    }

    .nav-menu.open {
      display: block;
    }

    .nav-menu ul {
      flex-direction: column;
      gap: 0.5rem;
    }

    .nav-menu a {
      display: block;
      padding: 0.75rem 1rem;
    }

    .btn-accent {
      display: none;
    }

    .burger {
      display: flex;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #333;
  }
  .footer-logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0c040;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .footer-logo a:hover {
    color: #ffd966;
  }
  .footer-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 0;
    padding: 0;
  }
  .footer-nav ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav ul li a:hover {
    color: #f0c040;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
  }
  .footer-contacts {
    flex: 1 1 300px;
  }
  .footer-contacts address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .contact-item {
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .contact-item .icon {
    font-size: 1.1rem;
  }
  .contact-item a {
    color: #e0e0e0;
    text-decoration: none;
  }
  .contact-item a:hover {
    color: #f0c040;
  }
  .footer-legal {
    flex: 1 1 200px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .footer-legal a {
    color: #bbb;
    text-decoration: none;
    font-size: 0.95rem;
  }
  .footer-legal a:hover {
    color: #f0c040;
  }
  .footer-disclaimer {
    flex: 1 1 100%;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #333;
    font-size: 0.85rem;
    color: #aaa;
    text-align: center;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  .footer-copyright {
    flex: 1 1 100%;
    text-align: center;
    font-size: 0.9rem;
    color: #888;
    margin-top: 10px;
  }
  .footer-copyright p {
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 15px;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-bottom {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-contacts address {
      align-items: center;
    }
    .footer-legal {
      align-items: center;
    }
  }

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

    .nfcookie-v12__shell {
        max-width: 720px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
    }

    .nfcookie-v12__meta {display: flex; align-items: center; gap: 8px;}

    .nfcookie-v12__shell p {margin: 8px 0 0; color: var(--fg-on-surface-light);}

    .nfcookie-v12__actions {margin-top: 14px; display: flex; gap: 8px; flex-wrap: wrap;}

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

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

.review-list {

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

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

    .review-list .review-list__h {
        text-align: center;
        margin-bottom: var(--space-y);
        color: var(--fg-on-page);
    }

    .review-list h1 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 1rem;
    }

    .review-list .review-list__rating {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
    }

    .review-list .review-list__rating-value {
        font-size: 2rem;
        font-weight: 700;
    }

    .review-list .review-list__stars {
        color: #ffd700;
        font-size: 1.5rem;
    }

    .review-list .review-list__filters {
        display: flex;
        gap: 0.5rem;
        flex-wrap: wrap;
        margin-bottom: var(--space-y);
        justify-content: center;
    }

    .review-list .review-list__filter {
        padding: 0.5rem 1rem;
        border-radius: var(--radius-md);
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.1);
        color: var(--fg-on-page);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .review-list .review-list__filter:hover {
        background: rgba(255, 255, 255, 0.2);
    }

    .review-list .review-list__grid {
        display: grid;
        gap: var(--space-x);
    }

    @media (min-width: 768px) {
        .review-list .review-list__grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
    }

    @media (min-width: 1024px) {
        .review-list .review-list__grid {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }
    }

    .review-list .review-list__card {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        padding: clamp(16px, 2vw, 24px);
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .review-list .review-list__author {
        display: flex;
        gap: 1rem;
        margin-bottom: 1rem;
        align-items: center;
    }

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

    .review-list h4 {
        margin: 0 0 0.25rem;
        color: var(--fg-on-page);
    }

    .review-list p {

        line-height: 1.6;
        margin: 0 0 1rem;
    }

    .review-list .review-list__date {
        font-size: 0.875rem;

    }

.social-l2 {

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

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

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

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

    .social-l2__sub {
        margin: 10px 0 0;
        max-width: 72ch;
        color: var(--neutral-600);
    }

    .social-l2__wrap {
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-lg);
        overflow: hidden;
    }

    .social-l2__quoteBox {
        padding: 18px;
        border-bottom: 1px solid var(--border-on-surface);
        position: relative;
    }

    .social-l2__quote {
        display: none;
    }

    .social-l2__quote.is-on {
        display: block;
    }

    .social-l2__q {
        font-size: clamp(16px, 2.2vw, 20px);
        line-height: 1.7;
        color: var(--fg-on-page);
        letter-spacing: -.01em;
    }

    .social-l2__m {
        margin-top: 12px;
        color: var(--neutral-600);
        font-weight: 800;
    }

    .social-l2__badges {
        overflow: hidden;
        background: var(--bg-alt);
    }

    .social-l2__badgeTrack {
        display: flex;
        gap: 10px;
        padding: 12px;
        width: max-content;
        animation: socialL2Badges 16s linear infinite;
    }

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

    .social-l2__badge {
        display: inline-flex;
        align-items: center;
        padding: 8px 12px;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border: 1px solid rgba(0, 0, 0, 0.06);
        font-weight: 900;
        white-space: nowrap;
    }

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

.add-review {

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

    .add-review .add-review__c {
        max-width: 600px;
        margin: 0 auto;
    }

    .add-review .add-review__h {
        text-align: center;
        margin-bottom: var(--space-y);
        color: var(--fg-on-page);
    }

    .add-review h1 {
        font-size: clamp(28px, 5vw, 42px);
        margin: 0 0 0.5rem;
    }

    .add-review .add-review__form {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        padding: clamp(24px, 3vw, 40px);
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, 0.2);
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .add-review .add-review__rating {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .add-review .add-review__rating label:first-child {
        color: var(--fg-on-page);
        font-weight: 600;
    }

    .add-review .add-review__stars {
        display: flex;
        flex-direction: row-reverse;
        justify-content: flex-end;
        gap: 0.25rem;
    }

    .add-review .add-review__stars input {
        display: none;
    }

    .add-review .add-review__stars label {
        font-size: 2rem;
        color: #666;
        cursor: pointer;
        transition: color var(--anim-duration) var(--anim-ease);
    }

    .add-review .add-review__stars input:checked ~ label,
    .add-review .add-review__stars label:hover,
    .add-review .add-review__stars label:hover ~ label {
        color: #ffd700;
    }

    .add-review .add-review__form input,
    .add-review .add-review__form textarea {
        padding: 0.875rem;
        border-radius: var(--radius-md);
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.1);
        color: var(--fg-on-page);

        outline: none;
    }

    .add-review .add-review__form input::placeholder,
    .add-review .add-review__form textarea::placeholder {

    }

    .add-review .add-review__form input:focus,
    .add-review .add-review__form textarea:focus {
        border-color: rgba(255, 255, 255, 0.5);
        box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
    }

    .add-review .add-review__form button {
        padding: 1rem 2rem;
        border-radius: var(--radius-lg);
        border: none;
        background: var(--bg-page);
        color: var(--bg-primary);
        font-weight: 600;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .add-review .add-review__form button:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
    }

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: var(--space-y) var(--space-x);
    box-sizing: border-box;
  }

  .header-card {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--surface-1);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem 1.5rem;
    gap: var(--gap);
  }

  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
  }

  .nav-menu ul {
    list-style: none;
    display: flex;
    gap: var(--gap);
    margin: 0;
    padding: 0;
  }

  .nav-menu a {
    text-decoration: none;
    color: var(--fg-on-surface);
    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-menu a:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--brand);
  }

  .btn-accent {
    display: inline-block;
    background: var(--accent);
    color: var(--accent-contrast);
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    transition: background var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

  .btn-accent:hover {
    background: var(--bg-accent-hover);
  }

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 0;
  }

  .burger span {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
  }

  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .burger.active span:nth-child(2) {
    opacity: 0;
  }

  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  @media (max-width: 767px) {
    .header-card {
      padding: 0.5rem 1rem;
    }

    .nav-menu {
      position: absolute;
      top: 100%;
      left: var(--space-x);
      right: var(--space-x);
      background: var(--surface-1);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
      padding: 1rem;
      display: none;
      margin-top: 0.5rem;
    }

    .nav-menu.open {
      display: block;
    }

    .nav-menu ul {
      flex-direction: column;
      gap: 0.5rem;
    }

    .nav-menu a {
      display: block;
      padding: 0.75rem 1rem;
    }

    .btn-accent {
      display: none;
    }

    .burger {
      display: flex;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #333;
  }
  .footer-logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0c040;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .footer-logo a:hover {
    color: #ffd966;
  }
  .footer-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 0;
    padding: 0;
  }
  .footer-nav ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav ul li a:hover {
    color: #f0c040;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
  }
  .footer-contacts {
    flex: 1 1 300px;
  }
  .footer-contacts address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .contact-item {
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .contact-item .icon {
    font-size: 1.1rem;
  }
  .contact-item a {
    color: #e0e0e0;
    text-decoration: none;
  }
  .contact-item a:hover {
    color: #f0c040;
  }
  .footer-legal {
    flex: 1 1 200px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .footer-legal a {
    color: #bbb;
    text-decoration: none;
    font-size: 0.95rem;
  }
  .footer-legal a:hover {
    color: #f0c040;
  }
  .footer-disclaimer {
    flex: 1 1 100%;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #333;
    font-size: 0.85rem;
    color: #aaa;
    text-align: center;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  .footer-copyright {
    flex: 1 1 100%;
    text-align: center;
    font-size: 0.9rem;
    color: #888;
    margin-top: 10px;
  }
  .footer-copyright p {
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 15px;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-bottom {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-contacts address {
      align-items: center;
    }
    .footer-legal {
      align-items: center;
    }
  }

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

    .nfcookie-v12__shell {
        max-width: 720px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
    }

    .nfcookie-v12__meta {display: flex; align-items: center; gap: 8px;}

    .nfcookie-v12__shell p {margin: 8px 0 0; color: var(--fg-on-surface-light);}

    .nfcookie-v12__actions {margin-top: 14px; display: flex; gap: 8px; flex-wrap: wrap;}

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

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

.review-item {

        color: var(--fg-on-primary);
        background: var(--gradient-hero);
        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-primary) 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-primary);
    }

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

.testimonials-struct-v5 {
        padding: calc(var(--space-y) * 2) var(--space-x);
        background: white;
        color: black
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: var(--space-y) var(--space-x);
    box-sizing: border-box;
  }

  .header-card {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--surface-1);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem 1.5rem;
    gap: var(--gap);
  }

  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
  }

  .nav-menu ul {
    list-style: none;
    display: flex;
    gap: var(--gap);
    margin: 0;
    padding: 0;
  }

  .nav-menu a {
    text-decoration: none;
    color: var(--fg-on-surface);
    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-menu a:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--brand);
  }

  .btn-accent {
    display: inline-block;
    background: var(--accent);
    color: var(--accent-contrast);
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    transition: background var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

  .btn-accent:hover {
    background: var(--bg-accent-hover);
  }

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 0;
  }

  .burger span {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
  }

  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .burger.active span:nth-child(2) {
    opacity: 0;
  }

  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  @media (max-width: 767px) {
    .header-card {
      padding: 0.5rem 1rem;
    }

    .nav-menu {
      position: absolute;
      top: 100%;
      left: var(--space-x);
      right: var(--space-x);
      background: var(--surface-1);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
      padding: 1rem;
      display: none;
      margin-top: 0.5rem;
    }

    .nav-menu.open {
      display: block;
    }

    .nav-menu ul {
      flex-direction: column;
      gap: 0.5rem;
    }

    .nav-menu a {
      display: block;
      padding: 0.75rem 1rem;
    }

    .btn-accent {
      display: none;
    }

    .burger {
      display: flex;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #333;
  }
  .footer-logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0c040;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .footer-logo a:hover {
    color: #ffd966;
  }
  .footer-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 0;
    padding: 0;
  }
  .footer-nav ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav ul li a:hover {
    color: #f0c040;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
  }
  .footer-contacts {
    flex: 1 1 300px;
  }
  .footer-contacts address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .contact-item {
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .contact-item .icon {
    font-size: 1.1rem;
  }
  .contact-item a {
    color: #e0e0e0;
    text-decoration: none;
  }
  .contact-item a:hover {
    color: #f0c040;
  }
  .footer-legal {
    flex: 1 1 200px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .footer-legal a {
    color: #bbb;
    text-decoration: none;
    font-size: 0.95rem;
  }
  .footer-legal a:hover {
    color: #f0c040;
  }
  .footer-disclaimer {
    flex: 1 1 100%;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #333;
    font-size: 0.85rem;
    color: #aaa;
    text-align: center;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  .footer-copyright {
    flex: 1 1 100%;
    text-align: center;
    font-size: 0.9rem;
    color: #888;
    margin-top: 10px;
  }
  .footer-copyright p {
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 15px;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-bottom {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-contacts address {
      align-items: center;
    }
    .footer-legal {
      align-items: center;
    }
  }

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

    .nfcookie-v12__shell {
        max-width: 720px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
    }

    .nfcookie-v12__meta {display: flex; align-items: center; gap: 8px;}

    .nfcookie-v12__shell p {margin: 8px 0 0; color: var(--fg-on-surface-light);}

    .nfcookie-v12__actions {margin-top: 14px; display: flex; gap: 8px; flex-wrap: wrap;}

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

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

.review-item {

        color: var(--fg-on-primary);
        background: var(--gradient-hero);
        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-primary) 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-primary);
    }

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

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

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

    .identity-nv10__head {
        margin-bottom: 16px;
    }

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

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

    .identity-nv10__head span {
        color: var(--neutral-600);
    }

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

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

    .identity-nv10__grid i {
        display: inline-block;
        font-style: normal;
        color: var(--link);
        margin-bottom: 6px;
    }

    .identity-nv10__grid h3 {
        margin: 0;
        color: var(--neutral-900);
    }

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

    .identity-nv10__grid small {
        color: var(--neutral-800);
        font-weight: 600;
    }

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: var(--space-y) var(--space-x);
    box-sizing: border-box;
  }

  .header-card {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--surface-1);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem 1.5rem;
    gap: var(--gap);
  }

  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
  }

  .nav-menu ul {
    list-style: none;
    display: flex;
    gap: var(--gap);
    margin: 0;
    padding: 0;
  }

  .nav-menu a {
    text-decoration: none;
    color: var(--fg-on-surface);
    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-menu a:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--brand);
  }

  .btn-accent {
    display: inline-block;
    background: var(--accent);
    color: var(--accent-contrast);
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    transition: background var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

  .btn-accent:hover {
    background: var(--bg-accent-hover);
  }

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 0;
  }

  .burger span {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
  }

  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .burger.active span:nth-child(2) {
    opacity: 0;
  }

  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  @media (max-width: 767px) {
    .header-card {
      padding: 0.5rem 1rem;
    }

    .nav-menu {
      position: absolute;
      top: 100%;
      left: var(--space-x);
      right: var(--space-x);
      background: var(--surface-1);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
      padding: 1rem;
      display: none;
      margin-top: 0.5rem;
    }

    .nav-menu.open {
      display: block;
    }

    .nav-menu ul {
      flex-direction: column;
      gap: 0.5rem;
    }

    .nav-menu a {
      display: block;
      padding: 0.75rem 1rem;
    }

    .btn-accent {
      display: none;
    }

    .burger {
      display: flex;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #333;
  }
  .footer-logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0c040;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .footer-logo a:hover {
    color: #ffd966;
  }
  .footer-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 0;
    padding: 0;
  }
  .footer-nav ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav ul li a:hover {
    color: #f0c040;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
  }
  .footer-contacts {
    flex: 1 1 300px;
  }
  .footer-contacts address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .contact-item {
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .contact-item .icon {
    font-size: 1.1rem;
  }
  .contact-item a {
    color: #e0e0e0;
    text-decoration: none;
  }
  .contact-item a:hover {
    color: #f0c040;
  }
  .footer-legal {
    flex: 1 1 200px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .footer-legal a {
    color: #bbb;
    text-decoration: none;
    font-size: 0.95rem;
  }
  .footer-legal a:hover {
    color: #f0c040;
  }
  .footer-disclaimer {
    flex: 1 1 100%;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #333;
    font-size: 0.85rem;
    color: #aaa;
    text-align: center;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  .footer-copyright {
    flex: 1 1 100%;
    text-align: center;
    font-size: 0.9rem;
    color: #888;
    margin-top: 10px;
  }
  .footer-copyright p {
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 15px;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-bottom {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-contacts address {
      align-items: center;
    }
    .footer-legal {
      align-items: center;
    }
  }

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

    .nfcookie-v12__shell {
        max-width: 720px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
    }

    .nfcookie-v12__meta {display: flex; align-items: center; gap: 8px;}

    .nfcookie-v12__shell p {margin: 8px 0 0; color: var(--fg-on-surface-light);}

    .nfcookie-v12__actions {margin-top: 14px; display: flex; gap: 8px; flex-wrap: wrap;}

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

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

.review-item--light-v6 {

    padding: 48px 20px;
    background: var(--bg-page);
    color: var(--fg-on-page);
}

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

.review-item__content {
    margin: 0;
    padding: 18px 20px;
    border-radius: var(--radius-xl);
    background: var(--surface-light);
    border: 1px solid var(--border-on-surface-light);
    box-shadow: var(--shadow-md);
}

.review-item__content blockquote {
    margin: 0 0 10px;
    font-size: 0.95rem;
    color: var(--neutral-800);
    line-height: 1.7;
}

.review-item__content figcaption {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 0.85rem;
}

.review-item__name {
    font-weight: 600;
    color: var(--bg-primary);
}

.review-item__role {
    color: var(--neutral-600);
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: var(--space-y) var(--space-x);
    box-sizing: border-box;
  }

  .header-card {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--surface-1);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem 1.5rem;
    gap: var(--gap);
  }

  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
  }

  .nav-menu ul {
    list-style: none;
    display: flex;
    gap: var(--gap);
    margin: 0;
    padding: 0;
  }

  .nav-menu a {
    text-decoration: none;
    color: var(--fg-on-surface);
    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-menu a:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--brand);
  }

  .btn-accent {
    display: inline-block;
    background: var(--accent);
    color: var(--accent-contrast);
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    transition: background var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

  .btn-accent:hover {
    background: var(--bg-accent-hover);
  }

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 0;
  }

  .burger span {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
  }

  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .burger.active span:nth-child(2) {
    opacity: 0;
  }

  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  @media (max-width: 767px) {
    .header-card {
      padding: 0.5rem 1rem;
    }

    .nav-menu {
      position: absolute;
      top: 100%;
      left: var(--space-x);
      right: var(--space-x);
      background: var(--surface-1);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
      padding: 1rem;
      display: none;
      margin-top: 0.5rem;
    }

    .nav-menu.open {
      display: block;
    }

    .nav-menu ul {
      flex-direction: column;
      gap: 0.5rem;
    }

    .nav-menu a {
      display: block;
      padding: 0.75rem 1rem;
    }

    .btn-accent {
      display: none;
    }

    .burger {
      display: flex;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #333;
  }
  .footer-logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0c040;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .footer-logo a:hover {
    color: #ffd966;
  }
  .footer-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 0;
    padding: 0;
  }
  .footer-nav ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav ul li a:hover {
    color: #f0c040;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
  }
  .footer-contacts {
    flex: 1 1 300px;
  }
  .footer-contacts address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .contact-item {
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .contact-item .icon {
    font-size: 1.1rem;
  }
  .contact-item a {
    color: #e0e0e0;
    text-decoration: none;
  }
  .contact-item a:hover {
    color: #f0c040;
  }
  .footer-legal {
    flex: 1 1 200px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .footer-legal a {
    color: #bbb;
    text-decoration: none;
    font-size: 0.95rem;
  }
  .footer-legal a:hover {
    color: #f0c040;
  }
  .footer-disclaimer {
    flex: 1 1 100%;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #333;
    font-size: 0.85rem;
    color: #aaa;
    text-align: center;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  .footer-copyright {
    flex: 1 1 100%;
    text-align: center;
    font-size: 0.9rem;
    color: #888;
    margin-top: 10px;
  }
  .footer-copyright p {
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 15px;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-bottom {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-contacts address {
      align-items: center;
    }
    .footer-legal {
      align-items: center;
    }
  }

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

    .nfcookie-v12__shell {
        max-width: 720px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
    }

    .nfcookie-v12__meta {display: flex; align-items: center; gap: 8px;}

    .nfcookie-v12__shell p {margin: 8px 0 0; color: var(--fg-on-surface-light);}

    .nfcookie-v12__actions {margin-top: 14px; display: flex; gap: 8px; flex-wrap: wrap;}

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

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

.social-l2 {

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

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

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

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

    .social-l2__sub {
        margin: 10px 0 0;
        max-width: 72ch;
        color: var(--neutral-600);
    }

    .social-l2__wrap {
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-lg);
        overflow: hidden;
    }

    .social-l2__quoteBox {
        padding: 18px;
        border-bottom: 1px solid var(--border-on-surface);
        position: relative;
    }

    .social-l2__quote {
        display: none;
    }

    .social-l2__quote.is-on {
        display: block;
    }

    .social-l2__q {
        font-size: clamp(16px, 2.2vw, 20px);
        line-height: 1.7;
        color: var(--fg-on-page);
        letter-spacing: -.01em;
    }

    .social-l2__m {
        margin-top: 12px;
        color: var(--neutral-600);
        font-weight: 800;
    }

    .social-l2__badges {
        overflow: hidden;
        background: var(--bg-alt);
    }

    .social-l2__badgeTrack {
        display: flex;
        gap: 10px;
        padding: 12px;
        width: max-content;
        animation: socialL2Badges 16s linear infinite;
    }

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

    .social-l2__badge {
        display: inline-flex;
        align-items: center;
        padding: 8px 12px;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border: 1px solid rgba(0, 0, 0, 0.06);
        font-weight: 900;
        white-space: nowrap;
    }

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

.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-light {

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

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

    .why-choose-light .why-choose-light__h {
        text-align: center;
        margin-bottom: clamp(32px, 5vw, 64px);

        transform: translateY(20px);
    }

    .why-choose-light h2 {
        font-size: clamp(32px, 5vw, 48px);
        margin: 0 0 1rem;
        color: var(--fg-on-page);
    }

    .why-choose-light .why-choose-light__subtitle {
        font-size: clamp(16px, 2vw, 20px);
        margin: 0;
        color: var(--neutral-600);
    }

    .why-choose-light .why-choose-light__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: var(--gap);
    }

    .why-choose-light .why-choose-light__item {
        background: var(--surface-1);
        padding: clamp(20px, 3vw, 32px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-sm);
        transition: box-shadow var(--anim-duration) var(--anim-ease);

        transform: translateY(30px);
    }

    .why-choose-light .why-choose-light__item:hover {
        box-shadow: var(--shadow-md);
    }

    .why-choose-light .why-choose-light__icon {
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-radius: var(--radius-md);
        margin-bottom: 1rem;
        font-size: 24px;
    }

    .why-choose-light .why-choose-light__item h3 {
        font-size: clamp(18px, 2.2vw, 22px);
        margin: 0 0 0.75rem;
        color: var(--fg-on-surface);
    }

    .why-choose-light .why-choose-light__item p {
        margin: 0;
        color: var(--neutral-600);
        line-height: var(--line-height-base);
    }

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

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

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

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

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

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

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

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

    .next-pulse-c3__copy {
        margin-top: 1rem;

    }

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

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: var(--space-y) var(--space-x);
    box-sizing: border-box;
  }

  .header-card {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--surface-1);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem 1.5rem;
    gap: var(--gap);
  }

  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
  }

  .nav-menu ul {
    list-style: none;
    display: flex;
    gap: var(--gap);
    margin: 0;
    padding: 0;
  }

  .nav-menu a {
    text-decoration: none;
    color: var(--fg-on-surface);
    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-menu a:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--brand);
  }

  .btn-accent {
    display: inline-block;
    background: var(--accent);
    color: var(--accent-contrast);
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    transition: background var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

  .btn-accent:hover {
    background: var(--bg-accent-hover);
  }

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 0;
  }

  .burger span {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
  }

  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .burger.active span:nth-child(2) {
    opacity: 0;
  }

  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  @media (max-width: 767px) {
    .header-card {
      padding: 0.5rem 1rem;
    }

    .nav-menu {
      position: absolute;
      top: 100%;
      left: var(--space-x);
      right: var(--space-x);
      background: var(--surface-1);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
      padding: 1rem;
      display: none;
      margin-top: 0.5rem;
    }

    .nav-menu.open {
      display: block;
    }

    .nav-menu ul {
      flex-direction: column;
      gap: 0.5rem;
    }

    .nav-menu a {
      display: block;
      padding: 0.75rem 1rem;
    }

    .btn-accent {
      display: none;
    }

    .burger {
      display: flex;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #333;
  }
  .footer-logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0c040;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .footer-logo a:hover {
    color: #ffd966;
  }
  .footer-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 0;
    padding: 0;
  }
  .footer-nav ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav ul li a:hover {
    color: #f0c040;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
  }
  .footer-contacts {
    flex: 1 1 300px;
  }
  .footer-contacts address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .contact-item {
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .contact-item .icon {
    font-size: 1.1rem;
  }
  .contact-item a {
    color: #e0e0e0;
    text-decoration: none;
  }
  .contact-item a:hover {
    color: #f0c040;
  }
  .footer-legal {
    flex: 1 1 200px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .footer-legal a {
    color: #bbb;
    text-decoration: none;
    font-size: 0.95rem;
  }
  .footer-legal a:hover {
    color: #f0c040;
  }
  .footer-disclaimer {
    flex: 1 1 100%;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #333;
    font-size: 0.85rem;
    color: #aaa;
    text-align: center;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  .footer-copyright {
    flex: 1 1 100%;
    text-align: center;
    font-size: 0.9rem;
    color: #888;
    margin-top: 10px;
  }
  .footer-copyright p {
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 15px;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-bottom {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-contacts address {
      align-items: center;
    }
    .footer-legal {
      align-items: center;
    }
  }

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

    .nfcookie-v12__shell {
        max-width: 720px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
    }

    .nfcookie-v12__meta {display: flex; align-items: center; gap: 8px;}

    .nfcookie-v12__shell p {margin: 8px 0 0; color: var(--fg-on-surface-light);}

    .nfcookie-v12__actions {margin-top: 14px; display: flex; gap: 8px; flex-wrap: wrap;}

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

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

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

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

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

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

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

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

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

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

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

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

.contacts-fresh-v4 {
        padding: calc(var(--space-y) * 2.6) var(--space-x);
        background: var(--gradient-hero);
        color: var(--brand-contrast);
    }

    .contacts-fresh-v4 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .contacts-fresh-v4 h2 {
        margin: 0 0 1rem;
        font-size: clamp(1.8rem, 3.4vw, 2.6rem);
    }

    .contacts-fresh-v4 .grid {
        display: grid;
        grid-template-columns:repeat(2, minmax(0, 1fr));
        gap: var(--gap);
    }

    .contacts-fresh-v4 article {
        background: var(--chip-bg);
        border: 1px solid var(--btn-ghost-bg-hover);
        padding: 1rem;
        border-radius: var(--radius-lg);
    }

    .contacts-fresh-v4 .tag {
        margin: 0;
        font-size: .86rem;
        opacity: .9;
    }

    .contacts-fresh-v4 .value {
        margin: .45rem 0 .8rem;
        font-size: 1.1rem;
        font-weight: 700;
    }

    .contacts-fresh-v4 a {
        color: var(--brand-contrast);
        text-decoration: underline;
    }

    @media (max-width: 760px) {
        .contacts-fresh-v4 .grid {
            grid-template-columns:1fr;
        }
    }

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: var(--space-y) var(--space-x);
    box-sizing: border-box;
  }

  .header-card {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--surface-1);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem 1.5rem;
    gap: var(--gap);
  }

  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
  }

  .nav-menu ul {
    list-style: none;
    display: flex;
    gap: var(--gap);
    margin: 0;
    padding: 0;
  }

  .nav-menu a {
    text-decoration: none;
    color: var(--fg-on-surface);
    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-menu a:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--brand);
  }

  .btn-accent {
    display: inline-block;
    background: var(--accent);
    color: var(--accent-contrast);
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    transition: background var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

  .btn-accent:hover {
    background: var(--bg-accent-hover);
  }

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 0;
  }

  .burger span {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
  }

  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .burger.active span:nth-child(2) {
    opacity: 0;
  }

  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  @media (max-width: 767px) {
    .header-card {
      padding: 0.5rem 1rem;
    }

    .nav-menu {
      position: absolute;
      top: 100%;
      left: var(--space-x);
      right: var(--space-x);
      background: var(--surface-1);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
      padding: 1rem;
      display: none;
      margin-top: 0.5rem;
    }

    .nav-menu.open {
      display: block;
    }

    .nav-menu ul {
      flex-direction: column;
      gap: 0.5rem;
    }

    .nav-menu a {
      display: block;
      padding: 0.75rem 1rem;
    }

    .btn-accent {
      display: none;
    }

    .burger {
      display: flex;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #333;
  }
  .footer-logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0c040;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .footer-logo a:hover {
    color: #ffd966;
  }
  .footer-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 0;
    padding: 0;
  }
  .footer-nav ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav ul li a:hover {
    color: #f0c040;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
  }
  .footer-contacts {
    flex: 1 1 300px;
  }
  .footer-contacts address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .contact-item {
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .contact-item .icon {
    font-size: 1.1rem;
  }
  .contact-item a {
    color: #e0e0e0;
    text-decoration: none;
  }
  .contact-item a:hover {
    color: #f0c040;
  }
  .footer-legal {
    flex: 1 1 200px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .footer-legal a {
    color: #bbb;
    text-decoration: none;
    font-size: 0.95rem;
  }
  .footer-legal a:hover {
    color: #f0c040;
  }
  .footer-disclaimer {
    flex: 1 1 100%;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #333;
    font-size: 0.85rem;
    color: #aaa;
    text-align: center;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  .footer-copyright {
    flex: 1 1 100%;
    text-align: center;
    font-size: 0.9rem;
    color: #888;
    margin-top: 10px;
  }
  .footer-copyright p {
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 15px;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-bottom {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-contacts address {
      align-items: center;
    }
    .footer-legal {
      align-items: center;
    }
  }

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

    .nfcookie-v12__shell {
        max-width: 720px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
    }

    .nfcookie-v12__meta {display: flex; align-items: center; gap: 8px;}

    .nfcookie-v12__shell p {margin: 8px 0 0; color: var(--fg-on-surface-light);}

    .nfcookie-v12__actions {margin-top: 14px; display: flex; gap: 8px; flex-wrap: wrap;}

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

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

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

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

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

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

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

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

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

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

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

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: var(--space-y) var(--space-x);
    box-sizing: border-box;
  }

  .header-card {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--surface-1);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem 1.5rem;
    gap: var(--gap);
  }

  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
  }

  .nav-menu ul {
    list-style: none;
    display: flex;
    gap: var(--gap);
    margin: 0;
    padding: 0;
  }

  .nav-menu a {
    text-decoration: none;
    color: var(--fg-on-surface);
    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-menu a:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--brand);
  }

  .btn-accent {
    display: inline-block;
    background: var(--accent);
    color: var(--accent-contrast);
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    transition: background var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

  .btn-accent:hover {
    background: var(--bg-accent-hover);
  }

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 0;
  }

  .burger span {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
  }

  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .burger.active span:nth-child(2) {
    opacity: 0;
  }

  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  @media (max-width: 767px) {
    .header-card {
      padding: 0.5rem 1rem;
    }

    .nav-menu {
      position: absolute;
      top: 100%;
      left: var(--space-x);
      right: var(--space-x);
      background: var(--surface-1);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
      padding: 1rem;
      display: none;
      margin-top: 0.5rem;
    }

    .nav-menu.open {
      display: block;
    }

    .nav-menu ul {
      flex-direction: column;
      gap: 0.5rem;
    }

    .nav-menu a {
      display: block;
      padding: 0.75rem 1rem;
    }

    .btn-accent {
      display: none;
    }

    .burger {
      display: flex;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #333;
  }
  .footer-logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0c040;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .footer-logo a:hover {
    color: #ffd966;
  }
  .footer-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 0;
    padding: 0;
  }
  .footer-nav ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav ul li a:hover {
    color: #f0c040;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
  }
  .footer-contacts {
    flex: 1 1 300px;
  }
  .footer-contacts address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .contact-item {
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .contact-item .icon {
    font-size: 1.1rem;
  }
  .contact-item a {
    color: #e0e0e0;
    text-decoration: none;
  }
  .contact-item a:hover {
    color: #f0c040;
  }
  .footer-legal {
    flex: 1 1 200px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .footer-legal a {
    color: #bbb;
    text-decoration: none;
    font-size: 0.95rem;
  }
  .footer-legal a:hover {
    color: #f0c040;
  }
  .footer-disclaimer {
    flex: 1 1 100%;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #333;
    font-size: 0.85rem;
    color: #aaa;
    text-align: center;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  .footer-copyright {
    flex: 1 1 100%;
    text-align: center;
    font-size: 0.9rem;
    color: #888;
    margin-top: 10px;
  }
  .footer-copyright p {
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 15px;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-bottom {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-contacts address {
      align-items: center;
    }
    .footer-legal {
      align-items: center;
    }
  }

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

    .nfcookie-v12__shell {
        max-width: 720px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
    }

    .nfcookie-v12__meta {display: flex; align-items: center; gap: 8px;}

    .nfcookie-v12__shell p {margin: 8px 0 0; color: var(--fg-on-surface-light);}

    .nfcookie-v12__actions {margin-top: 14px; display: flex; gap: 8px; flex-wrap: wrap;}

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

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

.nfthank-v9 {
        padding: clamp(56px, 10vw, 114px) 18px;
        background: var(--accent);
        color: var(--accent-contrast);
    }

    .nfthank-v9__panel {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        border: 1px solid rgba(255, 255, 255, .24);
        border-radius: var(--radius-lg);
        padding: clamp(30px, 4vw, 44px);
        background: rgba(255, 255, 255, .06);
    }

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

    .nfthank-v9 p {
        margin: 12px 0 0;
        opacity: .92;
    }

    .nfthank-v9 a {
        display: inline-block;
        margin-top: 17px;
        color: var(--accent-contrast);
        text-decoration: none;
        border-bottom: 2px solid var(--accent-contrast);
        padding-bottom: 2px;
    }

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: var(--space-y) var(--space-x);
    box-sizing: border-box;
  }

  .header-card {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--surface-1);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem 1.5rem;
    gap: var(--gap);
  }

  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
  }

  .nav-menu ul {
    list-style: none;
    display: flex;
    gap: var(--gap);
    margin: 0;
    padding: 0;
  }

  .nav-menu a {
    text-decoration: none;
    color: var(--fg-on-surface);
    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-menu a:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--brand);
  }

  .btn-accent {
    display: inline-block;
    background: var(--accent);
    color: var(--accent-contrast);
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    transition: background var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

  .btn-accent:hover {
    background: var(--bg-accent-hover);
  }

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 0;
  }

  .burger span {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
  }

  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .burger.active span:nth-child(2) {
    opacity: 0;
  }

  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  @media (max-width: 767px) {
    .header-card {
      padding: 0.5rem 1rem;
    }

    .nav-menu {
      position: absolute;
      top: 100%;
      left: var(--space-x);
      right: var(--space-x);
      background: var(--surface-1);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
      padding: 1rem;
      display: none;
      margin-top: 0.5rem;
    }

    .nav-menu.open {
      display: block;
    }

    .nav-menu ul {
      flex-direction: column;
      gap: 0.5rem;
    }

    .nav-menu a {
      display: block;
      padding: 0.75rem 1rem;
    }

    .btn-accent {
      display: none;
    }

    .burger {
      display: flex;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #333;
  }
  .footer-logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0c040;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .footer-logo a:hover {
    color: #ffd966;
  }
  .footer-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 0;
    padding: 0;
  }
  .footer-nav ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav ul li a:hover {
    color: #f0c040;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
  }
  .footer-contacts {
    flex: 1 1 300px;
  }
  .footer-contacts address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .contact-item {
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .contact-item .icon {
    font-size: 1.1rem;
  }
  .contact-item a {
    color: #e0e0e0;
    text-decoration: none;
  }
  .contact-item a:hover {
    color: #f0c040;
  }
  .footer-legal {
    flex: 1 1 200px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .footer-legal a {
    color: #bbb;
    text-decoration: none;
    font-size: 0.95rem;
  }
  .footer-legal a:hover {
    color: #f0c040;
  }
  .footer-disclaimer {
    flex: 1 1 100%;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #333;
    font-size: 0.85rem;
    color: #aaa;
    text-align: center;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  .footer-copyright {
    flex: 1 1 100%;
    text-align: center;
    font-size: 0.9rem;
    color: #888;
    margin-top: 10px;
  }
  .footer-copyright p {
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 15px;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-bottom {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-contacts address {
      align-items: center;
    }
    .footer-legal {
      align-items: center;
    }
  }

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

    .nfcookie-v12__shell {
        max-width: 720px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
    }

    .nfcookie-v12__meta {display: flex; align-items: center; gap: 8px;}

    .nfcookie-v12__shell p {margin: 8px 0 0; color: var(--fg-on-surface-light);}

    .nfcookie-v12__actions {margin-top: 14px; display: flex; gap: 8px; flex-wrap: wrap;}

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

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

.nf404-v7 {
        padding: clamp(56px, 10vw, 112px) 20px;
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

    .nf404-v7__box {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
    }

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

    .nf404-v7 p {
        margin: 12px 0 0;
        opacity: .92;
    }

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