:root {
  --font-family: "DM Sans", sans-serif;
  --font-size-base: 14.7px;
  --line-height-base: 1.93;

  --max-w: 1120px;
  --space-x: 2.17rem;
  --space-y: 1.5rem;
  --gap: 1.13rem;

  --radius-xl: 1.34rem;
  --radius-lg: 1rem;
  --radius-md: 0.69rem;
  --radius-sm: 0.38rem;

  --shadow-sm: 0 0px 4px rgba(0,0,0,0.06);
  --shadow-md: 0 6px 14px rgba(0,0,0,0.07);
  --shadow-lg: 0 16px 26px rgba(0,0,0,0.09);

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

  --brand: #1a7f5a;
  --brand-contrast: #ffffff;
  --accent: #2e8b57;
  --accent-contrast: #ffffff;

  --neutral-0: #ffffff;
  --neutral-100: #f8f9fa;
  --neutral-300: #dee2e6;
  --neutral-600: #6c757d;
  --neutral-800: #343a40;
  --neutral-900: #212529;

  --bg-page: #ffffff;
  --fg-on-page: #212529;

  --bg-alt: #f8f9fa;
  --fg-on-alt: #495057;

  --surface-1: #ffffff;
  --surface-2: #f8f9fa;
  --fg-on-surface: #212529;
  --border-on-surface: #e9ecef;

  --surface-light: #ffffff;
  --fg-on-surface-light: #495057;
  --border-on-surface-light: #dee2e6;

  --bg-primary: #1a7f5a;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #156c4a;
  --ring: rgba(26, 127, 90, 0.4);

  --bg-accent: #e8f5ee;
  --fg-on-accent: #1a5c3e;
  --bg-accent-hover: #3da36d;

  --link: #1a7f5a;
  --link-hover: #156c4a;

  --gradient-hero: linear-gradient(135deg, #1a7f5a 0%, #2e8b57 100%);
  --gradient-accent: linear-gradient(90deg, #e8f5ee 0%, #f0f9f5 100%);

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

.site-header {
    position: sticky;
    top: var(--space-y);
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 var(--space-x);
    margin-bottom: var(--space-y);
}

.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
    border: 1px solid var(--border-on-surface);
}

.header-logo {
    font-weight: 700;
    font-size: calc(var(--font-size-base) * 1.5);
    color: var(--brand);
    flex-shrink: 0;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: var(--gap);
    flex-grow: 1;
    justify-content: flex-end;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(var(--gap) * 1.5);
}

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) calc(var(--space-x) / 2);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

.nav-link:hover,
.nav-link:focus-visible {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
    outline: none;
}

.nav-button {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: calc(var(--space-y) / 1.2) var(--space-x);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
    border: none;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.nav-button:hover,
.nav-button:focus-visible {
    background-color: var(--bg-primary-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

.burger-button {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0.5rem;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    border-radius: var(--radius-sm);
}

.burger-button:hover {
    background-color: var(--btn-ghost-bg-hover);
}

.burger-line {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
    .burger-button {
        display: flex;
    }

    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-1);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: calc(var(--space-y) * 2) var(--space-x);
        gap: calc(var(--gap) * 2);
        box-shadow: var(--shadow-lg);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 101;
        overflow-y: auto;
    }

    .header-nav.is-open {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: var(--gap);
    }

    .nav-link {
        display: block;
        width: 100%;
        padding: var(--space-y) var(--space-x);
    }

    .nav-button {
        width: 100%;
        margin-top: var(--space-y);
    }

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

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

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

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem 1.5rem;
    font-family: sans-serif;
    color: #333;
    border-top: 1px solid #eaeaea;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 2rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #222;
  }
  .footer-nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .footer-nav a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #000;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    font-size: 0.9rem;
    line-height: 1.6;
  }
  .footer-contacts address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .contact-item {
    display: block;
  }
  .footer-contacts a {
    color: #0066cc;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    flex: 1;
    max-width: 600px;
  }
  .disclaimer {
    color: #666;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background-color: #f9f9f9;
    border-radius: 4px;
    border-left: 3px solid #ccc;
  }
  .legal-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
    color: #777;
  }
  .legal-links a {
    color: #555;
    text-decoration: none;
    white-space: nowrap;
  }
  .legal-links a:hover {
    text-decoration: underline;
  }
  @media (max-width: 768px) {
    .footer-top, .footer-bottom {
      flex-direction: column;
      align-items: flex-start;
      gap: 1.5rem;
    }
    .footer-nav ul {
      gap: 1.5rem;
    }
    .legal-links {
      flex-direction: column;
      align-items: flex-start;
      gap: 0.75rem;
    }
  }

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

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

    .cookie-lv16__meta {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .cookie-lv16__dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--accent);
        box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 20%, transparent);
    }

    .cookie-lv16__shell p {
        margin: 8px 0 0;
        color: var(--fg-muted);
    }

    .cookie-lv16__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

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

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

.nfintro-v10 {
        padding: calc(var(--space-y) * 2.6) var(--space-x) 0;
        background: var(--bg-page);
        color: var(--fg-on-page);
    }

    .nfintro-v10__shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: var(--gap);
    }

    .nfintro-v10 h1 {
        margin: 0;
        font-size: clamp(2rem, 4.2vw, 3.4rem);
        line-height: 1.08;
        max-width: 18ch;
    }

    .nfintro-v10__subtitle {
        margin: 0;
        max-width: 58ch;
        color: var(--fg-on-surface-light);
    }

    .nfintro-v10__split {
        display: grid;
        grid-template-columns: 1.1fr .9fr;
        gap: calc(var(--gap) * 1.4);
        align-items: start;
    }

    .nfintro-v10__desc {margin: 0; max-width: 60ch;}

    .nfintro-v10__actions {
        display: grid;
        gap: .7rem;
        justify-items: start;
    }

    .nfintro-v10__actions a {
        display: inline-flex;
        padding: .66rem 1.1rem;
        border-radius: var(--radius-lg);
        text-decoration: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 700;
    }

    .nfintro-v10__media {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        padding: var(--gap);
        background: var(--surface-2);
        box-shadow: var(--shadow-sm);
    }

    .nfintro-v10__media img {
        width: 100%;
        display: block;
        border-radius: var(--radius-lg);
        aspect-ratio: 16/9;
        object-fit: cover;
    }

    .nfintro-v10__rail {
        margin-top: calc(var(--space-y) * 1.4);
        background: var(--surface-2);
        border-top: 1px solid var(--border-on-surface);
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1px;
    }

    .nfintro-v10__rail div {
        padding: 1rem var(--space-x);
        background: var(--surface-1);
        display: grid;
        gap: .3rem;
    }

    .nfintro-v10__rail em {
        font-style: normal;
        color: var(--fg-on-surface-light);
        font-size: .88rem;
    }

    .nfintro-v10__rail strong {font-size: 1.05rem;}

    @media (max-width: 900px) {
        .nfintro-v10__split {grid-template-columns: 1fr;}
        .nfintro-v10__rail {grid-template-columns: repeat(2, minmax(0, 1fr));}
    }

.about-struct-v3 {
        padding: calc(var(--space-y) * 2) var(--space-x);
        background: var(--gradient-hero);
        color: var(--brand-contrast)
    }

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

    .about-struct-v3 h2, .about-struct-v3 h3, .about-struct-v3 p {
        margin: 0
    }

    .about-struct-v3 .split, .about-struct-v3 .duo {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: var(--gap)
    }

    .about-struct-v3 .split img, .about-struct-v3 .gallery img {
        display: block;
        width: 100%;
        object-fit: cover;
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-md)
    }

    .about-struct-v3 .split img {
        aspect-ratio: 4/3
    }

    .about-struct-v3 .split div {
        display: grid;
        gap: .5rem
    }

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

    .about-struct-v3 article, .about-struct-v3 .values div, .about-struct-v3 .facts div, .about-struct-v3 .quote, .about-struct-v3 .statement {
        background: var(--chip-bg);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        padding: .85rem
    }

    .about-struct-v3 .timeline {
        display: grid;
        gap: .65rem
    }

    .about-struct-v3 .timeline article {
        position: relative;
        padding-left: 1.25rem
    }

    .about-struct-v3 .timeline article::before {
        content: "";
        position: absolute;
        left: 0;
        top: .55rem;
        width: .5rem;
        height: .5rem;
        background: var(--bg-accent);
        border-radius: 50%
    }

    .about-struct-v3 .values, .about-struct-v3 .facts {
        display: grid;
        gap: .6rem
    }

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

    .about-struct-v3 .gallery img {
        aspect-ratio: 1/1
    }

    .about-struct-v3 .statement {
        display: grid;
        gap: .5rem
    }

    .about-struct-v3 .actions {
        display: flex;
        flex-wrap: wrap;
        gap: .45rem
    }

    .about-struct-v3 .actions a {
        display: inline-flex;
        min-height: 2.4rem;
        padding: 0 .85rem;
        border-radius: var(--radius-sm);
        align-items: center;
        text-decoration: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border: 1px solid var(--ring)
    }

    @media (max-width: 900px) {
        .about-struct-v3 .split, .about-struct-v3 .duo, .about-struct-v3 .cards, .about-struct-v3 .gallery {
            grid-template-columns:1fr 1fr
        }
    }

    @media (max-width: 680px) {
        .about-struct-v3 .split, .about-struct-v3 .duo, .about-struct-v3 .cards, .about-struct-v3 .gallery {
            grid-template-columns:1fr
        }
    }

.why-choose {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.next-strip-l2 {
        padding: clamp(3rem, 7vw, 5.6rem) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    .next-strip-l2__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        gap: 1rem;
        align-items: end;
        flex-wrap: wrap;
    }

    .next-strip-l2__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

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

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

    .next-strip-l2__actions {
        max-width: var(--max-w);
        margin: 1rem auto 0;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
        gap: .75rem;
    }

    .next-strip-l2__actions a {
        display: block;
        padding: .95rem;
        border-radius: var(--radius-lg);
        background: var(--bg-alt);
        border: 1px solid var(--border-on-surface-light);
        text-decoration: none;
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

    .next-strip-l2__actions span {
        display: block;
        margin-top: .35rem;
        color: var(--neutral-600);
    }

    .next-strip-l2 {
        overflow: hidden;
    }

    .next-strip-l2__wrap {
        background-image: linear-gradient(rgba(255, 255, 255, .86), rgba(255, 255, 255, .86)), url('https://images.pexels.com/photos/296302/pexels-photo-296302.jpeg?auto=compress&cs=tinysrgb&w=800');
        color: black;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        border-radius: var(--radius-xl);
        overflow: hidden;
        padding: var(--gap);
        box-shadow: var(--shadow-sm)
    }

.site-header {
    position: sticky;
    top: var(--space-y);
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 var(--space-x);
    margin-bottom: var(--space-y);
}

.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
    border: 1px solid var(--border-on-surface);
}

.header-logo {
    font-weight: 700;
    font-size: calc(var(--font-size-base) * 1.5);
    color: var(--brand);
    flex-shrink: 0;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: var(--gap);
    flex-grow: 1;
    justify-content: flex-end;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(var(--gap) * 1.5);
}

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) calc(var(--space-x) / 2);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

.nav-link:hover,
.nav-link:focus-visible {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
    outline: none;
}

.nav-button {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: calc(var(--space-y) / 1.2) var(--space-x);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
    border: none;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.nav-button:hover,
.nav-button:focus-visible {
    background-color: var(--bg-primary-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

.burger-button {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0.5rem;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    border-radius: var(--radius-sm);
}

.burger-button:hover {
    background-color: var(--btn-ghost-bg-hover);
}

.burger-line {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
    .burger-button {
        display: flex;
    }

    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-1);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: calc(var(--space-y) * 2) var(--space-x);
        gap: calc(var(--gap) * 2);
        box-shadow: var(--shadow-lg);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 101;
        overflow-y: auto;
    }

    .header-nav.is-open {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: var(--gap);
    }

    .nav-link {
        display: block;
        width: 100%;
        padding: var(--space-y) var(--space-x);
    }

    .nav-button {
        width: 100%;
        margin-top: var(--space-y);
    }

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

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

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

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem 1.5rem;
    font-family: sans-serif;
    color: #333;
    border-top: 1px solid #eaeaea;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 2rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #222;
  }
  .footer-nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .footer-nav a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #000;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    font-size: 0.9rem;
    line-height: 1.6;
  }
  .footer-contacts address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .contact-item {
    display: block;
  }
  .footer-contacts a {
    color: #0066cc;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    flex: 1;
    max-width: 600px;
  }
  .disclaimer {
    color: #666;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background-color: #f9f9f9;
    border-radius: 4px;
    border-left: 3px solid #ccc;
  }
  .legal-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
    color: #777;
  }
  .legal-links a {
    color: #555;
    text-decoration: none;
    white-space: nowrap;
  }
  .legal-links a:hover {
    text-decoration: underline;
  }
  @media (max-width: 768px) {
    .footer-top, .footer-bottom {
      flex-direction: column;
      align-items: flex-start;
      gap: 1.5rem;
    }
    .footer-nav ul {
      gap: 1.5rem;
    }
    .legal-links {
      flex-direction: column;
      align-items: flex-start;
      gap: 0.75rem;
    }
  }

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

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

    .cookie-lv16__meta {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .cookie-lv16__dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--accent);
        box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 20%, transparent);
    }

    .cookie-lv16__shell p {
        margin: 8px 0 0;
        color: var(--fg-muted);
    }

    .cookie-lv16__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

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

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

.product-list--colored-v5 {
    padding: 60px 20px;
    background: var(--neutral-900);
    color: var(--neutral-0);
}

.product-list__inner {
    max-width: var(--max-w);
    margin: 0 auto;
}

.product-list__header {
    text-align: center;
    margin-bottom: 24px;
}

.product-list__header h2 {
    margin: 0 0 4px;
    font-size: clamp(24px,4vw,30px);
    color: var(--brand-contrast);
}

.product-list__header p {
    margin: 0;
    color: var(--neutral-300);
}

.product-list__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px,1fr));
    gap: 14px;
}

.product-list__card {
    border-radius: var(--radius-xl);
    padding: var(--space-y);
    background: rgba(15,23,42,0.96);
    border: 1px solid rgba(148,163,184,0.7);
}

.product-list__card--bestseller {
    border-color: var(--accent);
}
.product-list__card--limited {
    border-color: var(--accent);
}
.product-list__card--new {
    border-color: var(--bg-primary);
}

.product-list__name {
    margin: 0 0 4px;
    font-size: 0.95rem;
}

.product-list__price {
    margin: 0 0 6px;
    font-size: 1rem;
    font-weight: 600;
}

.product-list__note {
    margin: 0;
    font-size: 0.9rem;
    color: var(--neutral-100);
}

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

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

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

        transform: translateY(-18px);
    }

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

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

    .index-recommendations-steps__steps {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: clamp(16px, 3vw, 26px);
    }

    .index-recommendations-steps__step {
        position: relative;

        transform: translateY(26px);
    }

    .index-recommendations-steps__num {
        width: 24px;
        height: 24px;
        border-radius: 50%;
        background: var(--bg-primary);
        border: 1px solid var(--ring);
        color: var(--fg-on-primary);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 900;
        position: absolute;
        top: 18px;
        left: 50px;
        font-size: 12px;
        box-shadow: var(--shadow-md);
    }

    .index-recommendations-steps__box {
        border-radius: var(--radius-xl);
        background: var(--surface-light);
        border: 1px solid var(--border-on-surface-light);
        box-shadow: var(--shadow-md);
        padding: 26px 18px 18px;
        height: 100%;
    }

    .index-recommendations-steps__head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        margin-bottom: 12px;
    }

    .index-recommendations-steps__icon {
        width: 44px;
        height: 44px;
        border-radius: 16px;
        background: var(--bg-accent);
        border: 1px solid var(--border-on-surface);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        color: var(--fg-on-accent);
        flex: 0 0 auto;
    }

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

    .index-recommendations-steps__box h3 {
        margin: 0 0 10px;
        font-size: 18px;
        font-weight: 900;
        letter-spacing: -0.01em;
        color: var(--fg-on-surface-light);
    }

    .index-recommendations-steps__why {
        margin: 0 0 10px;
        font-size: 12px;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--fg-on-surface-light);
        opacity: 0.75;
    }

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

    .index-recommendations-steps__cta {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        text-decoration: none;
        padding: 10px 14px;
        border-radius: 999px;
        background: var(--bg-primary);
        border: 1px solid var(--ring);
        color: var(--fg-on-primary);
        font-weight: 800;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        font-size: 11px;
        transition: transform var(--anim-duration) var(--anim-ease), background var(--anim-duration) var(--anim-ease);
    }

    .index-recommendations-steps__cta::after {
        content: '->';
    }

    .index-recommendations-steps__cta:hover {
        background: var(--bg-primary-hover);
        transform: translateY(-2px);
    }

.features-struct-v3 {
        padding: calc(var(--space-y) * 2) var(--space-x);
        background: var(--gradient-hero);
        color: var(--brand-contrast)
    }

    .features-struct-v3 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: var(--gap);
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }

    .features-struct-v3 h2, .features-struct-v3 h3, .features-struct-v3 p {
        margin: 0
    }

    .features-struct-v3 .head {
        display: grid;
        gap: calc(var(--gap) * .35)
    }

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

    .features-struct-v3 article {
        background: var(--chip-bg);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        padding: .9rem;
        display: grid;
        gap: .5rem
    }

    .features-struct-v3 .icon {
        min-height: 2rem;
        min-width: 2rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: var(--surface-1);
        border-radius: var(--radius-sm)
    }

    .features-struct-v3 a {
        display: inline-flex;
        min-height: 2.3rem;
        padding: 0 .8rem;
        align-items: center;
        border-radius: var(--radius-sm);
        text-decoration: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border: 1px solid var(--ring)
    }

    .features-struct-v3 .layout {
        display: grid;
        grid-template-columns:.9fr 1.1fr;
        gap: var(--gap)
    }

    .features-struct-v3 .chips {
        display: flex;
        flex-wrap: wrap;
        gap: .4rem
    }

    .features-struct-v3 .chips span {
        padding: .3rem .55rem;
        border-radius: var(--radius-sm);
        background: var(--chip-bg);
        border: 1px solid var(--border-on-surface)
    }

    .features-struct-v3 .list {
        display: grid;
        gap: .6rem
    }

    .features-struct-v3 .list div {
        padding: .75rem;
        border-radius: var(--radius-md);
        background: var(--chip-bg);
        border: 1px solid var(--border-on-surface)
    }

    .features-struct-v3 .timeline {
        display: grid;
        gap: .7rem
    }

    .features-struct-v3 .timeline article {
        position: relative;
        padding-left: 1.2rem
    }

    .features-struct-v3 .timeline article::before {
        content: "";
        position: absolute;
        left: 0;
        top: .5rem;
        width: .5rem;
        height: .5rem;
        background: var(--bg-accent);
        border-radius: 50%
    }

    .features-struct-v3 .side img, .features-struct-v3 .media img {
        display: block;
        width: 100%;
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-md)
    }

    .features-struct-v3 .table {
        display: grid;
        gap: .45rem
    }

    .features-struct-v3 .row {
        display: grid;
        grid-template-columns:1fr 1fr 1fr;
        gap: .5rem;
        padding: .65rem;
        border-radius: var(--radius-md);
        background: var(--chip-bg);
        border: 1px solid var(--border-on-surface)
    }

    .features-struct-v3 .cards {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: var(--gap)
    }

    .features-struct-v3 .cta {
        display: flex;
        justify-content: flex-start
    }

    .features-struct-v3 .split {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: var(--gap)
    }

    .features-struct-v3 details {
        padding: .75rem;
        border-radius: var(--radius-md);
        background: var(--chip-bg);
        border: 1px solid var(--border-on-surface)
    }

    @media (max-width: 900px) {
        .features-struct-v3 .shell {
            grid-template-columns: 1fr;
        }
        .features-struct-v3 .grid, .features-struct-v3 .cards {
            grid-template-columns:1fr 1fr
        }

        .features-struct-v3 .layout, .features-struct-v3 .split {
            grid-template-columns:1fr
        }
    }

    @media (max-width: 680px) {
        .features-struct-v3 .grid, .features-struct-v3 .cards, .features-struct-v3 .row {
            grid-template-columns:1fr
        }
    }

.site-header {
    position: sticky;
    top: var(--space-y);
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 var(--space-x);
    margin-bottom: var(--space-y);
}

.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
    border: 1px solid var(--border-on-surface);
}

.header-logo {
    font-weight: 700;
    font-size: calc(var(--font-size-base) * 1.5);
    color: var(--brand);
    flex-shrink: 0;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: var(--gap);
    flex-grow: 1;
    justify-content: flex-end;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(var(--gap) * 1.5);
}

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) calc(var(--space-x) / 2);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

.nav-link:hover,
.nav-link:focus-visible {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
    outline: none;
}

.nav-button {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: calc(var(--space-y) / 1.2) var(--space-x);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
    border: none;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.nav-button:hover,
.nav-button:focus-visible {
    background-color: var(--bg-primary-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

.burger-button {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0.5rem;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    border-radius: var(--radius-sm);
}

.burger-button:hover {
    background-color: var(--btn-ghost-bg-hover);
}

.burger-line {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
    .burger-button {
        display: flex;
    }

    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-1);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: calc(var(--space-y) * 2) var(--space-x);
        gap: calc(var(--gap) * 2);
        box-shadow: var(--shadow-lg);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 101;
        overflow-y: auto;
    }

    .header-nav.is-open {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: var(--gap);
    }

    .nav-link {
        display: block;
        width: 100%;
        padding: var(--space-y) var(--space-x);
    }

    .nav-button {
        width: 100%;
        margin-top: var(--space-y);
    }

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

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

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

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem 1.5rem;
    font-family: sans-serif;
    color: #333;
    border-top: 1px solid #eaeaea;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 2rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #222;
  }
  .footer-nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .footer-nav a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #000;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    font-size: 0.9rem;
    line-height: 1.6;
  }
  .footer-contacts address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .contact-item {
    display: block;
  }
  .footer-contacts a {
    color: #0066cc;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    flex: 1;
    max-width: 600px;
  }
  .disclaimer {
    color: #666;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background-color: #f9f9f9;
    border-radius: 4px;
    border-left: 3px solid #ccc;
  }
  .legal-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
    color: #777;
  }
  .legal-links a {
    color: #555;
    text-decoration: none;
    white-space: nowrap;
  }
  .legal-links a:hover {
    text-decoration: underline;
  }
  @media (max-width: 768px) {
    .footer-top, .footer-bottom {
      flex-direction: column;
      align-items: flex-start;
      gap: 1.5rem;
    }
    .footer-nav ul {
      gap: 1.5rem;
    }
    .legal-links {
      flex-direction: column;
      align-items: flex-start;
      gap: 0.75rem;
    }
  }

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

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

    .cookie-lv16__meta {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .cookie-lv16__dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--accent);
        box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 20%, transparent);
    }

    .cookie-lv16__shell p {
        margin: 8px 0 0;
        color: var(--fg-muted);
    }

    .cookie-lv16__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

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

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

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

.gallery--colored-v5 {
    padding: 60px 20px;
    background: var(--neutral-900);
    color: var(--neutral-0);
}

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

.gallery__header {
    text-align: center;
    margin-bottom: 24px;
}

.gallery__header h2 {
    margin: 0 0 6px;
    font-size: clamp(24px,4vw,32px);
    color: var(--brand-contrast);
}

.gallery__header p {
    margin: 0;
    color: var(--neutral-300);
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
}

.gallery__item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(148,163,184,0.6);
}

.gallery__item--featured {
    border-color: var(--accent);
}

.gallery__item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.gallery__item figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 8px 10px;
    background: linear-gradient(to top, rgba(15,23,42,0.9), transparent);
    font-size: 0.85rem;
}

.site-header {
    position: sticky;
    top: var(--space-y);
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 var(--space-x);
    margin-bottom: var(--space-y);
}

.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
    border: 1px solid var(--border-on-surface);
}

.header-logo {
    font-weight: 700;
    font-size: calc(var(--font-size-base) * 1.5);
    color: var(--brand);
    flex-shrink: 0;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: var(--gap);
    flex-grow: 1;
    justify-content: flex-end;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(var(--gap) * 1.5);
}

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) calc(var(--space-x) / 2);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

.nav-link:hover,
.nav-link:focus-visible {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
    outline: none;
}

.nav-button {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: calc(var(--space-y) / 1.2) var(--space-x);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
    border: none;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.nav-button:hover,
.nav-button:focus-visible {
    background-color: var(--bg-primary-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

.burger-button {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0.5rem;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    border-radius: var(--radius-sm);
}

.burger-button:hover {
    background-color: var(--btn-ghost-bg-hover);
}

.burger-line {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
    .burger-button {
        display: flex;
    }

    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-1);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: calc(var(--space-y) * 2) var(--space-x);
        gap: calc(var(--gap) * 2);
        box-shadow: var(--shadow-lg);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 101;
        overflow-y: auto;
    }

    .header-nav.is-open {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: var(--gap);
    }

    .nav-link {
        display: block;
        width: 100%;
        padding: var(--space-y) var(--space-x);
    }

    .nav-button {
        width: 100%;
        margin-top: var(--space-y);
    }

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

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

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

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem 1.5rem;
    font-family: sans-serif;
    color: #333;
    border-top: 1px solid #eaeaea;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 2rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #222;
  }
  .footer-nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .footer-nav a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #000;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    font-size: 0.9rem;
    line-height: 1.6;
  }
  .footer-contacts address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .contact-item {
    display: block;
  }
  .footer-contacts a {
    color: #0066cc;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    flex: 1;
    max-width: 600px;
  }
  .disclaimer {
    color: #666;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background-color: #f9f9f9;
    border-radius: 4px;
    border-left: 3px solid #ccc;
  }
  .legal-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
    color: #777;
  }
  .legal-links a {
    color: #555;
    text-decoration: none;
    white-space: nowrap;
  }
  .legal-links a:hover {
    text-decoration: underline;
  }
  @media (max-width: 768px) {
    .footer-top, .footer-bottom {
      flex-direction: column;
      align-items: flex-start;
      gap: 1.5rem;
    }
    .footer-nav ul {
      gap: 1.5rem;
    }
    .legal-links {
      flex-direction: column;
      align-items: flex-start;
      gap: 0.75rem;
    }
  }

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

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

    .cookie-lv16__meta {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .cookie-lv16__dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--accent);
        box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 20%, transparent);
    }

    .cookie-lv16__shell p {
        margin: 8px 0 0;
        color: var(--fg-muted);
    }

    .cookie-lv16__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

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

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

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

.site-header {
    position: sticky;
    top: var(--space-y);
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 var(--space-x);
    margin-bottom: var(--space-y);
}

.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
    border: 1px solid var(--border-on-surface);
}

.header-logo {
    font-weight: 700;
    font-size: calc(var(--font-size-base) * 1.5);
    color: var(--brand);
    flex-shrink: 0;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: var(--gap);
    flex-grow: 1;
    justify-content: flex-end;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(var(--gap) * 1.5);
}

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) calc(var(--space-x) / 2);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

.nav-link:hover,
.nav-link:focus-visible {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
    outline: none;
}

.nav-button {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: calc(var(--space-y) / 1.2) var(--space-x);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
    border: none;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.nav-button:hover,
.nav-button:focus-visible {
    background-color: var(--bg-primary-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

.burger-button {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0.5rem;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    border-radius: var(--radius-sm);
}

.burger-button:hover {
    background-color: var(--btn-ghost-bg-hover);
}

.burger-line {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
    .burger-button {
        display: flex;
    }

    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-1);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: calc(var(--space-y) * 2) var(--space-x);
        gap: calc(var(--gap) * 2);
        box-shadow: var(--shadow-lg);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 101;
        overflow-y: auto;
    }

    .header-nav.is-open {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: var(--gap);
    }

    .nav-link {
        display: block;
        width: 100%;
        padding: var(--space-y) var(--space-x);
    }

    .nav-button {
        width: 100%;
        margin-top: var(--space-y);
    }

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

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

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

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem 1.5rem;
    font-family: sans-serif;
    color: #333;
    border-top: 1px solid #eaeaea;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 2rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #222;
  }
  .footer-nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .footer-nav a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #000;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    font-size: 0.9rem;
    line-height: 1.6;
  }
  .footer-contacts address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .contact-item {
    display: block;
  }
  .footer-contacts a {
    color: #0066cc;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    flex: 1;
    max-width: 600px;
  }
  .disclaimer {
    color: #666;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background-color: #f9f9f9;
    border-radius: 4px;
    border-left: 3px solid #ccc;
  }
  .legal-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
    color: #777;
  }
  .legal-links a {
    color: #555;
    text-decoration: none;
    white-space: nowrap;
  }
  .legal-links a:hover {
    text-decoration: underline;
  }
  @media (max-width: 768px) {
    .footer-top, .footer-bottom {
      flex-direction: column;
      align-items: flex-start;
      gap: 1.5rem;
    }
    .footer-nav ul {
      gap: 1.5rem;
    }
    .legal-links {
      flex-direction: column;
      align-items: flex-start;
      gap: 0.75rem;
    }
  }

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

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

    .cookie-lv16__meta {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .cookie-lv16__dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--accent);
        box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 20%, transparent);
    }

    .cookie-lv16__shell p {
        margin: 8px 0 0;
        color: var(--fg-muted);
    }

    .cookie-lv16__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

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

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

.product-item {

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

    .product-item .product-item__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: var(--space-x);
    }

    @media (min-width: 1024px) {
        .product-item .product-item__c {
            grid-template-columns: 1fr 1fr;
        }

        /* Pokud randomNumber je sudé (2) - první dítě dostane order: 2 */
        .product-item .product-item__c > *:first-child {
            order: calc((var(--random-number) % 2) * 2);
        }
    }

    .product-item .product-item__main-image img {
        width: 100%;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
    }

    .product-item .product-item__thumbnails {
        display: flex;
        gap: 0.5rem;
        margin-top: 1rem;
    }

    .product-item .product-item__thumb {
        width: 80px;
        height: 80px;
        object-fit: cover;
        border-radius: var(--radius-md);
        cursor: pointer;
        border: 2px solid transparent;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .product-item .product-item__thumb:hover {
        border-color: var(--bg-primary);
    }

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

    .product-item .product-item__price {
        font-size: clamp(28px, 4vw, 42px);
        font-weight: 700;
        color: var(--bg-primary);
        margin: 0 0 1.5rem;
    }

    .product-item .product-item__description {
        color: var(--neutral-300);
        line-height: 1.8;
        margin-bottom: var(--space-y);
    }

    .product-item .product-item__description ul {
        padding-left: 1.5rem;
        margin: 1rem 0;
    }

    .product-item .product-item__description li {
        margin-bottom: 0.5rem;
    }

    .product-item .product-item__actions {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }

    /* Pokud randomNumber je sudé (2) - první dítě dostane order: 2 */
    .product-item .product-item__actions > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    .product-item .product-item__add-cart,
    .product-item .product-item__wishlist {
        padding: 0.875rem 2rem;
        border-radius: var(--radius-lg);
        border: none;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .product-item .product-item__add-cart {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-md);
    }

    .product-item .product-item__add-cart:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
    }

    .product-item .product-item__wishlist {
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
        border: 1px solid var(--ring);
    }

    .product-item .product-item__wishlist:hover {
        background: var(--surface-1);
    }

.site-header {
    position: sticky;
    top: var(--space-y);
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 var(--space-x);
    margin-bottom: var(--space-y);
}

.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
    border: 1px solid var(--border-on-surface);
}

.header-logo {
    font-weight: 700;
    font-size: calc(var(--font-size-base) * 1.5);
    color: var(--brand);
    flex-shrink: 0;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: var(--gap);
    flex-grow: 1;
    justify-content: flex-end;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(var(--gap) * 1.5);
}

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) calc(var(--space-x) / 2);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

.nav-link:hover,
.nav-link:focus-visible {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
    outline: none;
}

.nav-button {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: calc(var(--space-y) / 1.2) var(--space-x);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
    border: none;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.nav-button:hover,
.nav-button:focus-visible {
    background-color: var(--bg-primary-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

.burger-button {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0.5rem;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    border-radius: var(--radius-sm);
}

.burger-button:hover {
    background-color: var(--btn-ghost-bg-hover);
}

.burger-line {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
    .burger-button {
        display: flex;
    }

    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-1);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: calc(var(--space-y) * 2) var(--space-x);
        gap: calc(var(--gap) * 2);
        box-shadow: var(--shadow-lg);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 101;
        overflow-y: auto;
    }

    .header-nav.is-open {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: var(--gap);
    }

    .nav-link {
        display: block;
        width: 100%;
        padding: var(--space-y) var(--space-x);
    }

    .nav-button {
        width: 100%;
        margin-top: var(--space-y);
    }

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

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

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

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem 1.5rem;
    font-family: sans-serif;
    color: #333;
    border-top: 1px solid #eaeaea;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 2rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #222;
  }
  .footer-nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .footer-nav a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #000;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    font-size: 0.9rem;
    line-height: 1.6;
  }
  .footer-contacts address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .contact-item {
    display: block;
  }
  .footer-contacts a {
    color: #0066cc;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    flex: 1;
    max-width: 600px;
  }
  .disclaimer {
    color: #666;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background-color: #f9f9f9;
    border-radius: 4px;
    border-left: 3px solid #ccc;
  }
  .legal-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
    color: #777;
  }
  .legal-links a {
    color: #555;
    text-decoration: none;
    white-space: nowrap;
  }
  .legal-links a:hover {
    text-decoration: underline;
  }
  @media (max-width: 768px) {
    .footer-top, .footer-bottom {
      flex-direction: column;
      align-items: flex-start;
      gap: 1.5rem;
    }
    .footer-nav ul {
      gap: 1.5rem;
    }
    .legal-links {
      flex-direction: column;
      align-items: flex-start;
      gap: 0.75rem;
    }
  }

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

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

    .cookie-lv16__meta {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .cookie-lv16__dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--accent);
        box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 20%, transparent);
    }

    .cookie-lv16__shell p {
        margin: 8px 0 0;
        color: var(--fg-muted);
    }

    .cookie-lv16__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

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

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

.nfcontacts-v10 {
        padding: clamp(56px, 8vw, 94px) clamp(16px, 4vw, 34px);
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

    .nfcontacts-v10__wrap {
        max-width: 920px;
        margin: 0 auto;
    }

    .nfcontacts-v10__head {
        margin-bottom: 14px;
    }

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

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

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

    .nfcontacts-v10__row {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--surface-1);
        padding: 10px 12px;
        display: grid;
        gap: 4px;
    }

    .nfcontacts-v10__social {
        margin-top: 12px;
    }

    .nfcontacts-v10__social p {
        margin: 0 0 8px;
        color: var(--neutral-600);
    }

    .nfcontacts-v10__social div {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .nfcontacts-v10__social a {
        text-decoration: none;
        color: var(--fg-on-page);
        border: 1px solid var(--border-on-surface);
        border-radius: 999px;
        padding: 6px 10px;
    }

.support-cv2 {
        padding: clamp(56px, 7vw, 96px) clamp(16px, 4vw, 36px);
        background: linear-gradient(140deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
    }

    .support-cv2__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .support-cv2__box {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: var(--gap);
        border-radius: var(--radius-xl);
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.12);
        padding: 16px;
    }

    .support-cv2__box h2 {
        margin: 0;
        font-size: clamp(26px, 4vw, 40px);
    }

    .support-cv2__box p {
        margin: 8px 0 0;
        opacity: .92;
    }

    .support-cv2__box a {
        text-decoration: none;
        white-space: nowrap;
        padding: 10px 16px;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .support-cv2__box {
            flex-direction: column;
            align-items: flex-start;
        }
    }

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

    .form-layout-f .wrap {
        max-width: 860px;
        margin: 0 auto;
    }

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

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

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

    .form-layout-f .boxed {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        padding: 16px;
        background: var(--surface-1);
        box-shadow: var(--shadow-sm);
    }

    .form-layout-f .group {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .form-layout-f label {
        display: grid;
        gap: 6px;
        margin-bottom: 10px;
    }

    .form-layout-f input:not([type="checkbox"]), .form-layout-f textarea {
        width: 100%;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        padding: 9px;
        font: inherit;
    }

    .form-layout-f .agree {
        display: flex;
        gap: 8px;
        align-items: center;
    }

    .form-layout-f button {
        margin-top: 10px;
        border: 0;
        border-radius: var(--radius-sm);
        padding: 10px 14px;
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

    @media (max-width: 760px) {
        .form-layout-f .group {
            grid-template-columns: 1fr;
        }
    }

.site-header {
    position: sticky;
    top: var(--space-y);
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 var(--space-x);
    margin-bottom: var(--space-y);
}

.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
    border: 1px solid var(--border-on-surface);
}

.header-logo {
    font-weight: 700;
    font-size: calc(var(--font-size-base) * 1.5);
    color: var(--brand);
    flex-shrink: 0;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: var(--gap);
    flex-grow: 1;
    justify-content: flex-end;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(var(--gap) * 1.5);
}

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) calc(var(--space-x) / 2);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

.nav-link:hover,
.nav-link:focus-visible {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
    outline: none;
}

.nav-button {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: calc(var(--space-y) / 1.2) var(--space-x);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
    border: none;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.nav-button:hover,
.nav-button:focus-visible {
    background-color: var(--bg-primary-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

.burger-button {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0.5rem;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    border-radius: var(--radius-sm);
}

.burger-button:hover {
    background-color: var(--btn-ghost-bg-hover);
}

.burger-line {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
    .burger-button {
        display: flex;
    }

    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-1);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: calc(var(--space-y) * 2) var(--space-x);
        gap: calc(var(--gap) * 2);
        box-shadow: var(--shadow-lg);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 101;
        overflow-y: auto;
    }

    .header-nav.is-open {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: var(--gap);
    }

    .nav-link {
        display: block;
        width: 100%;
        padding: var(--space-y) var(--space-x);
    }

    .nav-button {
        width: 100%;
        margin-top: var(--space-y);
    }

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

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

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

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem 1.5rem;
    font-family: sans-serif;
    color: #333;
    border-top: 1px solid #eaeaea;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 2rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #222;
  }
  .footer-nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .footer-nav a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #000;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    font-size: 0.9rem;
    line-height: 1.6;
  }
  .footer-contacts address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .contact-item {
    display: block;
  }
  .footer-contacts a {
    color: #0066cc;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    flex: 1;
    max-width: 600px;
  }
  .disclaimer {
    color: #666;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background-color: #f9f9f9;
    border-radius: 4px;
    border-left: 3px solid #ccc;
  }
  .legal-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
    color: #777;
  }
  .legal-links a {
    color: #555;
    text-decoration: none;
    white-space: nowrap;
  }
  .legal-links a:hover {
    text-decoration: underline;
  }
  @media (max-width: 768px) {
    .footer-top, .footer-bottom {
      flex-direction: column;
      align-items: flex-start;
      gap: 1.5rem;
    }
    .footer-nav ul {
      gap: 1.5rem;
    }
    .legal-links {
      flex-direction: column;
      align-items: flex-start;
      gap: 0.75rem;
    }
  }

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

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

    .cookie-lv16__meta {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .cookie-lv16__dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--accent);
        box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 20%, transparent);
    }

    .cookie-lv16__shell p {
        margin: 8px 0 0;
        color: var(--fg-muted);
    }

    .cookie-lv16__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

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

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

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

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

    .terms-layout-c .section-head {
        margin-bottom: 14px;
    }

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

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

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

    .terms-layout-c summary {
        cursor: pointer;
        color: var(--brand);
        font-weight: 700;
    }

    .terms-layout-c h4 {
        margin: 10px 0 6px;
    }

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

.site-header {
    position: sticky;
    top: var(--space-y);
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 var(--space-x);
    margin-bottom: var(--space-y);
}

.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
    border: 1px solid var(--border-on-surface);
}

.header-logo {
    font-weight: 700;
    font-size: calc(var(--font-size-base) * 1.5);
    color: var(--brand);
    flex-shrink: 0;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: var(--gap);
    flex-grow: 1;
    justify-content: flex-end;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(var(--gap) * 1.5);
}

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) calc(var(--space-x) / 2);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

.nav-link:hover,
.nav-link:focus-visible {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
    outline: none;
}

.nav-button {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: calc(var(--space-y) / 1.2) var(--space-x);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
    border: none;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.nav-button:hover,
.nav-button:focus-visible {
    background-color: var(--bg-primary-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

.burger-button {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0.5rem;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    border-radius: var(--radius-sm);
}

.burger-button:hover {
    background-color: var(--btn-ghost-bg-hover);
}

.burger-line {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
    .burger-button {
        display: flex;
    }

    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-1);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: calc(var(--space-y) * 2) var(--space-x);
        gap: calc(var(--gap) * 2);
        box-shadow: var(--shadow-lg);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 101;
        overflow-y: auto;
    }

    .header-nav.is-open {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: var(--gap);
    }

    .nav-link {
        display: block;
        width: 100%;
        padding: var(--space-y) var(--space-x);
    }

    .nav-button {
        width: 100%;
        margin-top: var(--space-y);
    }

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

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

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

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem 1.5rem;
    font-family: sans-serif;
    color: #333;
    border-top: 1px solid #eaeaea;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 2rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #222;
  }
  .footer-nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .footer-nav a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #000;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    font-size: 0.9rem;
    line-height: 1.6;
  }
  .footer-contacts address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .contact-item {
    display: block;
  }
  .footer-contacts a {
    color: #0066cc;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    flex: 1;
    max-width: 600px;
  }
  .disclaimer {
    color: #666;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background-color: #f9f9f9;
    border-radius: 4px;
    border-left: 3px solid #ccc;
  }
  .legal-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
    color: #777;
  }
  .legal-links a {
    color: #555;
    text-decoration: none;
    white-space: nowrap;
  }
  .legal-links a:hover {
    text-decoration: underline;
  }
  @media (max-width: 768px) {
    .footer-top, .footer-bottom {
      flex-direction: column;
      align-items: flex-start;
      gap: 1.5rem;
    }
    .footer-nav ul {
      gap: 1.5rem;
    }
    .legal-links {
      flex-direction: column;
      align-items: flex-start;
      gap: 0.75rem;
    }
  }

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

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

    .cookie-lv16__meta {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .cookie-lv16__dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--accent);
        box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 20%, transparent);
    }

    .cookie-lv16__shell p {
        margin: 8px 0 0;
        color: var(--fg-muted);
    }

    .cookie-lv16__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

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

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

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

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

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

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

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

    .terms-layout-f .list {
        display: grid;
        gap: 14px;
    }

    .terms-layout-f article {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: linear-gradient(180deg, var(--surface-1), var(--surface-2));
        padding: var(--space-y) var(--space-x);
    }

    .terms-layout-f h3 {
        margin: 0 0 8px;
        color: var(--brand);
    }

    .terms-layout-f h4 {
        margin: 10px 0 6px;
    }

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

.site-header {
    position: sticky;
    top: var(--space-y);
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 var(--space-x);
    margin-bottom: var(--space-y);
}

.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
    border: 1px solid var(--border-on-surface);
}

.header-logo {
    font-weight: 700;
    font-size: calc(var(--font-size-base) * 1.5);
    color: var(--brand);
    flex-shrink: 0;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: var(--gap);
    flex-grow: 1;
    justify-content: flex-end;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(var(--gap) * 1.5);
}

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) calc(var(--space-x) / 2);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

.nav-link:hover,
.nav-link:focus-visible {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
    outline: none;
}

.nav-button {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: calc(var(--space-y) / 1.2) var(--space-x);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
    border: none;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.nav-button:hover,
.nav-button:focus-visible {
    background-color: var(--bg-primary-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

.burger-button {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0.5rem;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    border-radius: var(--radius-sm);
}

.burger-button:hover {
    background-color: var(--btn-ghost-bg-hover);
}

.burger-line {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
    .burger-button {
        display: flex;
    }

    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-1);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: calc(var(--space-y) * 2) var(--space-x);
        gap: calc(var(--gap) * 2);
        box-shadow: var(--shadow-lg);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 101;
        overflow-y: auto;
    }

    .header-nav.is-open {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: var(--gap);
    }

    .nav-link {
        display: block;
        width: 100%;
        padding: var(--space-y) var(--space-x);
    }

    .nav-button {
        width: 100%;
        margin-top: var(--space-y);
    }

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

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

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

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem 1.5rem;
    font-family: sans-serif;
    color: #333;
    border-top: 1px solid #eaeaea;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 2rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #222;
  }
  .footer-nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .footer-nav a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #000;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    font-size: 0.9rem;
    line-height: 1.6;
  }
  .footer-contacts address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .contact-item {
    display: block;
  }
  .footer-contacts a {
    color: #0066cc;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    flex: 1;
    max-width: 600px;
  }
  .disclaimer {
    color: #666;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background-color: #f9f9f9;
    border-radius: 4px;
    border-left: 3px solid #ccc;
  }
  .legal-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
    color: #777;
  }
  .legal-links a {
    color: #555;
    text-decoration: none;
    white-space: nowrap;
  }
  .legal-links a:hover {
    text-decoration: underline;
  }
  @media (max-width: 768px) {
    .footer-top, .footer-bottom {
      flex-direction: column;
      align-items: flex-start;
      gap: 1.5rem;
    }
    .footer-nav ul {
      gap: 1.5rem;
    }
    .legal-links {
      flex-direction: column;
      align-items: flex-start;
      gap: 0.75rem;
    }
  }

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

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

    .cookie-lv16__meta {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .cookie-lv16__dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--accent);
        box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 20%, transparent);
    }

    .cookie-lv16__shell p {
        margin: 8px 0 0;
        color: var(--fg-muted);
    }

    .cookie-lv16__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

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

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

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

    .thank-mode-d .core {
        max-width: 740px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(28px, 4vw, 46px);
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, .24);
    }

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

    .thank-mode-d p {
        margin: 12px 0 0;
        opacity: .9;
    }

    .thank-mode-d a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 16px;
        border-radius: 999px;
        text-decoration: none;
        background: var(--accent);
        color: var(--accent-contrast);
    }

.site-header {
    position: sticky;
    top: var(--space-y);
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 var(--space-x);
    margin-bottom: var(--space-y);
}

.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
    border: 1px solid var(--border-on-surface);
}

.header-logo {
    font-weight: 700;
    font-size: calc(var(--font-size-base) * 1.5);
    color: var(--brand);
    flex-shrink: 0;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: var(--gap);
    flex-grow: 1;
    justify-content: flex-end;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(var(--gap) * 1.5);
}

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) calc(var(--space-x) / 2);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

.nav-link:hover,
.nav-link:focus-visible {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
    outline: none;
}

.nav-button {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: calc(var(--space-y) / 1.2) var(--space-x);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
    border: none;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.nav-button:hover,
.nav-button:focus-visible {
    background-color: var(--bg-primary-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

.burger-button {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0.5rem;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    border-radius: var(--radius-sm);
}

.burger-button:hover {
    background-color: var(--btn-ghost-bg-hover);
}

.burger-line {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
    .burger-button {
        display: flex;
    }

    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-1);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: calc(var(--space-y) * 2) var(--space-x);
        gap: calc(var(--gap) * 2);
        box-shadow: var(--shadow-lg);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 101;
        overflow-y: auto;
    }

    .header-nav.is-open {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: var(--gap);
    }

    .nav-link {
        display: block;
        width: 100%;
        padding: var(--space-y) var(--space-x);
    }

    .nav-button {
        width: 100%;
        margin-top: var(--space-y);
    }

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

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

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

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem 1.5rem;
    font-family: sans-serif;
    color: #333;
    border-top: 1px solid #eaeaea;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 2rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #222;
  }
  .footer-nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .footer-nav a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #000;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    font-size: 0.9rem;
    line-height: 1.6;
  }
  .footer-contacts address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .contact-item {
    display: block;
  }
  .footer-contacts a {
    color: #0066cc;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    flex: 1;
    max-width: 600px;
  }
  .disclaimer {
    color: #666;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background-color: #f9f9f9;
    border-radius: 4px;
    border-left: 3px solid #ccc;
  }
  .legal-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
    color: #777;
  }
  .legal-links a {
    color: #555;
    text-decoration: none;
    white-space: nowrap;
  }
  .legal-links a:hover {
    text-decoration: underline;
  }
  @media (max-width: 768px) {
    .footer-top, .footer-bottom {
      flex-direction: column;
      align-items: flex-start;
      gap: 1.5rem;
    }
    .footer-nav ul {
      gap: 1.5rem;
    }
    .legal-links {
      flex-direction: column;
      align-items: flex-start;
      gap: 0.75rem;
    }
  }

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

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

    .cookie-lv16__meta {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .cookie-lv16__dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--accent);
        box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 20%, transparent);
    }

    .cookie-lv16__shell p {
        margin: 8px 0 0;
        color: var(--fg-muted);
    }

    .cookie-lv16__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

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

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

.err-slab-a {
    padding: clamp(56px, 10vw, 110px) 20px;
    background: var(--gradient-hero);
    color: var(--fg-on-primary);
}

.err-slab-a .box {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

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

.err-slab-a p {
    margin: 12px 0 0;
    opacity: .92;
}

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