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

  --max-w: 840px;
  --space-x: 1.37rem;
  --space-y: 1.46rem;
  --gap: 1.06rem;

  --radius-xl: 0.69rem;
  --radius-lg: 0.54rem;
  --radius-md: 0.39rem;
  --radius-sm: 0.23rem;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 14px rgba(0,0,0,0.05);
  --shadow-lg: 0 8px 20px rgba(0,0,0,0.06);

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

  --brand: #1e3a8a;
  --brand-contrast: #ffffff;
  --accent: #2563eb;
  --accent-contrast: #ffffff;

  --neutral-0: #ffffff;
  --neutral-100: #f8fafc;
  --neutral-300: #cbd5e1;
  --neutral-600: #475569;
  --neutral-800: #1e293b;
  --neutral-900: #0f172a;

  --bg-page: #ffffff;
  --fg-on-page: #0f172a;

  --bg-alt: #f8fafc;
  --fg-on-alt: #1e293b;

  --surface-1: #ffffff;
  --surface-2: #f1f5f9;
  --fg-on-surface: #0f172a;
  --border-on-surface: #e2e8f0;

  --surface-light: #ffffff;
  --fg-on-surface-light: #334155;
  --border-on-surface-light: #e2e8f0;

  --bg-primary: #2563eb;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #1d4ed8;
  --ring: #3b82f6;

  --bg-accent: #dbeafe;
  --fg-on-accent: #1e40af;
  --bg-accent-hover: #3b82f6;

  --link: #2563eb;
  --link-hover: #1d4ed8;

  --gradient-hero: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
  --gradient-accent: linear-gradient(90deg, #dbeafe 0%, #eff6ff 100%);

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

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

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

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    z-index: 1002;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--accent);
}

.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
}
.burger-line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.main-nav {
    display: flex;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover,
.nav-link:focus {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}
.nav-link[href="contact.html"] {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
}
.nav-link[href="contact.html"]:hover {
    background-color: var(--bg-accent-hover);
}

.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay);
    z-index: 999;
    opacity: 0;
    transition: opacity var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 280px;
        max-width: 90%;
        background-color: var(--surface-2);
        padding: 5rem var(--space-x) var(--space-y);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        z-index: 1001;
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
    }
    .main-nav.active {
        transform: translateX(0);
    }
    .nav-list {
        flex-direction: column;
        gap: 0.5rem;
    }
    .nav-link {
        display: block;
        padding: 1rem;
        border-radius: var(--radius-md);
    }
    .nav-overlay.active {
        display: block;
        opacity: 1;
    }
}

.footer {
    background-color: #f8f9fa;
    color: #333;
    padding: 2.5rem 1.5rem 1.5rem;
    font-family: sans-serif;
    border-top: 1px solid #dee2e6;
  }
  .footer__top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e9ecef;
  }
  .footer__logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #2c3e50;
  }
  .footer__menu {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1.8rem;
  }
  .footer__menu a {
    color: #495057;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
  }
  .footer__menu a:hover {
    color: #007bff;
    text-decoration: underline;
  }
  .footer__middle {
    margin-bottom: 2rem;
  }
  .footer__contacts ul {
    list-style: none;
    padding: 0;
    margin: 0;
    line-height: 1.8;
  }
  .footer__contacts strong {
    color: #2c3e50;
  }
  .footer__contacts a {
    color: #007bff;
    text-decoration: none;
  }
  .footer__contacts a:hover {
    text-decoration: underline;
  }
  .footer__bottom {
    text-align: center;
    font-size: 0.9rem;
    color: #6c757d;
    border-top: 1px solid #e9ecef;
    padding-top: 1.5rem;
  }
  .footer__legal {
    margin: 0.7rem 0;
  }
  .footer__legal a {
    color: #6c757d;
    text-decoration: none;
    margin: 0 0.3rem;
  }
  .footer__legal a:hover {
    text-decoration: underline;
    color: #495057;
  }
  .footer__disclaimer {
    margin-top: 1rem;
    font-size: 0.85rem;
    line-height: 1.4;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  @media (max-width: 768px) {
    .footer__top {
      flex-direction: column;
      align-items: flex-start;
      gap: 1.5rem;
    }
    .footer__menu {
      flex-direction: column;
      gap: 1rem;
    }
    .footer__contacts ul {
      text-align: center;
    }
  }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: end;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

    .cookie-cv9__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

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

.hero-arc-v3 {
        padding: calc(var(--space-y) * 2.8) var(--space-x);
        background: var(--bg-alt);
        color: var(--fg-on-alt);
    }

    .hero-arc-v3 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns:minmax(0, .82fr) minmax(0, 1.18fr);
        gap: calc(var(--gap) * 2);
        align-items: stretch;
    }

    .hero-arc-v3 .media {
        padding: var(--gap);
        background: var(--surface-1);
        border-radius: var(--radius-xl);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
    }

    .hero-arc-v3 img {
        width: 100%;
        height: 100%;
        min-height: 320px;
        object-fit: cover;
        border-radius: var(--radius-lg);
    }

    .hero-arc-v3 .copy {
        display: grid;
        gap: var(--gap);
        align-content: start;
    }

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

    .hero-arc-v3 .subtitle {
        margin: 0;
        color: var(--fg-on-surface-light);
    }

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

    .hero-arc-v3 .stats article {
        padding: 1rem;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
    }

    .hero-arc-v3 .stats p {
        margin: .3rem 0 0;
        color: var(--fg-on-surface-light);
        font-size: .92rem;
    }

    .hero-arc-v3 .actions {
        display: flex;
        flex-wrap: wrap;
        gap: var(--gap);
    }

    .hero-arc-v3 .actions a {
        text-decoration: none;
        padding: .7rem 1rem;
        border-radius: var(--radius-md);
        border: 1px solid var(--border-on-surface);
        color: var(--fg-on-surface);
        background: var(--surface-1);
    }

    .hero-arc-v3 .actions a:first-child {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-color: var(--bg-primary);
    }

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

        .hero-arc-v3 .stats {
            grid-template-columns:1fr;
        }
    }

.social-c2 {

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

    .social-c2::before {
        content: '';
        position: absolute;
        inset: -30%;
        background: radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.14), transparent 55%),
        radial-gradient(circle at 80% 55%, rgba(255, 107, 53, 0.18), transparent 55%);
        filter: blur(18px);
        animation: socialC2Bg 7s var(--anim-ease) infinite;
        pointer-events: none;
    }

    @keyframes socialC2Bg {
        0%, 100% {
            transform: translate3d(-1%, 0, 0) scale(1)
        }
        50% {
            transform: translate3d(1.5%, -1%, 0) scale(1.04)
        }
    }

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

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

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

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

    .social-c2__grid {
        display: grid;
        grid-template-columns: 1.2fr 0.8fr;
        gap: 14px;
        align-items: stretch;
    }

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

    .social-c2__quote {
        display: none;
        padding: 18px 18px 16px;
    }

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

    .social-c2__qText {
        font-size: clamp(16px, 2.2vw, 20px);
        line-height: 1.7;
        color: rgba(255, 255, 255, .92);
    }

    .social-c2__qMeta {
        margin-top: 14px;
        display: flex;
        gap: 10px;
        align-items: baseline;
        flex-wrap: wrap;

    }

    .social-c2__qName {
        font-weight: 900;
    }

    .social-c2__qRole {
        opacity: .85;
    }

    .social-c2__metrics {
        display: grid;
        gap: 12px;
    }

    .social-c2__metric {
        border-radius: var(--radius-xl);
        background: rgba(0, 0, 0, 0.14);
        border: 1px solid rgba(255, 255, 255, 0.14);
        box-shadow: var(--shadow-md);
        padding: 16px;
    }

    .social-c2__mVal {
        font-weight: 900;
        font-size: clamp(22px, 3vw, 32px);
        letter-spacing: -.01em;
    }

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

    @media (max-width: 980px) {
        .social-c2__grid {
            grid-template-columns:1fr;
        }
    }

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

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

    .faq-layout-b .wrap {
        max-width: 940px;
        margin: 0 auto;
    }

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

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

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

    .faq-layout-b .grid {
        display: grid;
        gap: var(--gap);
    }

    .faq-layout-b details {
        border: 1px solid var(--border-on-surface-light);
        background: var(--surface-1);
        border-radius: var(--radius-md);
        padding: 10px 12px;
    }

    .faq-layout-b summary {
        cursor: pointer;
        font-weight: 600;
        color: var(--brand);
    }

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

.why-choose {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: clamp(40px, 6vw, 80px) clamp(16px, 3vw, 40px);
    }

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

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

        transform: translateY(20px);
    }

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

    .why-choose .why-choose__subtitle {
        font-size: clamp(16px, 2vw, 20px);
        margin: 0;
        opacity: 0.9;
    }

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

    .why-choose .why-choose__item {
        background: var(--fg-on-primary);
        padding: clamp(20px, 3vw, 32px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface-light);
        transition: transform var(--anim-duration) var(--anim-ease);

        transform: translateY(30px);
    }

    .why-choose .why-choose__item:hover {
        transform: translateY(-4px);
    }

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

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

    .why-choose .why-choose__item p {
        margin: 0;
        color: var(--fg-on-surface-light);
        opacity: 0.85;
        line-height: var(--line-height-base);
    }

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

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

    .next-pins-l4__head {
        margin-bottom: 1.1rem;
    }

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

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

    .next-pins-l4__head span {
        display: block;
        margin-top: .8rem;
        color: var(--neutral-600);
        max-width: 38rem;
    }

    .next-pins-l4__pins {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
        gap: var(--gap);
    }

    .next-pins-l4__pins article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
    }

    .next-pins-l4__pins div {
        display: inline-flex;
        width: 2.4rem;
        height: 2.4rem;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: var(--surface-2);
    }

    .next-pins-l4__pins h3 {
        margin: .75rem 0 .35rem;
    }

    .next-pins-l4__pins a {
        color: var(--link);
        text-decoration: none;
    }

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

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

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

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    z-index: 1002;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--accent);
}

.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
}
.burger-line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.main-nav {
    display: flex;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover,
.nav-link:focus {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}
.nav-link[href="contact.html"] {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
}
.nav-link[href="contact.html"]:hover {
    background-color: var(--bg-accent-hover);
}

.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay);
    z-index: 999;
    opacity: 0;
    transition: opacity var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 280px;
        max-width: 90%;
        background-color: var(--surface-2);
        padding: 5rem var(--space-x) var(--space-y);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        z-index: 1001;
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
    }
    .main-nav.active {
        transform: translateX(0);
    }
    .nav-list {
        flex-direction: column;
        gap: 0.5rem;
    }
    .nav-link {
        display: block;
        padding: 1rem;
        border-radius: var(--radius-md);
    }
    .nav-overlay.active {
        display: block;
        opacity: 1;
    }
}

.footer {
    background-color: #f8f9fa;
    color: #333;
    padding: 2.5rem 1.5rem 1.5rem;
    font-family: sans-serif;
    border-top: 1px solid #dee2e6;
  }
  .footer__top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e9ecef;
  }
  .footer__logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #2c3e50;
  }
  .footer__menu {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1.8rem;
  }
  .footer__menu a {
    color: #495057;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
  }
  .footer__menu a:hover {
    color: #007bff;
    text-decoration: underline;
  }
  .footer__middle {
    margin-bottom: 2rem;
  }
  .footer__contacts ul {
    list-style: none;
    padding: 0;
    margin: 0;
    line-height: 1.8;
  }
  .footer__contacts strong {
    color: #2c3e50;
  }
  .footer__contacts a {
    color: #007bff;
    text-decoration: none;
  }
  .footer__contacts a:hover {
    text-decoration: underline;
  }
  .footer__bottom {
    text-align: center;
    font-size: 0.9rem;
    color: #6c757d;
    border-top: 1px solid #e9ecef;
    padding-top: 1.5rem;
  }
  .footer__legal {
    margin: 0.7rem 0;
  }
  .footer__legal a {
    color: #6c757d;
    text-decoration: none;
    margin: 0 0.3rem;
  }
  .footer__legal a:hover {
    text-decoration: underline;
    color: #495057;
  }
  .footer__disclaimer {
    margin-top: 1rem;
    font-size: 0.85rem;
    line-height: 1.4;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  @media (max-width: 768px) {
    .footer__top {
      flex-direction: column;
      align-items: flex-start;
      gap: 1.5rem;
    }
    .footer__menu {
      flex-direction: column;
      gap: 1rem;
    }
    .footer__contacts ul {
      text-align: center;
    }
  }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: end;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

    .cookie-cv9__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

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

.review-list {

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

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

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

    .review-list p {

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

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

    }

.add-review--light-v6 {
    padding: 48px 20px;
    background: var(--bg-page);
    color: var(--fg-on-page);
}

.add-review__inner {
    max-width: 480px;
    margin: 0 auto;
    text-align: center;
}

.add-review__title {
    margin: 0 0 6px;
    font-size: clamp(22px,3.5vw,28px);
}

.add-review__text {
    margin: 0 0 16px;
    color: var(--neutral-600);
}

.add-review__button {
    border-radius: 999px;
    border: 1px solid var(--border-on-surface-light);
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: 10px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.add-review__button:hover {
    background-color: var(--bg-primary-hover);
}

.social-c2 {

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

    .social-c2::before {
        content: '';
        position: absolute;
        inset: -30%;
        background: radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.14), transparent 55%),
        radial-gradient(circle at 80% 55%, rgba(255, 107, 53, 0.18), transparent 55%);
        filter: blur(18px);
        animation: socialC2Bg 7s var(--anim-ease) infinite;
        pointer-events: none;
    }

    @keyframes socialC2Bg {
        0%, 100% {
            transform: translate3d(-1%, 0, 0) scale(1)
        }
        50% {
            transform: translate3d(1.5%, -1%, 0) scale(1.04)
        }
    }

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

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

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

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

    .social-c2__grid {
        display: grid;
        grid-template-columns: 1.2fr 0.8fr;
        gap: 14px;
        align-items: stretch;
    }

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

    .social-c2__quote {
        display: none;
        padding: 18px 18px 16px;
    }

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

    .social-c2__qText {
        font-size: clamp(16px, 2.2vw, 20px);
        line-height: 1.7;
        color: rgba(255, 255, 255, .92);
    }

    .social-c2__qMeta {
        margin-top: 14px;
        display: flex;
        gap: 10px;
        align-items: baseline;
        flex-wrap: wrap;

    }

    .social-c2__qName {
        font-weight: 900;
    }

    .social-c2__qRole {
        opacity: .85;
    }

    .social-c2__metrics {
        display: grid;
        gap: 12px;
    }

    .social-c2__metric {
        border-radius: var(--radius-xl);
        background: rgba(0, 0, 0, 0.14);
        border: 1px solid rgba(255, 255, 255, 0.14);
        box-shadow: var(--shadow-md);
        padding: 16px;
    }

    .social-c2__mVal {
        font-weight: 900;
        font-size: clamp(22px, 3vw, 32px);
        letter-spacing: -.01em;
    }

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

    @media (max-width: 980px) {
        .social-c2__grid {
            grid-template-columns:1fr;
        }
    }

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

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

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

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    z-index: 1002;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--accent);
}

.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
}
.burger-line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.main-nav {
    display: flex;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover,
.nav-link:focus {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}
.nav-link[href="contact.html"] {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
}
.nav-link[href="contact.html"]:hover {
    background-color: var(--bg-accent-hover);
}

.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay);
    z-index: 999;
    opacity: 0;
    transition: opacity var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 280px;
        max-width: 90%;
        background-color: var(--surface-2);
        padding: 5rem var(--space-x) var(--space-y);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        z-index: 1001;
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
    }
    .main-nav.active {
        transform: translateX(0);
    }
    .nav-list {
        flex-direction: column;
        gap: 0.5rem;
    }
    .nav-link {
        display: block;
        padding: 1rem;
        border-radius: var(--radius-md);
    }
    .nav-overlay.active {
        display: block;
        opacity: 1;
    }
}

.footer {
    background-color: #f8f9fa;
    color: #333;
    padding: 2.5rem 1.5rem 1.5rem;
    font-family: sans-serif;
    border-top: 1px solid #dee2e6;
  }
  .footer__top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e9ecef;
  }
  .footer__logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #2c3e50;
  }
  .footer__menu {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1.8rem;
  }
  .footer__menu a {
    color: #495057;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
  }
  .footer__menu a:hover {
    color: #007bff;
    text-decoration: underline;
  }
  .footer__middle {
    margin-bottom: 2rem;
  }
  .footer__contacts ul {
    list-style: none;
    padding: 0;
    margin: 0;
    line-height: 1.8;
  }
  .footer__contacts strong {
    color: #2c3e50;
  }
  .footer__contacts a {
    color: #007bff;
    text-decoration: none;
  }
  .footer__contacts a:hover {
    text-decoration: underline;
  }
  .footer__bottom {
    text-align: center;
    font-size: 0.9rem;
    color: #6c757d;
    border-top: 1px solid #e9ecef;
    padding-top: 1.5rem;
  }
  .footer__legal {
    margin: 0.7rem 0;
  }
  .footer__legal a {
    color: #6c757d;
    text-decoration: none;
    margin: 0 0.3rem;
  }
  .footer__legal a:hover {
    text-decoration: underline;
    color: #495057;
  }
  .footer__disclaimer {
    margin-top: 1rem;
    font-size: 0.85rem;
    line-height: 1.4;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  @media (max-width: 768px) {
    .footer__top {
      flex-direction: column;
      align-items: flex-start;
      gap: 1.5rem;
    }
    .footer__menu {
      flex-direction: column;
      gap: 1rem;
    }
    .footer__contacts ul {
      text-align: center;
    }
  }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: end;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

    .cookie-cv9__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

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

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

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

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

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

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

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

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

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

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

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

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

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    z-index: 1002;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--accent);
}

.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
}
.burger-line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.main-nav {
    display: flex;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover,
.nav-link:focus {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}
.nav-link[href="contact.html"] {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
}
.nav-link[href="contact.html"]:hover {
    background-color: var(--bg-accent-hover);
}

.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay);
    z-index: 999;
    opacity: 0;
    transition: opacity var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 280px;
        max-width: 90%;
        background-color: var(--surface-2);
        padding: 5rem var(--space-x) var(--space-y);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        z-index: 1001;
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
    }
    .main-nav.active {
        transform: translateX(0);
    }
    .nav-list {
        flex-direction: column;
        gap: 0.5rem;
    }
    .nav-link {
        display: block;
        padding: 1rem;
        border-radius: var(--radius-md);
    }
    .nav-overlay.active {
        display: block;
        opacity: 1;
    }
}

.footer {
    background-color: #f8f9fa;
    color: #333;
    padding: 2.5rem 1.5rem 1.5rem;
    font-family: sans-serif;
    border-top: 1px solid #dee2e6;
  }
  .footer__top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e9ecef;
  }
  .footer__logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #2c3e50;
  }
  .footer__menu {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1.8rem;
  }
  .footer__menu a {
    color: #495057;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
  }
  .footer__menu a:hover {
    color: #007bff;
    text-decoration: underline;
  }
  .footer__middle {
    margin-bottom: 2rem;
  }
  .footer__contacts ul {
    list-style: none;
    padding: 0;
    margin: 0;
    line-height: 1.8;
  }
  .footer__contacts strong {
    color: #2c3e50;
  }
  .footer__contacts a {
    color: #007bff;
    text-decoration: none;
  }
  .footer__contacts a:hover {
    text-decoration: underline;
  }
  .footer__bottom {
    text-align: center;
    font-size: 0.9rem;
    color: #6c757d;
    border-top: 1px solid #e9ecef;
    padding-top: 1.5rem;
  }
  .footer__legal {
    margin: 0.7rem 0;
  }
  .footer__legal a {
    color: #6c757d;
    text-decoration: none;
    margin: 0 0.3rem;
  }
  .footer__legal a:hover {
    text-decoration: underline;
    color: #495057;
  }
  .footer__disclaimer {
    margin-top: 1rem;
    font-size: 0.85rem;
    line-height: 1.4;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  @media (max-width: 768px) {
    .footer__top {
      flex-direction: column;
      align-items: flex-start;
      gap: 1.5rem;
    }
    .footer__menu {
      flex-direction: column;
      gap: 1rem;
    }
    .footer__contacts ul {
      text-align: center;
    }
  }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: end;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

    .cookie-cv9__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

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

.review-item {

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

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

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

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

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

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

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

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

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

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

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

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

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    z-index: 1002;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--accent);
}

.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
}
.burger-line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.main-nav {
    display: flex;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover,
.nav-link:focus {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}
.nav-link[href="contact.html"] {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
}
.nav-link[href="contact.html"]:hover {
    background-color: var(--bg-accent-hover);
}

.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay);
    z-index: 999;
    opacity: 0;
    transition: opacity var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 280px;
        max-width: 90%;
        background-color: var(--surface-2);
        padding: 5rem var(--space-x) var(--space-y);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        z-index: 1001;
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
    }
    .main-nav.active {
        transform: translateX(0);
    }
    .nav-list {
        flex-direction: column;
        gap: 0.5rem;
    }
    .nav-link {
        display: block;
        padding: 1rem;
        border-radius: var(--radius-md);
    }
    .nav-overlay.active {
        display: block;
        opacity: 1;
    }
}

.footer {
    background-color: #f8f9fa;
    color: #333;
    padding: 2.5rem 1.5rem 1.5rem;
    font-family: sans-serif;
    border-top: 1px solid #dee2e6;
  }
  .footer__top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e9ecef;
  }
  .footer__logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #2c3e50;
  }
  .footer__menu {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1.8rem;
  }
  .footer__menu a {
    color: #495057;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
  }
  .footer__menu a:hover {
    color: #007bff;
    text-decoration: underline;
  }
  .footer__middle {
    margin-bottom: 2rem;
  }
  .footer__contacts ul {
    list-style: none;
    padding: 0;
    margin: 0;
    line-height: 1.8;
  }
  .footer__contacts strong {
    color: #2c3e50;
  }
  .footer__contacts a {
    color: #007bff;
    text-decoration: none;
  }
  .footer__contacts a:hover {
    text-decoration: underline;
  }
  .footer__bottom {
    text-align: center;
    font-size: 0.9rem;
    color: #6c757d;
    border-top: 1px solid #e9ecef;
    padding-top: 1.5rem;
  }
  .footer__legal {
    margin: 0.7rem 0;
  }
  .footer__legal a {
    color: #6c757d;
    text-decoration: none;
    margin: 0 0.3rem;
  }
  .footer__legal a:hover {
    text-decoration: underline;
    color: #495057;
  }
  .footer__disclaimer {
    margin-top: 1rem;
    font-size: 0.85rem;
    line-height: 1.4;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  @media (max-width: 768px) {
    .footer__top {
      flex-direction: column;
      align-items: flex-start;
      gap: 1.5rem;
    }
    .footer__menu {
      flex-direction: column;
      gap: 1rem;
    }
    .footer__contacts ul {
      text-align: center;
    }
  }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: end;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

    .cookie-cv9__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

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

.social-c2 {

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

    .social-c2::before {
        content: '';
        position: absolute;
        inset: -30%;
        background: radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.14), transparent 55%),
        radial-gradient(circle at 80% 55%, rgba(255, 107, 53, 0.18), transparent 55%);
        filter: blur(18px);
        animation: socialC2Bg 7s var(--anim-ease) infinite;
        pointer-events: none;
    }

    @keyframes socialC2Bg {
        0%, 100% {
            transform: translate3d(-1%, 0, 0) scale(1)
        }
        50% {
            transform: translate3d(1.5%, -1%, 0) scale(1.04)
        }
    }

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

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

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

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

    .social-c2__grid {
        display: grid;
        grid-template-columns: 1.2fr 0.8fr;
        gap: 14px;
        align-items: stretch;
    }

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

    .social-c2__quote {
        display: none;
        padding: 18px 18px 16px;
    }

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

    .social-c2__qText {
        font-size: clamp(16px, 2.2vw, 20px);
        line-height: 1.7;
        color: rgba(255, 255, 255, .92);
    }

    .social-c2__qMeta {
        margin-top: 14px;
        display: flex;
        gap: 10px;
        align-items: baseline;
        flex-wrap: wrap;

    }

    .social-c2__qName {
        font-weight: 900;
    }

    .social-c2__qRole {
        opacity: .85;
    }

    .social-c2__metrics {
        display: grid;
        gap: 12px;
    }

    .social-c2__metric {
        border-radius: var(--radius-xl);
        background: rgba(0, 0, 0, 0.14);
        border: 1px solid rgba(255, 255, 255, 0.14);
        box-shadow: var(--shadow-md);
        padding: 16px;
    }

    .social-c2__mVal {
        font-weight: 900;
        font-size: clamp(22px, 3vw, 32px);
        letter-spacing: -.01em;
    }

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

    @media (max-width: 980px) {
        .social-c2__grid {
            grid-template-columns:1fr;
        }
    }

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

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

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

    .index-feedback-summary__h {
        text-align: center;
        margin-bottom: clamp(22px, 5vw, 44px);
        transform: translateY(-18px);
    }

    .index-feedback-summary__h h2 {
        margin: 0 0 10px;
        font-size: clamp(26px, 4.4vw, 44px);
        letter-spacing: -0.02em;
    }

    .index-feedback-summary__h p {
        margin: 0;
        color: var(--neutral-600);
    }

    .index-feedback-summary__layout {
        display: grid;
        grid-template-columns: minmax(260px, 340px) 1fr;
        gap: clamp(16px, 3vw, 28px);
        align-items: start;
    }

    .index-feedback-summary__panel {
        border-radius: var(--radius-xl);
        background: var(--bg-accent);
        border: 1px solid var(--border-on-surface);
        padding: clamp(18px, 3vw, 26px);
        box-shadow: var(--shadow-md);

        transform: translateY(22px);
        position: sticky;
        top: 16px;
    }

    .index-feedback-summary__kpi {
        display: flex;
        align-items: center;
        gap: 14px;
        margin-bottom: 14px;
    }

    .index-feedback-summary__avg {
        width: 72px;
        height: 72px;
        border-radius: 22px;
        background: var(--bg-page);
        border: 1px solid var(--border-on-surface);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 900;
        font-size: 22px;
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

    .index-feedback-summary__stars {
        color: var(--accent);
        letter-spacing: 0.08em;
        font-size: 14px;
        line-height: 1;
        margin-bottom: 6px;
    }

    .index-feedback-summary__count {
        font-size: 12px;
        color: var(--neutral-600);
        text-transform: uppercase;
        letter-spacing: 0.18em;
    }

    .index-feedback-summary__note {
        color: var(--fg-on-accent);
        font-size: 14px;
    }

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

    .index-feedback-summary__card {
        border-radius: var(--radius-xl);
        background: var(--surface-light);
        border: 1px solid var(--border-on-surface-light);
        box-shadow: var(--shadow-sm);
        padding: 18px 18px 16px;

        transform: translateY(22px);
    }

    .index-feedback-summary__head {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 12px;
        margin-bottom: 12px;
    }

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

    .index-feedback-summary__avatar {
        width: 38px;
        height: 38px;
        border-radius: 14px;
        background: var(--bg-page);
        border: 1px solid var(--border-on-surface);
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
    }

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

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

    .index-feedback-summary__chip {
        flex: 0 0 auto;
        padding: 6px 10px;
        border-radius: 999px;
        background: var(--bg-primary);
        border: 1px solid var(--ring);
        color: var(--fg-on-primary);
        font-size: 10px;
        text-transform: uppercase;
        letter-spacing: 0.16em;
        white-space: nowrap;
    }

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

    @media (max-width: 860px) {
        .index-feedback-summary__layout {
            grid-template-columns: 1fr;
        }

        .index-feedback-summary__panel {
            position: relative;
            top: 0;
        }
    }

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

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

    .connect .connect__title {
        font-size: clamp(28px, 5vw, 48px);
        text-align: center;
        margin: 0 0 clamp(48px, 7vw, 72px);
        color: var(--brand-contrast);
    }

    .connect .connect__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: clamp(24px, 4vw, 32px);
    }

    .connect .connect__item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: var(--gap);
        padding: var(--space-x);
        background: var(--surface-1);
        border-radius: var(--radius-xl);
        border: 1px solid var(--border-on-surface);
        text-decoration: none;
        color: var(--fg-on-surface);
        transition: transform var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease), background-color var(--anim-duration) var(--anim-ease);
    }

    .connect .connect__item {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
        animation: section-pulse-border 3s var(--anim-ease) infinite;
    }

    @keyframes section-pulse-border {
        0%, 100% {
            border-color: var(--border-on-surface);
            box-shadow: none;
        }
        50% {
            border-color: var(--brand);
            box-shadow: 0 0 0 3px var(--accent);
        }
    }

    .connect .connect__item:hover {
        transform: translateY(-6px);
        border-color: var(--bg-accent);
        background-color: var(--bg-alt);
    }

    .connect .connect__item span {
        font-size: clamp(17px, 2.8vw, 20px);
        font-weight: 600;
    }

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

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

    .next-pins-l4__head {
        margin-bottom: 1.1rem;
    }

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

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

    .next-pins-l4__head span {
        display: block;
        margin-top: .8rem;
        color: var(--neutral-600);
        max-width: 38rem;
    }

    .next-pins-l4__pins {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
        gap: var(--gap);
    }

    .next-pins-l4__pins article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
    }

    .next-pins-l4__pins div {
        display: inline-flex;
        width: 2.4rem;
        height: 2.4rem;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: var(--surface-2);
    }

    .next-pins-l4__pins h3 {
        margin: .75rem 0 .35rem;
    }

    .next-pins-l4__pins a {
        color: var(--link);
        text-decoration: none;
    }

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

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

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

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    z-index: 1002;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--accent);
}

.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
}
.burger-line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.main-nav {
    display: flex;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover,
.nav-link:focus {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}
.nav-link[href="contact.html"] {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
}
.nav-link[href="contact.html"]:hover {
    background-color: var(--bg-accent-hover);
}

.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay);
    z-index: 999;
    opacity: 0;
    transition: opacity var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 280px;
        max-width: 90%;
        background-color: var(--surface-2);
        padding: 5rem var(--space-x) var(--space-y);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        z-index: 1001;
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
    }
    .main-nav.active {
        transform: translateX(0);
    }
    .nav-list {
        flex-direction: column;
        gap: 0.5rem;
    }
    .nav-link {
        display: block;
        padding: 1rem;
        border-radius: var(--radius-md);
    }
    .nav-overlay.active {
        display: block;
        opacity: 1;
    }
}

.footer {
    background-color: #f8f9fa;
    color: #333;
    padding: 2.5rem 1.5rem 1.5rem;
    font-family: sans-serif;
    border-top: 1px solid #dee2e6;
  }
  .footer__top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e9ecef;
  }
  .footer__logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #2c3e50;
  }
  .footer__menu {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1.8rem;
  }
  .footer__menu a {
    color: #495057;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
  }
  .footer__menu a:hover {
    color: #007bff;
    text-decoration: underline;
  }
  .footer__middle {
    margin-bottom: 2rem;
  }
  .footer__contacts ul {
    list-style: none;
    padding: 0;
    margin: 0;
    line-height: 1.8;
  }
  .footer__contacts strong {
    color: #2c3e50;
  }
  .footer__contacts a {
    color: #007bff;
    text-decoration: none;
  }
  .footer__contacts a:hover {
    text-decoration: underline;
  }
  .footer__bottom {
    text-align: center;
    font-size: 0.9rem;
    color: #6c757d;
    border-top: 1px solid #e9ecef;
    padding-top: 1.5rem;
  }
  .footer__legal {
    margin: 0.7rem 0;
  }
  .footer__legal a {
    color: #6c757d;
    text-decoration: none;
    margin: 0 0.3rem;
  }
  .footer__legal a:hover {
    text-decoration: underline;
    color: #495057;
  }
  .footer__disclaimer {
    margin-top: 1rem;
    font-size: 0.85rem;
    line-height: 1.4;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  @media (max-width: 768px) {
    .footer__top {
      flex-direction: column;
      align-items: flex-start;
      gap: 1.5rem;
    }
    .footer__menu {
      flex-direction: column;
      gap: 1rem;
    }
    .footer__contacts ul {
      text-align: center;
    }
  }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: end;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

    .cookie-cv9__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

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

.nfcontacts-v11 {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    .nfcontacts-v11__shell {
        max-width: 860px;
        margin: 0 auto;
        display: grid;
        gap: 12px;
    }

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

    .nfcontacts-v11__head p {
        margin: 8px 0 0;
        opacity: .85;
    }

    .nfcontacts-v11__stack {
        display: grid;
        gap: 8px;
    }

    .nfcontacts-v11 details {
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .08);
        border: 1px solid rgba(255, 255, 255, .2);
        padding: 10px 12px;
    }

    .nfcontacts-v11 summary {
        cursor: pointer;
        font-weight: 700;
    }

    .nfcontacts-v11 details div {
        margin-top: 8px;
        display: grid;
        gap: 6px;
    }

    .nfcontacts-v11 details p {
        margin: 0;
    }

    .nfcontacts-v11 details a {
        color: var(--neutral-0);
        text-decoration: underline;
    }

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

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

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

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

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

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

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

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

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

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

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

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

    .map-panel-l5__list a {
        color: var(--link);
        text-decoration: none;
    }
    .map-panel-l5__list a:hover {
        color: var(--link-hover);
        text-decoration: underline;
    }

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

.nfform-v11 {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

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

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

    .nfform-v11 p {
        margin: 0;
        opacity: .85;
    }

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

    .nfform-v11 label span {
        opacity: .9;
        font-size: .9rem;
    }

    .nfform-v11 input {
        width: 100%;
        border: 1px solid rgba(255, 255, 255, .25);
        border-radius: var(--radius-sm);
        background: rgba(255, 255, 255, .1);
        color: var(--neutral-0);
        padding: 9px;
        font: inherit;
    }

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

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

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

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    z-index: 1002;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--accent);
}

.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
}
.burger-line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.main-nav {
    display: flex;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover,
.nav-link:focus {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}
.nav-link[href="contact.html"] {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
}
.nav-link[href="contact.html"]:hover {
    background-color: var(--bg-accent-hover);
}

.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay);
    z-index: 999;
    opacity: 0;
    transition: opacity var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 280px;
        max-width: 90%;
        background-color: var(--surface-2);
        padding: 5rem var(--space-x) var(--space-y);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        z-index: 1001;
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
    }
    .main-nav.active {
        transform: translateX(0);
    }
    .nav-list {
        flex-direction: column;
        gap: 0.5rem;
    }
    .nav-link {
        display: block;
        padding: 1rem;
        border-radius: var(--radius-md);
    }
    .nav-overlay.active {
        display: block;
        opacity: 1;
    }
}

.footer {
    background-color: #f8f9fa;
    color: #333;
    padding: 2.5rem 1.5rem 1.5rem;
    font-family: sans-serif;
    border-top: 1px solid #dee2e6;
  }
  .footer__top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e9ecef;
  }
  .footer__logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #2c3e50;
  }
  .footer__menu {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1.8rem;
  }
  .footer__menu a {
    color: #495057;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
  }
  .footer__menu a:hover {
    color: #007bff;
    text-decoration: underline;
  }
  .footer__middle {
    margin-bottom: 2rem;
  }
  .footer__contacts ul {
    list-style: none;
    padding: 0;
    margin: 0;
    line-height: 1.8;
  }
  .footer__contacts strong {
    color: #2c3e50;
  }
  .footer__contacts a {
    color: #007bff;
    text-decoration: none;
  }
  .footer__contacts a:hover {
    text-decoration: underline;
  }
  .footer__bottom {
    text-align: center;
    font-size: 0.9rem;
    color: #6c757d;
    border-top: 1px solid #e9ecef;
    padding-top: 1.5rem;
  }
  .footer__legal {
    margin: 0.7rem 0;
  }
  .footer__legal a {
    color: #6c757d;
    text-decoration: none;
    margin: 0 0.3rem;
  }
  .footer__legal a:hover {
    text-decoration: underline;
    color: #495057;
  }
  .footer__disclaimer {
    margin-top: 1rem;
    font-size: 0.85rem;
    line-height: 1.4;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  @media (max-width: 768px) {
    .footer__top {
      flex-direction: column;
      align-items: flex-start;
      gap: 1.5rem;
    }
    .footer__menu {
      flex-direction: column;
      gap: 1rem;
    }
    .footer__contacts ul {
      text-align: center;
    }
  }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: end;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

    .cookie-cv9__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

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

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

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

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

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

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

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

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

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

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

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

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

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    z-index: 1002;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--accent);
}

.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
}
.burger-line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.main-nav {
    display: flex;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover,
.nav-link:focus {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}
.nav-link[href="contact.html"] {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
}
.nav-link[href="contact.html"]:hover {
    background-color: var(--bg-accent-hover);
}

.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay);
    z-index: 999;
    opacity: 0;
    transition: opacity var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 280px;
        max-width: 90%;
        background-color: var(--surface-2);
        padding: 5rem var(--space-x) var(--space-y);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        z-index: 1001;
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
    }
    .main-nav.active {
        transform: translateX(0);
    }
    .nav-list {
        flex-direction: column;
        gap: 0.5rem;
    }
    .nav-link {
        display: block;
        padding: 1rem;
        border-radius: var(--radius-md);
    }
    .nav-overlay.active {
        display: block;
        opacity: 1;
    }
}

.footer {
    background-color: #f8f9fa;
    color: #333;
    padding: 2.5rem 1.5rem 1.5rem;
    font-family: sans-serif;
    border-top: 1px solid #dee2e6;
  }
  .footer__top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e9ecef;
  }
  .footer__logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #2c3e50;
  }
  .footer__menu {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1.8rem;
  }
  .footer__menu a {
    color: #495057;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
  }
  .footer__menu a:hover {
    color: #007bff;
    text-decoration: underline;
  }
  .footer__middle {
    margin-bottom: 2rem;
  }
  .footer__contacts ul {
    list-style: none;
    padding: 0;
    margin: 0;
    line-height: 1.8;
  }
  .footer__contacts strong {
    color: #2c3e50;
  }
  .footer__contacts a {
    color: #007bff;
    text-decoration: none;
  }
  .footer__contacts a:hover {
    text-decoration: underline;
  }
  .footer__bottom {
    text-align: center;
    font-size: 0.9rem;
    color: #6c757d;
    border-top: 1px solid #e9ecef;
    padding-top: 1.5rem;
  }
  .footer__legal {
    margin: 0.7rem 0;
  }
  .footer__legal a {
    color: #6c757d;
    text-decoration: none;
    margin: 0 0.3rem;
  }
  .footer__legal a:hover {
    text-decoration: underline;
    color: #495057;
  }
  .footer__disclaimer {
    margin-top: 1rem;
    font-size: 0.85rem;
    line-height: 1.4;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  @media (max-width: 768px) {
    .footer__top {
      flex-direction: column;
      align-items: flex-start;
      gap: 1.5rem;
    }
    .footer__menu {
      flex-direction: column;
      gap: 1rem;
    }
    .footer__contacts ul {
      text-align: center;
    }
  }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: end;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

    .cookie-cv9__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

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

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

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

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

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

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

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

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

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

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

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

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    z-index: 1002;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--accent);
}

.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
}
.burger-line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.main-nav {
    display: flex;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover,
.nav-link:focus {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}
.nav-link[href="contact.html"] {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
}
.nav-link[href="contact.html"]:hover {
    background-color: var(--bg-accent-hover);
}

.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay);
    z-index: 999;
    opacity: 0;
    transition: opacity var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 280px;
        max-width: 90%;
        background-color: var(--surface-2);
        padding: 5rem var(--space-x) var(--space-y);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        z-index: 1001;
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
    }
    .main-nav.active {
        transform: translateX(0);
    }
    .nav-list {
        flex-direction: column;
        gap: 0.5rem;
    }
    .nav-link {
        display: block;
        padding: 1rem;
        border-radius: var(--radius-md);
    }
    .nav-overlay.active {
        display: block;
        opacity: 1;
    }
}

.footer {
    background-color: #f8f9fa;
    color: #333;
    padding: 2.5rem 1.5rem 1.5rem;
    font-family: sans-serif;
    border-top: 1px solid #dee2e6;
  }
  .footer__top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e9ecef;
  }
  .footer__logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #2c3e50;
  }
  .footer__menu {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1.8rem;
  }
  .footer__menu a {
    color: #495057;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
  }
  .footer__menu a:hover {
    color: #007bff;
    text-decoration: underline;
  }
  .footer__middle {
    margin-bottom: 2rem;
  }
  .footer__contacts ul {
    list-style: none;
    padding: 0;
    margin: 0;
    line-height: 1.8;
  }
  .footer__contacts strong {
    color: #2c3e50;
  }
  .footer__contacts a {
    color: #007bff;
    text-decoration: none;
  }
  .footer__contacts a:hover {
    text-decoration: underline;
  }
  .footer__bottom {
    text-align: center;
    font-size: 0.9rem;
    color: #6c757d;
    border-top: 1px solid #e9ecef;
    padding-top: 1.5rem;
  }
  .footer__legal {
    margin: 0.7rem 0;
  }
  .footer__legal a {
    color: #6c757d;
    text-decoration: none;
    margin: 0 0.3rem;
  }
  .footer__legal a:hover {
    text-decoration: underline;
    color: #495057;
  }
  .footer__disclaimer {
    margin-top: 1rem;
    font-size: 0.85rem;
    line-height: 1.4;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  @media (max-width: 768px) {
    .footer__top {
      flex-direction: column;
      align-items: flex-start;
      gap: 1.5rem;
    }
    .footer__menu {
      flex-direction: column;
      gap: 1rem;
    }
    .footer__contacts ul {
      text-align: center;
    }
  }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: end;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

    .cookie-cv9__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

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

.nfthank-v11 {
        padding: clamp(56px, 10vw, 114px) 18px;
        background: linear-gradient(160deg, var(--bg-primary), var(--bg-primary-hover));
        color: var(--fg-on-primary);
    }

    .nfthank-v11__box {
        max-width: 740px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(28px, 4vw, 46px);
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, .2);
        background: rgba(255, 255, 255, .08);
    }

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

    .nfthank-v11 p {
        margin: 12px 0 0;
        opacity: .9;
    }

    .nfthank-v11 a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 16px;
        border-radius: 999px;
        text-decoration: none;
        background: var(--neutral-0);
        color: var(--neutral-900);
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

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

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    z-index: 1002;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--accent);
}

.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
}
.burger-line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.main-nav {
    display: flex;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover,
.nav-link:focus {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}
.nav-link[href="contact.html"] {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
}
.nav-link[href="contact.html"]:hover {
    background-color: var(--bg-accent-hover);
}

.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay);
    z-index: 999;
    opacity: 0;
    transition: opacity var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 280px;
        max-width: 90%;
        background-color: var(--surface-2);
        padding: 5rem var(--space-x) var(--space-y);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        z-index: 1001;
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
    }
    .main-nav.active {
        transform: translateX(0);
    }
    .nav-list {
        flex-direction: column;
        gap: 0.5rem;
    }
    .nav-link {
        display: block;
        padding: 1rem;
        border-radius: var(--radius-md);
    }
    .nav-overlay.active {
        display: block;
        opacity: 1;
    }
}

.footer {
    background-color: #f8f9fa;
    color: #333;
    padding: 2.5rem 1.5rem 1.5rem;
    font-family: sans-serif;
    border-top: 1px solid #dee2e6;
  }
  .footer__top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e9ecef;
  }
  .footer__logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #2c3e50;
  }
  .footer__menu {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1.8rem;
  }
  .footer__menu a {
    color: #495057;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
  }
  .footer__menu a:hover {
    color: #007bff;
    text-decoration: underline;
  }
  .footer__middle {
    margin-bottom: 2rem;
  }
  .footer__contacts ul {
    list-style: none;
    padding: 0;
    margin: 0;
    line-height: 1.8;
  }
  .footer__contacts strong {
    color: #2c3e50;
  }
  .footer__contacts a {
    color: #007bff;
    text-decoration: none;
  }
  .footer__contacts a:hover {
    text-decoration: underline;
  }
  .footer__bottom {
    text-align: center;
    font-size: 0.9rem;
    color: #6c757d;
    border-top: 1px solid #e9ecef;
    padding-top: 1.5rem;
  }
  .footer__legal {
    margin: 0.7rem 0;
  }
  .footer__legal a {
    color: #6c757d;
    text-decoration: none;
    margin: 0 0.3rem;
  }
  .footer__legal a:hover {
    text-decoration: underline;
    color: #495057;
  }
  .footer__disclaimer {
    margin-top: 1rem;
    font-size: 0.85rem;
    line-height: 1.4;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  @media (max-width: 768px) {
    .footer__top {
      flex-direction: column;
      align-items: flex-start;
      gap: 1.5rem;
    }
    .footer__menu {
      flex-direction: column;
      gap: 1rem;
    }
    .footer__contacts ul {
      text-align: center;
    }
  }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: end;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

    .cookie-cv9__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

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

.err-slab-c {
        padding: clamp(56px, 10vw, 114px) 20px;
        background: linear-gradient(180deg, var(--bg-accent), var(--bg-page));
        color: var(--fg-on-page);
    }

    .err-slab-c .tile {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(28px, 4vw, 44px);
        background: var(--surface-1);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
        border-top: 8px solid var(--accent);
    }

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

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

    .err-slab-c a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 18px;
        border-radius: 999px;
        border: 1px solid var(--neutral-300);
        color: var(--fg-on-page);
        text-decoration: none;
    }