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

  --max-w: 840px;
  --space-x: 1.05rem;
  --space-y: 1.5rem;
  --gap: 0.7rem;

  --radius-xl: 0.6rem;
  --radius-lg: 0.48rem;
  --radius-md: 0.35rem;
  --radius-sm: 0.27rem;

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

  --overlay: rgba(0,0,0,0.6);
  --anim-duration: 420ms;
  --anim-ease: cubic-bezier(0.16,1,0.3,1);
  --random-number: 2;

  --brand: #1A3A5C;
  --brand-contrast: #FFFFFF;
  --accent: #0057B7;
  --accent-contrast: #FFFFFF;

  --neutral-0: #FFFFFF;
  --neutral-100: #F5F7FA;
  --neutral-300: #D1D5DB;
  --neutral-600: #6B7280;
  --neutral-800: #1F2937;
  --neutral-900: #111827;

  --bg-page: #FFFFFF;
  --fg-on-page: #1F2937;

  --bg-alt: #F0F4F8;
  --fg-on-alt: #374151;

  --surface-1: #FFFFFF;
  --surface-2: #F9FAFB;
  --fg-on-surface: #1F2937;
  --border-on-surface: #E5E7EB;

  --surface-light: #FFFFFF;
  --fg-on-surface-light: #374151;
  --border-on-surface-light: #E5E7EB;

  --bg-primary: #0057B7;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #004494;
  --ring: #0057B7;

  --bg-accent: #E8F0FE;
  --fg-on-accent: #FFFFFF;
  --bg-accent-hover: #004494;

  --link: #0057B7;
  --link-hover: #003D82;

  --gradient-hero: linear-gradient(135deg, #1A3A5C 0%, #0057B7 100%);
  --gradient-accent: linear-gradient(135deg, #0057B7, #003D82);

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

header {
        background-color: var(--surface-1);
        box-shadow: var(--shadow-sm);
        padding: var(--space-y) var(--space-x);
        position: sticky;
        top: 0;
        z-index: 100;
    }
    .header-inner {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }
    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        letter-spacing: 0.02em;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        white-space: nowrap;
    }
    .nav {
        display: flex;
        width: 100%;
        justify-content: space-between;
    }
    .nav-list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: var(--gap);
    }
    .nav-list:first-child {
        margin-right: auto;
    }
    .nav-list:last-child {
        margin-left: auto;
    }
    .nav-list li a {
        color: var(--fg-on-surface);
        text-decoration: none;
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
        padding: 0.25rem 0.5rem;
        border-radius: var(--radius-sm);
        transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }
    .nav-list li a:hover {
        background-color: var(--btn-ghost-bg-hover);
        color: var(--link-hover);
    }
    .burger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 2.5rem;
        height: 2.5rem;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
        border-radius: var(--radius-sm);
        transition: background-color var(--anim-duration) var(--anim-ease);
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        z-index: 110;
    }
    .burger:hover {
        background-color: var(--btn-ghost-bg-hover);
    }
    .burger span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: var(--fg-on-surface);
        border-radius: 2px;
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }
    .burger span + span {
        margin-top: 5px;
    }
    .burger.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .burger.active span:nth-child(2) {
        opacity: 0;
    }
    .burger.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    @media (max-width: 767px) {
        .header-inner {
            justify-content: space-between;
        }
        .logo {
            position: static;
            transform: none;
            margin: 0 auto;
        }
        .nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background-color: var(--surface-1);
            box-shadow: var(--shadow-md);
            padding: var(--space-y) var(--space-x);
            flex-direction: column;
            align-items: center;
            gap: var(--gap);
        }
        .nav.open {
            display: flex;
        }
        .nav-list {
            flex-direction: column;
            align-items: center;
            gap: var(--gap);
        }
        .nav-list:first-child,
        .nav-list:last-child {
            margin: 0;
        }
        .burger {
            display: flex;
        }
    }

footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}
.footer-col {
  flex: 1 1 250px;
  min-width: 200px;
}
.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f5a623;
  margin-bottom: 0.5rem;
}
.offer {
  font-size: 0.95rem;
  color: #b0b0b0;
}
.nav-links h4 {
  color: #f5a623;
  margin: 1rem 0 0.5rem;
  font-size: 1.1rem;
}
.nav-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-links li {
  margin-bottom: 0.3rem;
}
.nav-links a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s;
}
.nav-links a:hover {
  color: #f5a623;
}
.contacts h4 {
  color: #f5a623;
  margin: 0 0 0.8rem;
  font-size: 1.1rem;
}
.contact-info p {
  margin: 0.3rem 0;
  font-size: 0.95rem;
}
.contact-info a {
  color: #e0e0e0;
  text-decoration: none;
}
.contact-info a:hover {
  color: #f5a623;
}
.social-links {
  margin: 0.8rem 0;
}
.social-links a {
  color: #e0e0e0;
  text-decoration: none;
  margin: 0 0.3rem;
}
.social-links a:hover {
  color: #f5a623;
}
.disclaimer {
  font-size: 0.8rem;
  color: #888;
  margin-top: 1rem;
  line-height: 1.4;
}
.footer-bottom {
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 1rem;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #888;
}
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-col {
    flex: 1 1 100%;
  }
}

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

.intro-stack-l12 {
        padding: clamp(3.6rem, 8vw, 6.5rem) var(--space-x);
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

    .intro-stack-l12__wrap {
        max-width: 58rem;
        margin: 0 auto;
    }

    .intro-stack-l12__hero {
        text-align: center;
    }

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

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

    .intro-stack-l12__hero strong {
        display: block;
        margin-top: .7rem;
    }

    .intro-stack-l12__panels {
        margin-top: 1.15rem;
        display: grid;
        gap: .8rem;
    }

    .intro-stack-l12__panels article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
        color: var(--neutral-600);
    }

.next-ux17 {
        padding: clamp(3.6rem, 8vw, 6.2rem) var(--space-x);
        background: var(--gradient-accent);
        color: var(--accent-contrast);
    }

    .next-ux17__wrap {
        max-width: 58rem;
        margin: 0 auto;
        text-align: center;
    }

    .next-ux17__banner p {
        margin: 0;
    }

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

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

    .next-ux17__fan a {
        display: block;
        padding: .9rem 1rem;
        min-width: 10rem;
        border-radius: var(--radius-lg);
        background: var(--accent);
        border: 1px solid rgba(255, 255, 255, .18);
        color: var(--accent-contrast);
        text-decoration: none;
    }

    .next-ux17__fan span {
        display: block;
        margin-top: .3rem;
    }

    .next-ux17__tail {
        margin-top: 1rem;
    }

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

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

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

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

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

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

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

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

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

.values-chain-c7 {
        padding: clamp(3.5rem, 8vw, 6rem) var(--space-x);
        background: var(--gradient-hero);
        color: var(--gradient-accent);
    }

    .values-chain-c7__wrap {
        max-width: 60rem;
        margin: 0 auto;
    }

    .values-chain-c7__head {
        margin-bottom: 1.1rem;
    }

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

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

    .values-chain-c7__head span {
        display: block;
        margin-top: .8rem;
    }

    .values-chain-c7__list {
        display: grid;
        gap: .8rem;
    }

    .values-chain-c7__list article {
        display: grid;
        grid-template-columns: 2.7rem 1fr 2rem;
        gap: .8rem;
        align-items: center;
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .values-chain-c7__list b {
        display: grid;
        place-items: center;
        width: 2.7rem;
        height: 2.7rem;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

    .values-chain-c7__list h3 {
        margin: 0;
    }

    .values-chain-c7__list p {
        margin: .35rem 0 0;
    }

    .values-chain-c7__list i {
        font-style: normal;
        text-align: right;
    }

header {
        background-color: var(--surface-1);
        box-shadow: var(--shadow-sm);
        padding: var(--space-y) var(--space-x);
        position: sticky;
        top: 0;
        z-index: 100;
    }
    .header-inner {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }
    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        letter-spacing: 0.02em;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        white-space: nowrap;
    }
    .nav {
        display: flex;
        width: 100%;
        justify-content: space-between;
    }
    .nav-list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: var(--gap);
    }
    .nav-list:first-child {
        margin-right: auto;
    }
    .nav-list:last-child {
        margin-left: auto;
    }
    .nav-list li a {
        color: var(--fg-on-surface);
        text-decoration: none;
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
        padding: 0.25rem 0.5rem;
        border-radius: var(--radius-sm);
        transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }
    .nav-list li a:hover {
        background-color: var(--btn-ghost-bg-hover);
        color: var(--link-hover);
    }
    .burger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 2.5rem;
        height: 2.5rem;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
        border-radius: var(--radius-sm);
        transition: background-color var(--anim-duration) var(--anim-ease);
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        z-index: 110;
    }
    .burger:hover {
        background-color: var(--btn-ghost-bg-hover);
    }
    .burger span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: var(--fg-on-surface);
        border-radius: 2px;
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }
    .burger span + span {
        margin-top: 5px;
    }
    .burger.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .burger.active span:nth-child(2) {
        opacity: 0;
    }
    .burger.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    @media (max-width: 767px) {
        .header-inner {
            justify-content: space-between;
        }
        .logo {
            position: static;
            transform: none;
            margin: 0 auto;
        }
        .nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background-color: var(--surface-1);
            box-shadow: var(--shadow-md);
            padding: var(--space-y) var(--space-x);
            flex-direction: column;
            align-items: center;
            gap: var(--gap);
        }
        .nav.open {
            display: flex;
        }
        .nav-list {
            flex-direction: column;
            align-items: center;
            gap: var(--gap);
        }
        .nav-list:first-child,
        .nav-list:last-child {
            margin: 0;
        }
        .burger {
            display: flex;
        }
    }

footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}
.footer-col {
  flex: 1 1 250px;
  min-width: 200px;
}
.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f5a623;
  margin-bottom: 0.5rem;
}
.offer {
  font-size: 0.95rem;
  color: #b0b0b0;
}
.nav-links h4 {
  color: #f5a623;
  margin: 1rem 0 0.5rem;
  font-size: 1.1rem;
}
.nav-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-links li {
  margin-bottom: 0.3rem;
}
.nav-links a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s;
}
.nav-links a:hover {
  color: #f5a623;
}
.contacts h4 {
  color: #f5a623;
  margin: 0 0 0.8rem;
  font-size: 1.1rem;
}
.contact-info p {
  margin: 0.3rem 0;
  font-size: 0.95rem;
}
.contact-info a {
  color: #e0e0e0;
  text-decoration: none;
}
.contact-info a:hover {
  color: #f5a623;
}
.social-links {
  margin: 0.8rem 0;
}
.social-links a {
  color: #e0e0e0;
  text-decoration: none;
  margin: 0 0.3rem;
}
.social-links a:hover {
  color: #f5a623;
}
.disclaimer {
  font-size: 0.8rem;
  color: #888;
  margin-top: 1rem;
  line-height: 1.4;
}
.footer-bottom {
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 1rem;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #888;
}
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-col {
    flex: 1 1 100%;
  }
}

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

.blog-grid-section {
    padding: clamp(48px, 8vw, 80px) 0;
}

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

.blog-grid-section__title {
    text-align: center;
    margin-bottom: calc(var(--space-y) * 2);
    font-size: clamp(28px, 4vw, 40px);
    color: var(--fg-on-page);
}

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

.blog-card {
    background-color: var(--surface-1);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: all var(--anim-duration) var(--anim-ease);
    border: 1px solid var(--border-on-surface);
}

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

.blog-card__image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blog-card__content {
    padding: clamp(16px, 3vw, 28px);
}

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

.blog-card__content p {
    color: var(--fg-on-surface-light);
    margin-bottom: var(--space-y);
}

.blog-card__meta {
    color: var(--neutral-600);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.blog-card__btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--radius-md);
    font-weight: 500;
    text-align: center;
    transition: all var(--anim-duration) var(--anim-ease);
    cursor: pointer;
    border: 1px solid var(--bg-primary);
    font-size: 1rem;
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
}

.blog-card__btn:hover {
    background-color: var(--bg-primary-hover);
    border-color: var(--bg-primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

header {
        background-color: var(--surface-1);
        box-shadow: var(--shadow-sm);
        padding: var(--space-y) var(--space-x);
        position: sticky;
        top: 0;
        z-index: 100;
    }
    .header-inner {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }
    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        letter-spacing: 0.02em;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        white-space: nowrap;
    }
    .nav {
        display: flex;
        width: 100%;
        justify-content: space-between;
    }
    .nav-list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: var(--gap);
    }
    .nav-list:first-child {
        margin-right: auto;
    }
    .nav-list:last-child {
        margin-left: auto;
    }
    .nav-list li a {
        color: var(--fg-on-surface);
        text-decoration: none;
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
        padding: 0.25rem 0.5rem;
        border-radius: var(--radius-sm);
        transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }
    .nav-list li a:hover {
        background-color: var(--btn-ghost-bg-hover);
        color: var(--link-hover);
    }
    .burger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 2.5rem;
        height: 2.5rem;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
        border-radius: var(--radius-sm);
        transition: background-color var(--anim-duration) var(--anim-ease);
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        z-index: 110;
    }
    .burger:hover {
        background-color: var(--btn-ghost-bg-hover);
    }
    .burger span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: var(--fg-on-surface);
        border-radius: 2px;
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }
    .burger span + span {
        margin-top: 5px;
    }
    .burger.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .burger.active span:nth-child(2) {
        opacity: 0;
    }
    .burger.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    @media (max-width: 767px) {
        .header-inner {
            justify-content: space-between;
        }
        .logo {
            position: static;
            transform: none;
            margin: 0 auto;
        }
        .nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background-color: var(--surface-1);
            box-shadow: var(--shadow-md);
            padding: var(--space-y) var(--space-x);
            flex-direction: column;
            align-items: center;
            gap: var(--gap);
        }
        .nav.open {
            display: flex;
        }
        .nav-list {
            flex-direction: column;
            align-items: center;
            gap: var(--gap);
        }
        .nav-list:first-child,
        .nav-list:last-child {
            margin: 0;
        }
        .burger {
            display: flex;
        }
    }

footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}
.footer-col {
  flex: 1 1 250px;
  min-width: 200px;
}
.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f5a623;
  margin-bottom: 0.5rem;
}
.offer {
  font-size: 0.95rem;
  color: #b0b0b0;
}
.nav-links h4 {
  color: #f5a623;
  margin: 1rem 0 0.5rem;
  font-size: 1.1rem;
}
.nav-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-links li {
  margin-bottom: 0.3rem;
}
.nav-links a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s;
}
.nav-links a:hover {
  color: #f5a623;
}
.contacts h4 {
  color: #f5a623;
  margin: 0 0 0.8rem;
  font-size: 1.1rem;
}
.contact-info p {
  margin: 0.3rem 0;
  font-size: 0.95rem;
}
.contact-info a {
  color: #e0e0e0;
  text-decoration: none;
}
.contact-info a:hover {
  color: #f5a623;
}
.social-links {
  margin: 0.8rem 0;
}
.social-links a {
  color: #e0e0e0;
  text-decoration: none;
  margin: 0 0.3rem;
}
.social-links a:hover {
  color: #f5a623;
}
.disclaimer {
  font-size: 0.8rem;
  color: #888;
  margin-top: 1rem;
  line-height: 1.4;
}
.footer-bottom {
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 1rem;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #888;
}
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-col {
    flex: 1 1 100%;
  }
}

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

.product-item--colored-v5 {

    padding: 56px 20px;
    background: var(--neutral-900);
    color: var(--neutral-0);
}

.product-item__inner {
    max-width: 720px;
    margin: 0 auto;
}

.product-item__card {
    background: rgba(15,23,42,0.98);
    border-radius: var(--radius-xl);
    padding: 20px 22px;
    border: 1px solid rgba(148,163,184,0.75);
    box-shadow: var(--shadow-lg);
}

.product-item__header {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: baseline;
    margin-bottom: 8px;
}

.product-item__header h1 {
    margin: 0;
    font-size: clamp(22px,3.5vw,28px);
    color: var(--brand-contrast);
}

.product-item__desc {
    margin: 0 0 10px;
    font-size: 0.95rem;
    color: var(--neutral-200);
}

.product-item__meta {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--neutral-300);
}

.product-item__badge {
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--accent);
    color: var(--fg-on-accent);
}

.product-item__sku {
    opacity: 0.9;
}

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

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

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

        transform: translateY(-18px);
    }

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

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

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

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

        transform: translateY(24px);
    }

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

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

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

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

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

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

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

    .index-feedback-list__score {
        font-weight: 800;
        font-size: 12px;
        color: var(--neutral-900);
    }

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

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

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

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

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

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

header {
        background-color: var(--surface-1);
        box-shadow: var(--shadow-sm);
        padding: var(--space-y) var(--space-x);
        position: sticky;
        top: 0;
        z-index: 100;
    }
    .header-inner {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }
    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        letter-spacing: 0.02em;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        white-space: nowrap;
    }
    .nav {
        display: flex;
        width: 100%;
        justify-content: space-between;
    }
    .nav-list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: var(--gap);
    }
    .nav-list:first-child {
        margin-right: auto;
    }
    .nav-list:last-child {
        margin-left: auto;
    }
    .nav-list li a {
        color: var(--fg-on-surface);
        text-decoration: none;
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
        padding: 0.25rem 0.5rem;
        border-radius: var(--radius-sm);
        transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }
    .nav-list li a:hover {
        background-color: var(--btn-ghost-bg-hover);
        color: var(--link-hover);
    }
    .burger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 2.5rem;
        height: 2.5rem;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
        border-radius: var(--radius-sm);
        transition: background-color var(--anim-duration) var(--anim-ease);
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        z-index: 110;
    }
    .burger:hover {
        background-color: var(--btn-ghost-bg-hover);
    }
    .burger span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: var(--fg-on-surface);
        border-radius: 2px;
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }
    .burger span + span {
        margin-top: 5px;
    }
    .burger.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .burger.active span:nth-child(2) {
        opacity: 0;
    }
    .burger.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    @media (max-width: 767px) {
        .header-inner {
            justify-content: space-between;
        }
        .logo {
            position: static;
            transform: none;
            margin: 0 auto;
        }
        .nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background-color: var(--surface-1);
            box-shadow: var(--shadow-md);
            padding: var(--space-y) var(--space-x);
            flex-direction: column;
            align-items: center;
            gap: var(--gap);
        }
        .nav.open {
            display: flex;
        }
        .nav-list {
            flex-direction: column;
            align-items: center;
            gap: var(--gap);
        }
        .nav-list:first-child,
        .nav-list:last-child {
            margin: 0;
        }
        .burger {
            display: flex;
        }
    }

footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}
.footer-col {
  flex: 1 1 250px;
  min-width: 200px;
}
.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f5a623;
  margin-bottom: 0.5rem;
}
.offer {
  font-size: 0.95rem;
  color: #b0b0b0;
}
.nav-links h4 {
  color: #f5a623;
  margin: 1rem 0 0.5rem;
  font-size: 1.1rem;
}
.nav-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-links li {
  margin-bottom: 0.3rem;
}
.nav-links a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s;
}
.nav-links a:hover {
  color: #f5a623;
}
.contacts h4 {
  color: #f5a623;
  margin: 0 0 0.8rem;
  font-size: 1.1rem;
}
.contact-info p {
  margin: 0.3rem 0;
  font-size: 0.95rem;
}
.contact-info a {
  color: #e0e0e0;
  text-decoration: none;
}
.contact-info a:hover {
  color: #f5a623;
}
.social-links {
  margin: 0.8rem 0;
}
.social-links a {
  color: #e0e0e0;
  text-decoration: none;
  margin: 0 0.3rem;
}
.social-links a:hover {
  color: #f5a623;
}
.disclaimer {
  font-size: 0.8rem;
  color: #888;
  margin-top: 1rem;
  line-height: 1.4;
}
.footer-bottom {
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 1rem;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #888;
}
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-col {
    flex: 1 1 100%;
  }
}

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

.product-item--colored-v5 {

    padding: 56px 20px;
    background: var(--neutral-900);
    color: var(--neutral-0);
}

.product-item__inner {
    max-width: 720px;
    margin: 0 auto;
}

.product-item__card {
    background: rgba(15,23,42,0.98);
    border-radius: var(--radius-xl);
    padding: 20px 22px;
    border: 1px solid rgba(148,163,184,0.75);
    box-shadow: var(--shadow-lg);
}

.product-item__header {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: baseline;
    margin-bottom: 8px;
}

.product-item__header h1 {
    margin: 0;
    font-size: clamp(22px,3.5vw,28px);
    color: var(--brand-contrast);
}

.product-item__desc {
    margin: 0 0 10px;
    font-size: 0.95rem;
    color: var(--neutral-200);
}

.product-item__meta {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--neutral-300);
}

.product-item__badge {
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--accent);
    color: var(--fg-on-accent);
}

.product-item__sku {
    opacity: 0.9;
}

.clar-ux11{padding:clamp(20px,3vw,44px);background:var(--neutral-0);color:var(--neutral-900)}.clar-ux11__wrap{max-width:var(--max-w);margin:0 auto}.clar-ux11__head p{margin:8px 0 12px;color:var(--neutral-600)}.clar-ux11 table{width:100%;border-collapse:separate;border-spacing:0 8px}.clar-ux11 td{vertical-align:top;background:var(--neutral-100);border:1px solid var(--neutral-300);padding:12px}.clar-ux11 td:first-child{width:140px;font-weight:700;color:var(--brand);border-radius:var(--radius-md) 0 0 var(--radius-md)}.clar-ux11 td:last-child{border-radius:0 var(--radius-md) var(--radius-md) 0}.clar-ux11 strong{display:block;margin:0 0 6px}.clar-ux11 p{margin:0;color:var(--neutral-800)}@media(max-width:700px){.clar-ux11 td:first-child{width:90px}}

header {
        background-color: var(--surface-1);
        box-shadow: var(--shadow-sm);
        padding: var(--space-y) var(--space-x);
        position: sticky;
        top: 0;
        z-index: 100;
    }
    .header-inner {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }
    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        letter-spacing: 0.02em;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        white-space: nowrap;
    }
    .nav {
        display: flex;
        width: 100%;
        justify-content: space-between;
    }
    .nav-list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: var(--gap);
    }
    .nav-list:first-child {
        margin-right: auto;
    }
    .nav-list:last-child {
        margin-left: auto;
    }
    .nav-list li a {
        color: var(--fg-on-surface);
        text-decoration: none;
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
        padding: 0.25rem 0.5rem;
        border-radius: var(--radius-sm);
        transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }
    .nav-list li a:hover {
        background-color: var(--btn-ghost-bg-hover);
        color: var(--link-hover);
    }
    .burger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 2.5rem;
        height: 2.5rem;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
        border-radius: var(--radius-sm);
        transition: background-color var(--anim-duration) var(--anim-ease);
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        z-index: 110;
    }
    .burger:hover {
        background-color: var(--btn-ghost-bg-hover);
    }
    .burger span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: var(--fg-on-surface);
        border-radius: 2px;
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }
    .burger span + span {
        margin-top: 5px;
    }
    .burger.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .burger.active span:nth-child(2) {
        opacity: 0;
    }
    .burger.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    @media (max-width: 767px) {
        .header-inner {
            justify-content: space-between;
        }
        .logo {
            position: static;
            transform: none;
            margin: 0 auto;
        }
        .nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background-color: var(--surface-1);
            box-shadow: var(--shadow-md);
            padding: var(--space-y) var(--space-x);
            flex-direction: column;
            align-items: center;
            gap: var(--gap);
        }
        .nav.open {
            display: flex;
        }
        .nav-list {
            flex-direction: column;
            align-items: center;
            gap: var(--gap);
        }
        .nav-list:first-child,
        .nav-list:last-child {
            margin: 0;
        }
        .burger {
            display: flex;
        }
    }

footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}
.footer-col {
  flex: 1 1 250px;
  min-width: 200px;
}
.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f5a623;
  margin-bottom: 0.5rem;
}
.offer {
  font-size: 0.95rem;
  color: #b0b0b0;
}
.nav-links h4 {
  color: #f5a623;
  margin: 1rem 0 0.5rem;
  font-size: 1.1rem;
}
.nav-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-links li {
  margin-bottom: 0.3rem;
}
.nav-links a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s;
}
.nav-links a:hover {
  color: #f5a623;
}
.contacts h4 {
  color: #f5a623;
  margin: 0 0 0.8rem;
  font-size: 1.1rem;
}
.contact-info p {
  margin: 0.3rem 0;
  font-size: 0.95rem;
}
.contact-info a {
  color: #e0e0e0;
  text-decoration: none;
}
.contact-info a:hover {
  color: #f5a623;
}
.social-links {
  margin: 0.8rem 0;
}
.social-links a {
  color: #e0e0e0;
  text-decoration: none;
  margin: 0 0.3rem;
}
.social-links a:hover {
  color: #f5a623;
}
.disclaimer {
  font-size: 0.8rem;
  color: #888;
  margin-top: 1rem;
  line-height: 1.4;
}
.footer-bottom {
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 1rem;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #888;
}
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-col {
    flex: 1 1 100%;
  }
}

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

.article-content-section {
    padding: clamp(48px, 8vw, 80px) 0;
}

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

.article-content-section__content {
    max-width: 800px;
    margin: 0 auto;
}

.article-content-section__content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--fg-on-page);
}

.article-content-section__content p {
    max-width: 100%;
    margin-bottom: 1.5rem;
    color: var(--neutral-600);
}

.article-content-section__content ul,
.article-content-section__content ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    color: var(--neutral-600);
}

.article-content-section__content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.article-content-section__callout {
    margin-top: 2rem;
    padding: clamp(16px, 3vw, 24px);
    background-color: var(--bg-alt);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-on-surface);
}

.article-content-section__callout p {
    margin: 0;
    color: var(--fg-on-alt);
}

.article-content-section__actions {
    margin-top: 2rem;
    text-align: center;
}

.article-content-section__btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--radius-md);
    font-weight: 500;
    text-align: center;
    transition: all var(--anim-duration) var(--anim-ease);
    cursor: pointer;
    border: 1px solid var(--bg-primary);
    font-size: 1rem;
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
}

.article-content-section__btn:hover {
    background-color: var(--bg-primary-hover);
    border-color: var(--bg-primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

header {
        background-color: var(--surface-1);
        box-shadow: var(--shadow-sm);
        padding: var(--space-y) var(--space-x);
        position: sticky;
        top: 0;
        z-index: 100;
    }
    .header-inner {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }
    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        letter-spacing: 0.02em;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        white-space: nowrap;
    }
    .nav {
        display: flex;
        width: 100%;
        justify-content: space-between;
    }
    .nav-list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: var(--gap);
    }
    .nav-list:first-child {
        margin-right: auto;
    }
    .nav-list:last-child {
        margin-left: auto;
    }
    .nav-list li a {
        color: var(--fg-on-surface);
        text-decoration: none;
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
        padding: 0.25rem 0.5rem;
        border-radius: var(--radius-sm);
        transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }
    .nav-list li a:hover {
        background-color: var(--btn-ghost-bg-hover);
        color: var(--link-hover);
    }
    .burger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 2.5rem;
        height: 2.5rem;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
        border-radius: var(--radius-sm);
        transition: background-color var(--anim-duration) var(--anim-ease);
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        z-index: 110;
    }
    .burger:hover {
        background-color: var(--btn-ghost-bg-hover);
    }
    .burger span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: var(--fg-on-surface);
        border-radius: 2px;
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }
    .burger span + span {
        margin-top: 5px;
    }
    .burger.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .burger.active span:nth-child(2) {
        opacity: 0;
    }
    .burger.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    @media (max-width: 767px) {
        .header-inner {
            justify-content: space-between;
        }
        .logo {
            position: static;
            transform: none;
            margin: 0 auto;
        }
        .nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background-color: var(--surface-1);
            box-shadow: var(--shadow-md);
            padding: var(--space-y) var(--space-x);
            flex-direction: column;
            align-items: center;
            gap: var(--gap);
        }
        .nav.open {
            display: flex;
        }
        .nav-list {
            flex-direction: column;
            align-items: center;
            gap: var(--gap);
        }
        .nav-list:first-child,
        .nav-list:last-child {
            margin: 0;
        }
        .burger {
            display: flex;
        }
    }

footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}
.footer-col {
  flex: 1 1 250px;
  min-width: 200px;
}
.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f5a623;
  margin-bottom: 0.5rem;
}
.offer {
  font-size: 0.95rem;
  color: #b0b0b0;
}
.nav-links h4 {
  color: #f5a623;
  margin: 1rem 0 0.5rem;
  font-size: 1.1rem;
}
.nav-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-links li {
  margin-bottom: 0.3rem;
}
.nav-links a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s;
}
.nav-links a:hover {
  color: #f5a623;
}
.contacts h4 {
  color: #f5a623;
  margin: 0 0 0.8rem;
  font-size: 1.1rem;
}
.contact-info p {
  margin: 0.3rem 0;
  font-size: 0.95rem;
}
.contact-info a {
  color: #e0e0e0;
  text-decoration: none;
}
.contact-info a:hover {
  color: #f5a623;
}
.social-links {
  margin: 0.8rem 0;
}
.social-links a {
  color: #e0e0e0;
  text-decoration: none;
  margin: 0 0.3rem;
}
.social-links a:hover {
  color: #f5a623;
}
.disclaimer {
  font-size: 0.8rem;
  color: #888;
  margin-top: 1rem;
  line-height: 1.4;
}
.footer-bottom {
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 1rem;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #888;
}
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-col {
    flex: 1 1 100%;
  }
}

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

.checkout--colored-v5 {

    padding: 56px 20px;
    background: var(--neutral-900);
    color: var(--neutral-0);
}

.checkout__inner {
    max-width: 480px;
    margin: 0 auto;
}

.checkout__title {
    margin: 0 0 6px;
    font-size: clamp(22px,3.5vw,28px);
    color: var(--brand-contrast);
}

.checkout__text {
    margin: 0 0 16px;
    color: var(--neutral-300);
    font-size: 0.95rem;
}

.checkout__summary {
    background: rgba(15,23,42,0.95);
    border-radius: var(--radius-xl);
    padding: 16px 18px;
    border: 1px solid rgba(148,163,184,0.6);
    display: grid;
    gap: 8px;
}

.checkout__row {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
}

.checkout__row--total {
    font-weight: 600;
    border-top: 1px solid rgba(75,85,99,0.9);
    padding-top: 8px;
    margin-top: 4px;
}

.checkout__button {
    margin-top: 8px;
    border: none;
    border-radius: var(--radius-lg);
    padding: 10px 18px;
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
}

header {
        background-color: var(--surface-1);
        box-shadow: var(--shadow-sm);
        padding: var(--space-y) var(--space-x);
        position: sticky;
        top: 0;
        z-index: 100;
    }
    .header-inner {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }
    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        letter-spacing: 0.02em;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        white-space: nowrap;
    }
    .nav {
        display: flex;
        width: 100%;
        justify-content: space-between;
    }
    .nav-list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: var(--gap);
    }
    .nav-list:first-child {
        margin-right: auto;
    }
    .nav-list:last-child {
        margin-left: auto;
    }
    .nav-list li a {
        color: var(--fg-on-surface);
        text-decoration: none;
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
        padding: 0.25rem 0.5rem;
        border-radius: var(--radius-sm);
        transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }
    .nav-list li a:hover {
        background-color: var(--btn-ghost-bg-hover);
        color: var(--link-hover);
    }
    .burger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 2.5rem;
        height: 2.5rem;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
        border-radius: var(--radius-sm);
        transition: background-color var(--anim-duration) var(--anim-ease);
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        z-index: 110;
    }
    .burger:hover {
        background-color: var(--btn-ghost-bg-hover);
    }
    .burger span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: var(--fg-on-surface);
        border-radius: 2px;
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }
    .burger span + span {
        margin-top: 5px;
    }
    .burger.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .burger.active span:nth-child(2) {
        opacity: 0;
    }
    .burger.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    @media (max-width: 767px) {
        .header-inner {
            justify-content: space-between;
        }
        .logo {
            position: static;
            transform: none;
            margin: 0 auto;
        }
        .nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background-color: var(--surface-1);
            box-shadow: var(--shadow-md);
            padding: var(--space-y) var(--space-x);
            flex-direction: column;
            align-items: center;
            gap: var(--gap);
        }
        .nav.open {
            display: flex;
        }
        .nav-list {
            flex-direction: column;
            align-items: center;
            gap: var(--gap);
        }
        .nav-list:first-child,
        .nav-list:last-child {
            margin: 0;
        }
        .burger {
            display: flex;
        }
    }

footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}
.footer-col {
  flex: 1 1 250px;
  min-width: 200px;
}
.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f5a623;
  margin-bottom: 0.5rem;
}
.offer {
  font-size: 0.95rem;
  color: #b0b0b0;
}
.nav-links h4 {
  color: #f5a623;
  margin: 1rem 0 0.5rem;
  font-size: 1.1rem;
}
.nav-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-links li {
  margin-bottom: 0.3rem;
}
.nav-links a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s;
}
.nav-links a:hover {
  color: #f5a623;
}
.contacts h4 {
  color: #f5a623;
  margin: 0 0 0.8rem;
  font-size: 1.1rem;
}
.contact-info p {
  margin: 0.3rem 0;
  font-size: 0.95rem;
}
.contact-info a {
  color: #e0e0e0;
  text-decoration: none;
}
.contact-info a:hover {
  color: #f5a623;
}
.social-links {
  margin: 0.8rem 0;
}
.social-links a {
  color: #e0e0e0;
  text-decoration: none;
  margin: 0 0.3rem;
}
.social-links a:hover {
  color: #f5a623;
}
.disclaimer {
  font-size: 0.8rem;
  color: #888;
  margin-top: 1rem;
  line-height: 1.4;
}
.footer-bottom {
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 1rem;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #888;
}
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-col {
    flex: 1 1 100%;
  }
}

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

.support-lv4 {
        padding: clamp(48px, 6vw, 80px) clamp(16px, 4vw, 36px);
        background: var(--neutral-100);
        color: var(--neutral-900);
    }

    .support-lv4__wrap {
        max-width: 900px;
        margin: 0 auto;
        display: grid;
        gap: 12px;
        grid-template-columns: 1fr 1fr;
    }

    .support-lv4__wrap article {
        border: 1px solid var(--neutral-300);
        border-radius: var(--radius-lg);
        background: var(--neutral-100);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-sm);
    }

    .support-lv4__wrap h3 {
        margin: 0 0 7px;
        color: var(--brand);
    }

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

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

body{margin:0;padding:0;font-family:var(--font-family);box-sizing:border-box;}
*{box-sizing:border-box;}
.contacts-u7{padding:calc(var(--space-y)*2.9) var(--space-x);background:var(--gradient-accent);color:var(--brand-contrast)} .contacts-u7 .shell{max-width:var(--max-w);margin:0 auto;display:grid;gap:var(--gap)} .contacts-u7 h2{margin:0;font-size:clamp(1.85rem,3.6vw,2.8rem);line-height:1.1} .contacts-u7 .sub{margin:.35rem 0 0;opacity:.9;} .contacts-u7 article,.contacts-u7 li{padding:.85rem;border-radius:var(--radius-sm);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);list-style:none} .contacts-u7 p{margin:0} .contacts-u7 a{text-decoration:none;color:inherit;font-weight:700} .contacts-u7 .pulse{margin-top:.8rem;padding:1rem;border-radius:var(--radius-lg);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);animation:contacts-u7Pulse 2.8s ease-in-out infinite} @keyframes contacts-u7Pulse{0%,100%{transform:scale(1)}50%{transform:scale(1.01)}} .contacts-u7 article{transition:transform var(--anim-duration) var(--anim-ease),box-shadow var(--anim-duration) var(--anim-ease)} .contacts-u7 article:hover{transform:translateY(-4px);box-shadow:var(--shadow-md)} @media (max-width:860px){.contacts-u7 .split,.contacts-u7 .media,.contacts-u7 .grid,.contacts-u7 .cards,.contacts-u7 .bento,.contacts-u7 .foot{grid-template-columns:1fr}}

body{margin:0;padding:0;font-family:var(--font-family);font-size:var(--font-size-base);line-height:var(--line-height-base);box-sizing:border-box;background:var(--bg-page);color:var(--fg-on-page)}
*{box-sizing:border-box;}
.frm-lx4{padding:calc(var(--space-y)*2.7) var(--space-x);background:var(--bg-alt)}
.frm-lx4 .frm-wrap{max-width:860px;margin:0 auto;padding:1.1rem;border-radius:var(--radius-xl);background:var(--surface-1);border:1px solid var(--border-on-surface)}
.frm-lx4 h2{margin:0;font-size:clamp(1.75rem,3.1vw,2.45rem)}
.frm-lx4 p{margin:.45rem 0 .95rem;color:var(--fg-on-surface-light)}
.frm-lx4 .frm-rows{display:grid;gap:.58rem}
.frm-lx4 .frm-row{display:grid;grid-template-columns:160px 1fr;gap:.75rem;align-items:center;padding:.62rem;border-radius:var(--radius-md);background:var(--surface-2)}
.frm-lx4 .frm-row span{font-size:.85rem;font-weight:700}
.frm-lx4 input,.frm-lx4 textarea{width:100%;border:1px solid var(--border-on-surface-light);border-radius:var(--radius-sm);padding:.72rem .75rem;font:inherit;background:var(--surface-1);color:var(--fg-on-surface)}
.frm-lx4 .frm-row--message{align-items:start}
.frm-lx4 textarea{min-height:132px;resize:vertical}
.frm-lx4 button{margin-top:.25rem;padding:.84rem 1.2rem;border:1px solid var(--bg-primary);border-radius:var(--radius-md);background:var(--bg-primary);color:var(--fg-on-primary);font-weight:700;cursor:pointer}
.frm-lx4 button:hover{background:var(--bg-primary-hover)}
@media (max-width:720px){.frm-lx4 .frm-row{grid-template-columns:1fr}}

header {
        background-color: var(--surface-1);
        box-shadow: var(--shadow-sm);
        padding: var(--space-y) var(--space-x);
        position: sticky;
        top: 0;
        z-index: 100;
    }
    .header-inner {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }
    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        letter-spacing: 0.02em;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        white-space: nowrap;
    }
    .nav {
        display: flex;
        width: 100%;
        justify-content: space-between;
    }
    .nav-list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: var(--gap);
    }
    .nav-list:first-child {
        margin-right: auto;
    }
    .nav-list:last-child {
        margin-left: auto;
    }
    .nav-list li a {
        color: var(--fg-on-surface);
        text-decoration: none;
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
        padding: 0.25rem 0.5rem;
        border-radius: var(--radius-sm);
        transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }
    .nav-list li a:hover {
        background-color: var(--btn-ghost-bg-hover);
        color: var(--link-hover);
    }
    .burger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 2.5rem;
        height: 2.5rem;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
        border-radius: var(--radius-sm);
        transition: background-color var(--anim-duration) var(--anim-ease);
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        z-index: 110;
    }
    .burger:hover {
        background-color: var(--btn-ghost-bg-hover);
    }
    .burger span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: var(--fg-on-surface);
        border-radius: 2px;
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }
    .burger span + span {
        margin-top: 5px;
    }
    .burger.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .burger.active span:nth-child(2) {
        opacity: 0;
    }
    .burger.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    @media (max-width: 767px) {
        .header-inner {
            justify-content: space-between;
        }
        .logo {
            position: static;
            transform: none;
            margin: 0 auto;
        }
        .nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background-color: var(--surface-1);
            box-shadow: var(--shadow-md);
            padding: var(--space-y) var(--space-x);
            flex-direction: column;
            align-items: center;
            gap: var(--gap);
        }
        .nav.open {
            display: flex;
        }
        .nav-list {
            flex-direction: column;
            align-items: center;
            gap: var(--gap);
        }
        .nav-list:first-child,
        .nav-list:last-child {
            margin: 0;
        }
        .burger {
            display: flex;
        }
    }

footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}
.footer-col {
  flex: 1 1 250px;
  min-width: 200px;
}
.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f5a623;
  margin-bottom: 0.5rem;
}
.offer {
  font-size: 0.95rem;
  color: #b0b0b0;
}
.nav-links h4 {
  color: #f5a623;
  margin: 1rem 0 0.5rem;
  font-size: 1.1rem;
}
.nav-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-links li {
  margin-bottom: 0.3rem;
}
.nav-links a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s;
}
.nav-links a:hover {
  color: #f5a623;
}
.contacts h4 {
  color: #f5a623;
  margin: 0 0 0.8rem;
  font-size: 1.1rem;
}
.contact-info p {
  margin: 0.3rem 0;
  font-size: 0.95rem;
}
.contact-info a {
  color: #e0e0e0;
  text-decoration: none;
}
.contact-info a:hover {
  color: #f5a623;
}
.social-links {
  margin: 0.8rem 0;
}
.social-links a {
  color: #e0e0e0;
  text-decoration: none;
  margin: 0 0.3rem;
}
.social-links a:hover {
  color: #f5a623;
}
.disclaimer {
  font-size: 0.8rem;
  color: #888;
  margin-top: 1rem;
  line-height: 1.4;
}
.footer-bottom {
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 1rem;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #888;
}
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-col {
    flex: 1 1 100%;
  }
}

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

body{margin:0;padding:0;font-family:var(--font-family);font-size:var(--font-size-base);line-height:var(--line-height-base);box-sizing:border-box;background:var(--bg-page);color:var(--fg-on-page)}
*{box-sizing:border-box;}
.pol-lx8{padding:calc(var(--space-y)*2.95) var(--space-x);background:var(--bg-alt)}
.pol-lx8 .pol-wrap{max-width:var(--max-w);margin:0 auto}
.pol-lx8 h2{margin:0 0 .85rem;font-size:clamp(1.76rem,3.1vw,2.45rem)}
.pol-lx8 .pol-cols{display:grid;grid-template-columns:.95fr 1.05fr;gap:var(--gap)}
.pol-lx8 .pol-left{padding:1rem;border-radius:var(--radius-lg);border:1px solid var(--border-on-surface);background:var(--surface-1)}
.pol-lx8 .pol-left h3{margin:0 0 .32rem}
.pol-lx8 .pol-left p{margin:0;color:var(--fg-on-surface-light)}
.pol-lx8 .pol-right{list-style:none;margin:0;padding:0;display:grid;gap:.5rem}
.pol-lx8 .pol-right li{padding:.8rem;border-radius:var(--radius-md);background:var(--surface-1);border:1px solid var(--border-on-surface)}
.pol-lx8 .pol-right h4{margin:0 0 .2rem;font-size:1rem}
.pol-lx8 .pol-right p{margin:0;color:var(--fg-on-surface-light)}
.pol-lx8 .pol-note{display:flex;gap:.7rem;margin-top:.75rem;padding:.8rem;border-radius:var(--radius-md);background:var(--surface-2)}
@media (max-width:860px){.pol-lx8 .pol-cols{grid-template-columns:1fr}.pol-lx8 .pol-note{display:grid}}

header {
        background-color: var(--surface-1);
        box-shadow: var(--shadow-sm);
        padding: var(--space-y) var(--space-x);
        position: sticky;
        top: 0;
        z-index: 100;
    }
    .header-inner {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }
    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        letter-spacing: 0.02em;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        white-space: nowrap;
    }
    .nav {
        display: flex;
        width: 100%;
        justify-content: space-between;
    }
    .nav-list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: var(--gap);
    }
    .nav-list:first-child {
        margin-right: auto;
    }
    .nav-list:last-child {
        margin-left: auto;
    }
    .nav-list li a {
        color: var(--fg-on-surface);
        text-decoration: none;
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
        padding: 0.25rem 0.5rem;
        border-radius: var(--radius-sm);
        transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }
    .nav-list li a:hover {
        background-color: var(--btn-ghost-bg-hover);
        color: var(--link-hover);
    }
    .burger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 2.5rem;
        height: 2.5rem;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
        border-radius: var(--radius-sm);
        transition: background-color var(--anim-duration) var(--anim-ease);
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        z-index: 110;
    }
    .burger:hover {
        background-color: var(--btn-ghost-bg-hover);
    }
    .burger span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: var(--fg-on-surface);
        border-radius: 2px;
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }
    .burger span + span {
        margin-top: 5px;
    }
    .burger.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .burger.active span:nth-child(2) {
        opacity: 0;
    }
    .burger.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    @media (max-width: 767px) {
        .header-inner {
            justify-content: space-between;
        }
        .logo {
            position: static;
            transform: none;
            margin: 0 auto;
        }
        .nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background-color: var(--surface-1);
            box-shadow: var(--shadow-md);
            padding: var(--space-y) var(--space-x);
            flex-direction: column;
            align-items: center;
            gap: var(--gap);
        }
        .nav.open {
            display: flex;
        }
        .nav-list {
            flex-direction: column;
            align-items: center;
            gap: var(--gap);
        }
        .nav-list:first-child,
        .nav-list:last-child {
            margin: 0;
        }
        .burger {
            display: flex;
        }
    }

footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}
.footer-col {
  flex: 1 1 250px;
  min-width: 200px;
}
.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f5a623;
  margin-bottom: 0.5rem;
}
.offer {
  font-size: 0.95rem;
  color: #b0b0b0;
}
.nav-links h4 {
  color: #f5a623;
  margin: 1rem 0 0.5rem;
  font-size: 1.1rem;
}
.nav-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-links li {
  margin-bottom: 0.3rem;
}
.nav-links a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s;
}
.nav-links a:hover {
  color: #f5a623;
}
.contacts h4 {
  color: #f5a623;
  margin: 0 0 0.8rem;
  font-size: 1.1rem;
}
.contact-info p {
  margin: 0.3rem 0;
  font-size: 0.95rem;
}
.contact-info a {
  color: #e0e0e0;
  text-decoration: none;
}
.contact-info a:hover {
  color: #f5a623;
}
.social-links {
  margin: 0.8rem 0;
}
.social-links a {
  color: #e0e0e0;
  text-decoration: none;
  margin: 0 0.3rem;
}
.social-links a:hover {
  color: #f5a623;
}
.disclaimer {
  font-size: 0.8rem;
  color: #888;
  margin-top: 1rem;
  line-height: 1.4;
}
.footer-bottom {
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 1rem;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #888;
}
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-col {
    flex: 1 1 100%;
  }
}

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

header {
        background-color: var(--surface-1);
        box-shadow: var(--shadow-sm);
        padding: var(--space-y) var(--space-x);
        position: sticky;
        top: 0;
        z-index: 100;
    }
    .header-inner {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }
    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        letter-spacing: 0.02em;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        white-space: nowrap;
    }
    .nav {
        display: flex;
        width: 100%;
        justify-content: space-between;
    }
    .nav-list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: var(--gap);
    }
    .nav-list:first-child {
        margin-right: auto;
    }
    .nav-list:last-child {
        margin-left: auto;
    }
    .nav-list li a {
        color: var(--fg-on-surface);
        text-decoration: none;
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
        padding: 0.25rem 0.5rem;
        border-radius: var(--radius-sm);
        transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }
    .nav-list li a:hover {
        background-color: var(--btn-ghost-bg-hover);
        color: var(--link-hover);
    }
    .burger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 2.5rem;
        height: 2.5rem;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
        border-radius: var(--radius-sm);
        transition: background-color var(--anim-duration) var(--anim-ease);
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        z-index: 110;
    }
    .burger:hover {
        background-color: var(--btn-ghost-bg-hover);
    }
    .burger span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: var(--fg-on-surface);
        border-radius: 2px;
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }
    .burger span + span {
        margin-top: 5px;
    }
    .burger.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .burger.active span:nth-child(2) {
        opacity: 0;
    }
    .burger.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    @media (max-width: 767px) {
        .header-inner {
            justify-content: space-between;
        }
        .logo {
            position: static;
            transform: none;
            margin: 0 auto;
        }
        .nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background-color: var(--surface-1);
            box-shadow: var(--shadow-md);
            padding: var(--space-y) var(--space-x);
            flex-direction: column;
            align-items: center;
            gap: var(--gap);
        }
        .nav.open {
            display: flex;
        }
        .nav-list {
            flex-direction: column;
            align-items: center;
            gap: var(--gap);
        }
        .nav-list:first-child,
        .nav-list:last-child {
            margin: 0;
        }
        .burger {
            display: flex;
        }
    }

footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}
.footer-col {
  flex: 1 1 250px;
  min-width: 200px;
}
.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f5a623;
  margin-bottom: 0.5rem;
}
.offer {
  font-size: 0.95rem;
  color: #b0b0b0;
}
.nav-links h4 {
  color: #f5a623;
  margin: 1rem 0 0.5rem;
  font-size: 1.1rem;
}
.nav-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-links li {
  margin-bottom: 0.3rem;
}
.nav-links a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s;
}
.nav-links a:hover {
  color: #f5a623;
}
.contacts h4 {
  color: #f5a623;
  margin: 0 0 0.8rem;
  font-size: 1.1rem;
}
.contact-info p {
  margin: 0.3rem 0;
  font-size: 0.95rem;
}
.contact-info a {
  color: #e0e0e0;
  text-decoration: none;
}
.contact-info a:hover {
  color: #f5a623;
}
.social-links {
  margin: 0.8rem 0;
}
.social-links a {
  color: #e0e0e0;
  text-decoration: none;
  margin: 0 0.3rem;
}
.social-links a:hover {
  color: #f5a623;
}
.disclaimer {
  font-size: 0.8rem;
  color: #888;
  margin-top: 1rem;
  line-height: 1.4;
}
.footer-bottom {
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 1rem;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #888;
}
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-col {
    flex: 1 1 100%;
  }
}

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

body{margin:0;padding:0;font-family:var(--font-family);box-sizing:border-box;}
*{box-sizing:border-box;}
.thank-u5{padding:calc(var(--space-y)*2.9) var(--space-x);background:var(--neutral-900);color:var(--neutral-0)} .thank-u5 .shell{max-width:var(--max-w);margin:0 auto;display:grid;gap:var(--gap)} .thank-u5 h2{margin:0;font-size:clamp(1.85rem,3.6vw,2.8rem);line-height:1.1} .thank-u5 .sub{margin:.35rem 0 0;opacity:.9;} .thank-u5 article,.thank-u5 li{padding:.85rem;border-radius:var(--radius-sm);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);list-style:none} .thank-u5 p{margin:0} .thank-u5 a{text-decoration:none;color:inherit;font-weight:700} .thank-u5 .split{display:grid;grid-template-columns:1fr 1fr;gap:var(--gap)} .thank-u5 .panel{padding:1rem;border-radius:var(--radius-lg);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover)} .thank-u5 .grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:.55rem} @media (max-width:860px){.thank-u5 .split,.thank-u5 .media,.thank-u5 .grid,.thank-u5 .cards,.thank-u5 .bento,.thank-u5 .foot{grid-template-columns:1fr}}

header {
        background-color: var(--surface-1);
        box-shadow: var(--shadow-sm);
        padding: var(--space-y) var(--space-x);
        position: sticky;
        top: 0;
        z-index: 100;
    }
    .header-inner {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }
    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        letter-spacing: 0.02em;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        white-space: nowrap;
    }
    .nav {
        display: flex;
        width: 100%;
        justify-content: space-between;
    }
    .nav-list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: var(--gap);
    }
    .nav-list:first-child {
        margin-right: auto;
    }
    .nav-list:last-child {
        margin-left: auto;
    }
    .nav-list li a {
        color: var(--fg-on-surface);
        text-decoration: none;
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
        padding: 0.25rem 0.5rem;
        border-radius: var(--radius-sm);
        transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }
    .nav-list li a:hover {
        background-color: var(--btn-ghost-bg-hover);
        color: var(--link-hover);
    }
    .burger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 2.5rem;
        height: 2.5rem;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
        border-radius: var(--radius-sm);
        transition: background-color var(--anim-duration) var(--anim-ease);
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        z-index: 110;
    }
    .burger:hover {
        background-color: var(--btn-ghost-bg-hover);
    }
    .burger span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: var(--fg-on-surface);
        border-radius: 2px;
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }
    .burger span + span {
        margin-top: 5px;
    }
    .burger.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .burger.active span:nth-child(2) {
        opacity: 0;
    }
    .burger.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    @media (max-width: 767px) {
        .header-inner {
            justify-content: space-between;
        }
        .logo {
            position: static;
            transform: none;
            margin: 0 auto;
        }
        .nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background-color: var(--surface-1);
            box-shadow: var(--shadow-md);
            padding: var(--space-y) var(--space-x);
            flex-direction: column;
            align-items: center;
            gap: var(--gap);
        }
        .nav.open {
            display: flex;
        }
        .nav-list {
            flex-direction: column;
            align-items: center;
            gap: var(--gap);
        }
        .nav-list:first-child,
        .nav-list:last-child {
            margin: 0;
        }
        .burger {
            display: flex;
        }
    }

footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}
.footer-col {
  flex: 1 1 250px;
  min-width: 200px;
}
.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f5a623;
  margin-bottom: 0.5rem;
}
.offer {
  font-size: 0.95rem;
  color: #b0b0b0;
}
.nav-links h4 {
  color: #f5a623;
  margin: 1rem 0 0.5rem;
  font-size: 1.1rem;
}
.nav-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-links li {
  margin-bottom: 0.3rem;
}
.nav-links a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s;
}
.nav-links a:hover {
  color: #f5a623;
}
.contacts h4 {
  color: #f5a623;
  margin: 0 0 0.8rem;
  font-size: 1.1rem;
}
.contact-info p {
  margin: 0.3rem 0;
  font-size: 0.95rem;
}
.contact-info a {
  color: #e0e0e0;
  text-decoration: none;
}
.contact-info a:hover {
  color: #f5a623;
}
.social-links {
  margin: 0.8rem 0;
}
.social-links a {
  color: #e0e0e0;
  text-decoration: none;
  margin: 0 0.3rem;
}
.social-links a:hover {
  color: #f5a623;
}
.disclaimer {
  font-size: 0.8rem;
  color: #888;
  margin-top: 1rem;
  line-height: 1.4;
}
.footer-bottom {
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 1rem;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #888;
}
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-col {
    flex: 1 1 100%;
  }
}

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

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

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

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

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

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