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

  --max-w: 1000px;
  --space-x: 2.07rem;
  --space-y: 1.5rem;
  --gap: 1.19rem;

  --radius-xl: 1.27rem;
  --radius-lg: 1rem;
  --radius-md: 0.67rem;
  --radius-sm: 0.35rem;

  --shadow-sm: 0 0px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 2px 10px rgba(0,0,0,0.08);
  --shadow-lg: 0 14px 28px rgba(0,0,0,0.1);

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

  --brand: #C62828;
  --brand-contrast: #FFFFFF;
  --accent: #FF8F00;
  --accent-contrast: #212121;

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

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

  --bg-alt: #FFF8E1;
  --fg-on-alt: #5D4037;

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

  --surface-light: rgba(255, 255, 255, 0.85);
  --fg-on-surface-light: #424242;
  --border-on-surface-light: rgba(224, 224, 224, 0.7);

  --bg-primary: #C62828;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #B71C1C;
  --ring: rgba(198, 40, 40, 0.4);

  --bg-accent: #FFF3E0;
  --fg-on-accent: #5D4037;
  --bg-accent-hover: #FFB74D;

  --link: #1565C0;
  --link-hover: #0D47A1;

  --gradient-hero: linear-gradient(135deg, #C62828 0%, #FF8F00 100%);
  --gradient-accent: linear-gradient(90deg, #FFF3E0 0%, #FFECB3 100%);

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

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

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

.header-logo a {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}
.header-logo a:hover {
    color: var(--accent);
}

.header-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
}
.nav-link:hover {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
}
.nav-link[href="index.html"] {
    color: var(--brand);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--gap);
}

.btn-search,
.btn-menu {
    background: var(--btn-ghost-bg);
    border: 1px solid var(--border-on-surface-light);
    border-radius: var(--radius-md);
    color: var(--fg-on-surface);
    cursor: pointer;
    padding: calc(var(--space-y) / 1.5) calc(var(--space-x) / 1.5);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--anim-duration) var(--anim-ease);
}
.btn-search:hover,
.btn-menu:hover {
    background-color: var(--btn-ghost-bg-hover);
    border-color: var(--brand);
    color: var(--brand);
}
.btn-search:focus-visible,
.btn-menu:focus-visible {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

.btn-menu {
    display: none;
    flex-direction: column;
    gap: 4px;
}
.menu-icon {
    display: block;
    width: 22px;
    height: 2px;
    background-color: currentColor;
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
    .header-container {
        padding: calc(var(--space-y) / 1.2) calc(var(--space-x) / 1.5);
    }

    .header-nav {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--anim-duration) var(--anim-ease);
        z-index: 99;
    }
    .header-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        gap: calc(var(--gap) / 2);
        align-items: center;
    }

    .nav-link {
        width: 100%;
        text-align: center;
        padding: var(--space-y) var(--space-x);
    }

    .btn-menu {
        display: flex;
    }
    .btn-menu[aria-expanded="true"] .menu-icon:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    .btn-menu[aria-expanded="true"] .menu-icon:nth-child(2) {
        opacity: 0;
    }
    .btn-menu[aria-expanded="true"] .menu-icon:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .btn-search {
        padding: calc(var(--space-y) / 1.8) calc(var(--space-x) / 1.8);
    }
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    font-family: sans-serif;
    color: #333;
    background-color: #f8f9fa;
    border-top: 1px solid #e9ecef;
  }
  .footer-brand {
    flex: 1;
  }
  .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
  }
  .tagline {
    color: #7f8c8d;
    font-size: 0.95rem;
    line-height: 1.4;
  }
  .footer-right-stack {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    text-decoration: none;
    color: #3498db;
    font-weight: 500;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #2980b9;
    text-decoration: underline;
  }
  .footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
  }
  .footer-legal-links a {
    text-decoration: none;
    color: #95a5a6;
  }
  .footer-legal-links a:hover {
    color: #7f8c8d;
    text-decoration: underline;
  }
  .footer-bottom {
    border-top: 1px solid #dee2e6;
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 0.9rem;
  }
  .footer-contacts {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
  }
  .footer-contacts address {
    font-style: normal;
    color: #555;
  }
  .footer-contacts a {
    text-decoration: none;
    color: #3498db;
  }
  .footer-contacts a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer p {
    margin: 0;
    color: #95a5a6;
    font-size: 0.8rem;
    line-height: 1.5;
  }
  @media (min-width: 768px) {
    .footer-container {
      flex-direction: row;
      flex-wrap: wrap;
    }
    .footer-bottom {
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
      width: 100%;
    }
    .footer-contacts {
      gap: 2rem;
    }
  }
  @media (max-width: 767px) {
    .footer-nav ul {
      flex-direction: column;
      gap: 0.8rem;
    }
    .footer-legal-links {
      flex-direction: column;
      gap: 0.5rem;
    }
    .footer-contacts {
      flex-direction: column;
      align-items: flex-start;
      gap: 0.5rem;
    }
  }

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

.wp-lang-switcher-v2 {
        position: fixed;
        right: clamp(16px, 2vw, 24px);
        bottom: clamp(16px, 2vw, 24px);
        z-index: 99999;

        --local-random: var(--random-number, 1);
    }

    .wp-lang-switcher-v2__btn {
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
        padding: calc(10px + var(--local-random) * 2px) calc(16px + var(--local-random) * 2px);
        border-radius: calc(var(--radius-lg) + var(--local-random) * 4px);
        cursor: pointer;
        display: flex;
        gap: 10px;
        align-items: center;
        box-shadow: var(--shadow-lg);
        transition: all var(--anim-duration) var(--anim-ease);
        border: 2px solid transparent;
        position: relative;
        overflow: hidden;
    }

    .wp-lang-switcher-v2__btn::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);

        transition: opacity var(--anim-duration) var(--anim-ease);
    }

    .wp-lang-switcher-v2__btn:hover {
        transform: translateY(calc(-2px - var(--local-random) * 1px));
        box-shadow: 0 12px 32px rgba(59, 130, 246, calc(0.3 + var(--local-random) * 0.1));
    }

    .wp-lang-switcher-v2__btn:hover::before {
        opacity: 1;
    }

    .wp-lang-switcher-v2__icon {
        font-size: calc(18px + var(--local-random) * 2px);
        animation: rotate calc(18s + var(--local-random) * 4s) linear infinite;
    }

    @keyframes rotate {
        from {
            transform: rotate(0deg);
        }
        to {
            transform: rotate(360deg);
        }
    }

    .wp-lang-switcher-v2__label {
        font-weight: 600;
        font-size: 14px;
        letter-spacing: calc(0.3px + var(--local-random) * 0.2px);
    }

    .wp-lang-switcher-v2__panel {
        display: none;
        position: absolute;
        right: 0;
        bottom: calc(100% + 12px);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: calc(var(--radius-lg) - var(--local-random) * 2px);
        overflow: hidden;
        box-shadow: var(--shadow-lg);
        min-width: calc(190px + var(--local-random) * 10px);

        transform: translateY(10px);
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .wp-lang-switcher-v2__panel.open {
        display: block;
        opacity: 1;
        transform: translateY(0);
    }

    .wp-lang-switcher-v2__panel button,
    .wp-lang-switcher-v2__panel a {
        width: 100%;
        text-align: left;
        padding: calc(10px + var(--local-random) * 2px) calc(14px + var(--local-random) * 2px);
        border: 0;
        background: var(--surface-1);
        color: var(--fg-on-surface);
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 12px;

        font-size: 15px;
        transition: all var(--anim-duration) var(--anim-ease);
        position: relative;
        text-decoration: none;
    }

    .wp-lang-switcher-v2__panel button::before,
    .wp-lang-switcher-v2__panel a::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: calc(2px + var(--local-random) * 1px);
        background: var(--bg-primary);
        transform: scaleY(0);
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .wp-lang-switcher-v2__panel button:hover,
    .wp-lang-switcher-v2__panel a:hover {
        background: var(--bg-alt);
        padding-left: calc(18px + var(--local-random) * 4px);
    }

    .wp-lang-switcher-v2__panel button:hover::before,
    .wp-lang-switcher-v2__panel a:hover::before {
        transform: scaleY(1);
    }

    .wp-lang-switcher-v2__flag {
        font-size: 20px;
    }

* {
        box-sizing: border-box;
    }

    .intro-tableau-l14 {
        padding: clamp(3.6rem, 8vw, 6.5rem) var(--space-x);
        background: linear-gradient(180deg, var(--surface-1), var(--bg-alt));
        color: var(--fg-on-page);
    }

    .intro-tableau-l14__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1.1fr .9fr;
        gap: 1rem;
        align-items: start;
    }

    .intro-tableau-l14__copy p {
        margin: 0;
        color: var(--neutral-600);
        font-size: .82rem;
        letter-spacing: .1em;
        text-transform: uppercase;
    }

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

    .intro-tableau-l14__copy span {
        display: block;
        margin-top: .9rem;
        color: var(--neutral-600);
    }

    .intro-tableau-l14__stats {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: .75rem;
    }

    .intro-tableau-l14__stats div {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
    }

    .intro-tableau-l14__stats strong {
        display: block;
        color: var(--brand);
        font-size: 1.35rem;
    }

    .intro-tableau-l14__stats span {
        display: block;
        margin-top: .25rem;
        color: var(--neutral-600);
    }

    @media (max-width: 860px) {
        .intro-tableau-l14__wrap {
            grid-template-columns: 1fr;
        }
    }

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

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

    .next-fan-c5__banner p {
        margin: 0;
    }

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

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

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

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

    .next-fan-c5__tail {
        margin-top: 1rem;

    }

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

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

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

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

        transform: translateY(-18px);
    }

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

    .index-recommendations-list__h h2 {
        margin: 0;
        font-size: clamp(28px, 4.6vw, 48px);
        letter-spacing: -0.02em;
        color: var(--fg-on-page);
    }

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

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

        transform: translateY(24px);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        transform: translateY(20px);
    }

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

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

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

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

        transform: translateY(30px);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.header-logo a {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}
.header-logo a:hover {
    color: var(--accent);
}

.header-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
}
.nav-link:hover {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
}
.nav-link[href="index.html"] {
    color: var(--brand);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--gap);
}

.btn-search,
.btn-menu {
    background: var(--btn-ghost-bg);
    border: 1px solid var(--border-on-surface-light);
    border-radius: var(--radius-md);
    color: var(--fg-on-surface);
    cursor: pointer;
    padding: calc(var(--space-y) / 1.5) calc(var(--space-x) / 1.5);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--anim-duration) var(--anim-ease);
}
.btn-search:hover,
.btn-menu:hover {
    background-color: var(--btn-ghost-bg-hover);
    border-color: var(--brand);
    color: var(--brand);
}
.btn-search:focus-visible,
.btn-menu:focus-visible {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

.btn-menu {
    display: none;
    flex-direction: column;
    gap: 4px;
}
.menu-icon {
    display: block;
    width: 22px;
    height: 2px;
    background-color: currentColor;
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
    .header-container {
        padding: calc(var(--space-y) / 1.2) calc(var(--space-x) / 1.5);
    }

    .header-nav {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--anim-duration) var(--anim-ease);
        z-index: 99;
    }
    .header-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        gap: calc(var(--gap) / 2);
        align-items: center;
    }

    .nav-link {
        width: 100%;
        text-align: center;
        padding: var(--space-y) var(--space-x);
    }

    .btn-menu {
        display: flex;
    }
    .btn-menu[aria-expanded="true"] .menu-icon:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    .btn-menu[aria-expanded="true"] .menu-icon:nth-child(2) {
        opacity: 0;
    }
    .btn-menu[aria-expanded="true"] .menu-icon:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .btn-search {
        padding: calc(var(--space-y) / 1.8) calc(var(--space-x) / 1.8);
    }
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    font-family: sans-serif;
    color: #333;
    background-color: #f8f9fa;
    border-top: 1px solid #e9ecef;
  }
  .footer-brand {
    flex: 1;
  }
  .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
  }
  .tagline {
    color: #7f8c8d;
    font-size: 0.95rem;
    line-height: 1.4;
  }
  .footer-right-stack {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    text-decoration: none;
    color: #3498db;
    font-weight: 500;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #2980b9;
    text-decoration: underline;
  }
  .footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
  }
  .footer-legal-links a {
    text-decoration: none;
    color: #95a5a6;
  }
  .footer-legal-links a:hover {
    color: #7f8c8d;
    text-decoration: underline;
  }
  .footer-bottom {
    border-top: 1px solid #dee2e6;
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 0.9rem;
  }
  .footer-contacts {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
  }
  .footer-contacts address {
    font-style: normal;
    color: #555;
  }
  .footer-contacts a {
    text-decoration: none;
    color: #3498db;
  }
  .footer-contacts a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer p {
    margin: 0;
    color: #95a5a6;
    font-size: 0.8rem;
    line-height: 1.5;
  }
  @media (min-width: 768px) {
    .footer-container {
      flex-direction: row;
      flex-wrap: wrap;
    }
    .footer-bottom {
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
      width: 100%;
    }
    .footer-contacts {
      gap: 2rem;
    }
  }
  @media (max-width: 767px) {
    .footer-nav ul {
      flex-direction: column;
      gap: 0.8rem;
    }
    .footer-legal-links {
      flex-direction: column;
      gap: 0.5rem;
    }
    .footer-contacts {
      flex-direction: column;
      align-items: flex-start;
      gap: 0.5rem;
    }
  }

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

.about-mission {

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

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

    .about-mission .about-mission__cards {
        display: grid;
        gap: var(--space-x);
    }

    .about-mission .about-mission__card {
        background: #fff;
        color: var(--fg-on-page);
        border-radius: var(--radius-lg);
        padding: clamp(12px, 2vw, 20px);
        box-shadow: var(--shadow-md);
    }

    @media (max-width: 767px) {
        .about-mission .about-mission__cards {
            grid-template-columns: repeat(1, minmax(0, 1fr));
        }
    }

.story-stream-l7 {
        padding: clamp(3.2rem, 7vw, 5.8rem) var(--space-x);
        background: linear-gradient(180deg, var(--surface-1), var(--bg-alt));
        color: var(--fg-on-page);
    }

    .story-stream-l7__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        gap: 1.4rem;
        flex-wrap: wrap;
        align-items: start;
    }

    .story-stream-l7__media {
        flex: 1 1 18rem;
        order: var(--random-number);
    }

    .story-stream-l7__content {
        flex: 1 1 22rem;
        order: calc(3 - var(--random-number));
    }

    .story-stream-l7__media img {
        display: block;
        width: 100%;
        border-radius: var(--radius-xl);
        border: 1px solid var(--border-on-surface-light);
    }

    .story-stream-l7__content p:first-child {
        margin: 0;
        color: var(--brand);
        font-size: .82rem;
        text-transform: uppercase;
        letter-spacing: .1em;
    }

    .story-stream-l7__content h2 {
        margin: .55rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .story-stream-l7__content strong {
        display: block;
        margin-top: .75rem;
    }

    .story-stream-l7__copy {
        margin: .75rem 0 0;
        color: var(--neutral-600);
    }

    .story-stream-l7__content a {
        display: inline-flex;
        margin-top: 1rem;
        min-height: 2.85rem;
        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;
    }

.identity-cv3 {
        padding: clamp(54px, 8vw, 98px) clamp(16px, 4vw, 40px);
        background: var(--accent);
        color: var(--accent-contrast);
    }

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

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

    .identity-cv3__head span {
        display: inline-block;
        padding: 4px 10px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.3);
    }

    .identity-cv3__head h2 {
        margin: 8px 0;
        font-size: clamp(30px, 5vw, 50px);
    }

    .identity-cv3__head p {
        margin: 0;
        max-width: 72ch;
        opacity: .9;
    }

    .identity-cv3__list {
        display: grid;
        gap: 12px;
    }

    .identity-cv3__list article {
        display: grid;
        grid-template-columns: 90px 1fr;
        gap: 12px;
        background: rgba(255, 255, 255, 0.35);
        border-radius: var(--radius-lg);
        padding: 12px;
        color: var(--fg-on-page);
    }

    .identity-cv3__meta {
        display: grid;
        gap: 8px;
        justify-items: center;
    }

    .identity-cv3__meta b {
        width: 42px;
        height: 42px;
        border-radius: 12px;
        display: grid;
        place-items: center;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    .identity-cv3__meta i {
        font-style: normal;
        font-size: 1.5rem;
    }

    .identity-cv3__list h3 {
        margin: 0;
    }

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

    .identity-cv3__list em {
        font-style: normal;
        font-weight: 700;
        color: var(--link);
    }

    @media (max-width: 640px) {
        .identity-cv3__list article {
            grid-template-columns: 1fr;
        }
    }

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

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

.header-logo a {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}
.header-logo a:hover {
    color: var(--accent);
}

.header-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
}
.nav-link:hover {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
}
.nav-link[href="index.html"] {
    color: var(--brand);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--gap);
}

.btn-search,
.btn-menu {
    background: var(--btn-ghost-bg);
    border: 1px solid var(--border-on-surface-light);
    border-radius: var(--radius-md);
    color: var(--fg-on-surface);
    cursor: pointer;
    padding: calc(var(--space-y) / 1.5) calc(var(--space-x) / 1.5);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--anim-duration) var(--anim-ease);
}
.btn-search:hover,
.btn-menu:hover {
    background-color: var(--btn-ghost-bg-hover);
    border-color: var(--brand);
    color: var(--brand);
}
.btn-search:focus-visible,
.btn-menu:focus-visible {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

.btn-menu {
    display: none;
    flex-direction: column;
    gap: 4px;
}
.menu-icon {
    display: block;
    width: 22px;
    height: 2px;
    background-color: currentColor;
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
    .header-container {
        padding: calc(var(--space-y) / 1.2) calc(var(--space-x) / 1.5);
    }

    .header-nav {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--anim-duration) var(--anim-ease);
        z-index: 99;
    }
    .header-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        gap: calc(var(--gap) / 2);
        align-items: center;
    }

    .nav-link {
        width: 100%;
        text-align: center;
        padding: var(--space-y) var(--space-x);
    }

    .btn-menu {
        display: flex;
    }
    .btn-menu[aria-expanded="true"] .menu-icon:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    .btn-menu[aria-expanded="true"] .menu-icon:nth-child(2) {
        opacity: 0;
    }
    .btn-menu[aria-expanded="true"] .menu-icon:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .btn-search {
        padding: calc(var(--space-y) / 1.8) calc(var(--space-x) / 1.8);
    }
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    font-family: sans-serif;
    color: #333;
    background-color: #f8f9fa;
    border-top: 1px solid #e9ecef;
  }
  .footer-brand {
    flex: 1;
  }
  .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
  }
  .tagline {
    color: #7f8c8d;
    font-size: 0.95rem;
    line-height: 1.4;
  }
  .footer-right-stack {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    text-decoration: none;
    color: #3498db;
    font-weight: 500;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #2980b9;
    text-decoration: underline;
  }
  .footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
  }
  .footer-legal-links a {
    text-decoration: none;
    color: #95a5a6;
  }
  .footer-legal-links a:hover {
    color: #7f8c8d;
    text-decoration: underline;
  }
  .footer-bottom {
    border-top: 1px solid #dee2e6;
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 0.9rem;
  }
  .footer-contacts {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
  }
  .footer-contacts address {
    font-style: normal;
    color: #555;
  }
  .footer-contacts a {
    text-decoration: none;
    color: #3498db;
  }
  .footer-contacts a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer p {
    margin: 0;
    color: #95a5a6;
    font-size: 0.8rem;
    line-height: 1.5;
  }
  @media (min-width: 768px) {
    .footer-container {
      flex-direction: row;
      flex-wrap: wrap;
    }
    .footer-bottom {
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
      width: 100%;
    }
    .footer-contacts {
      gap: 2rem;
    }
  }
  @media (max-width: 767px) {
    .footer-nav ul {
      flex-direction: column;
      gap: 0.8rem;
    }
    .footer-legal-links {
      flex-direction: column;
      gap: 0.5rem;
    }
    .footer-contacts {
      flex-direction: column;
      align-items: flex-start;
      gap: 0.5rem;
    }
  }

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

.hiw-column-l5 {
        padding: clamp(3.2rem, 7vw, 5.8rem) var(--space-x);
        background: linear-gradient(180deg, var(--surface-1), var(--bg-alt));
        color: var(--fg-on-page);
    }

    .hiw-column-l5__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1.15fr .85fr;
        gap: 1.25rem;
    }

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

    .hiw-column-l5__head h2 {
        margin: .55rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .hiw-column-l5__copy {
        margin: .85rem 0 0;
        color: var(--neutral-600);
    }

    .hiw-column-l5__side {
        padding: 1rem;
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
        box-shadow: var(--shadow-sm);
    }

    .hiw-column-l5__side img {
        display: block;
        width: 100%;
        border-radius: var(--radius-lg);
    }

    .hiw-column-l5__side strong {
        display: block;
        margin-top: .9rem;
        color: var(--brand);
    }

    .hiw-column-l5__item {
        margin-top: .65rem;
        padding: .75rem .85rem;
        border-radius: var(--radius-md);
        background: var(--surface-2);
    }

    @media (max-width: 840px) {
        .hiw-column-l5__wrap {
            grid-template-columns: 1fr;
        }
    }

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

    .values-cloud-c5__wrap {
        max-width: 62rem;
        margin: 0 auto;
    }

    .values-cloud-c5__head {
        text-align: center;
        margin-bottom: 1.1rem;
    }

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

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

    .values-cloud-c5__cloud {
        display: flex;
        gap: .8rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .values-cloud-c5__cloud article {
        width: min(16rem, 100%);
        padding: 1rem;
        border-radius: 1.5rem;
        background: rgba(255, 255, 255, .14);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .values-cloud-c5__cloud p {
        margin: .45rem 0 0;

    }

    .values-cloud-c5__cloud span {
        display: block;
        margin-top: .55rem;
        color: rgba(255, 255, 255, .76);
    }

.features {
    padding: clamp(48px, 8vw, 80px) 0;
    color: var(--fg-on-page);
}

.features--alt {
    background-color: var(--bg-alt);
    color: var(--fg-on-alt);
}

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

.features__title {
    text-align: center;
    margin-bottom: calc(var(--space-y) * 2);
    font-size: clamp(28px, 4vw, 40px);
    color: inherit;
}

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

.features__card {
    background-color: var(--surface-1);
    padding: clamp(16px, 3vw, 32px);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--anim-duration) var(--anim-ease);
    text-align: center;
    border: 1px solid var(--border-on-surface);
}

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

.features__icon {
    font-size: 2.5rem;
    color: var(--brand);
    margin-bottom: var(--space-y);
}

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

.features__card p {
    color: var(--fg-on-surface-light);
    margin: 0 auto;
}

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

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

.header-logo a {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}
.header-logo a:hover {
    color: var(--accent);
}

.header-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
}
.nav-link:hover {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
}
.nav-link[href="index.html"] {
    color: var(--brand);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--gap);
}

.btn-search,
.btn-menu {
    background: var(--btn-ghost-bg);
    border: 1px solid var(--border-on-surface-light);
    border-radius: var(--radius-md);
    color: var(--fg-on-surface);
    cursor: pointer;
    padding: calc(var(--space-y) / 1.5) calc(var(--space-x) / 1.5);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--anim-duration) var(--anim-ease);
}
.btn-search:hover,
.btn-menu:hover {
    background-color: var(--btn-ghost-bg-hover);
    border-color: var(--brand);
    color: var(--brand);
}
.btn-search:focus-visible,
.btn-menu:focus-visible {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

.btn-menu {
    display: none;
    flex-direction: column;
    gap: 4px;
}
.menu-icon {
    display: block;
    width: 22px;
    height: 2px;
    background-color: currentColor;
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
    .header-container {
        padding: calc(var(--space-y) / 1.2) calc(var(--space-x) / 1.5);
    }

    .header-nav {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--anim-duration) var(--anim-ease);
        z-index: 99;
    }
    .header-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        gap: calc(var(--gap) / 2);
        align-items: center;
    }

    .nav-link {
        width: 100%;
        text-align: center;
        padding: var(--space-y) var(--space-x);
    }

    .btn-menu {
        display: flex;
    }
    .btn-menu[aria-expanded="true"] .menu-icon:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    .btn-menu[aria-expanded="true"] .menu-icon:nth-child(2) {
        opacity: 0;
    }
    .btn-menu[aria-expanded="true"] .menu-icon:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .btn-search {
        padding: calc(var(--space-y) / 1.8) calc(var(--space-x) / 1.8);
    }
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    font-family: sans-serif;
    color: #333;
    background-color: #f8f9fa;
    border-top: 1px solid #e9ecef;
  }
  .footer-brand {
    flex: 1;
  }
  .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
  }
  .tagline {
    color: #7f8c8d;
    font-size: 0.95rem;
    line-height: 1.4;
  }
  .footer-right-stack {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    text-decoration: none;
    color: #3498db;
    font-weight: 500;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #2980b9;
    text-decoration: underline;
  }
  .footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
  }
  .footer-legal-links a {
    text-decoration: none;
    color: #95a5a6;
  }
  .footer-legal-links a:hover {
    color: #7f8c8d;
    text-decoration: underline;
  }
  .footer-bottom {
    border-top: 1px solid #dee2e6;
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 0.9rem;
  }
  .footer-contacts {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
  }
  .footer-contacts address {
    font-style: normal;
    color: #555;
  }
  .footer-contacts a {
    text-decoration: none;
    color: #3498db;
  }
  .footer-contacts a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer p {
    margin: 0;
    color: #95a5a6;
    font-size: 0.8rem;
    line-height: 1.5;
  }
  @media (min-width: 768px) {
    .footer-container {
      flex-direction: row;
      flex-wrap: wrap;
    }
    .footer-bottom {
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
      width: 100%;
    }
    .footer-contacts {
      gap: 2rem;
    }
  }
  @media (max-width: 767px) {
    .footer-nav ul {
      flex-direction: column;
      gap: 0.8rem;
    }
    .footer-legal-links {
      flex-direction: column;
      gap: 0.5rem;
    }
    .footer-contacts {
      flex-direction: column;
      align-items: flex-start;
      gap: 0.5rem;
    }
  }

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

.contact-layout-d {
        padding: clamp(56px, 8vw, 94px) clamp(16px, 4vw, 34px);
        background: var(--accent);
        color: var(--neutral-0);
    }

    .contact-layout-d .wrap {
        max-width: 860px;
        margin: 0 auto;
    }

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

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

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

    .contact-layout-d .box {
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, .22);
        padding: 18px;
        background: rgba(255, 255, 255, .05);
    }

    .contact-layout-d ul {
        margin: 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 10px;
    }

    .contact-layout-d li {
        display: grid;
        gap: 4px;
        padding: 10px 12px;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .06);
    }

    .contact-layout-d .social {
        margin-top: 14px;
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        align-items: center;
    }

    .contact-layout-d .social a {
        text-decoration: none;
        color: var(--neutral-0);
        border: 1px solid rgba(255, 255, 255, .28);
        padding: 6px 10px;
        border-radius: 999px;
    }

.map-cards-l2 {
        padding: clamp(3.1rem, 7vw, 5.7rem) var(--space-x);
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

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

    .map-cards-l2__head {
        text-align: center;
        margin-bottom: 1rem;
    }

    .map-cards-l2__head p {
        margin: 0;
        color: var(--neutral-600);
    }

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

    .map-cards-l2__frame {
        overflow: hidden;
        border-radius: var(--radius-xl);
        border: 1px solid var(--border-on-surface-light);
        box-shadow: var(--shadow-sm);
    }

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

    .map-cards-l2__grid {
        margin-top: 1rem;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: var(--gap);
    }

    .map-cards-l2__grid article {
        padding: .95rem;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
    }

    .map-cards-l2__grid p {
        margin: .35rem 0 0;
        color: var(--neutral-600);
    }

    @media (max-width: 640px) {
        .map-cards-l2__grid {
            grid-template-columns: 1fr;
        }
    }

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

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

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

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

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

    .form-layout-c .steps {
        background: var(--surface-1);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface-light);
        padding: 16px;
    }

    .form-layout-c .row {
        display: grid;
        gap: 10px;
    }

    .form-layout-c .row.two {
        grid-template-columns: 1fr 1fr;
    }

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

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

    .form-layout-c .agree {
        display: flex;
        gap: 8px;
        align-items: center;
        margin-top: 2px;
    }

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

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

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

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

.header-logo a {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}
.header-logo a:hover {
    color: var(--accent);
}

.header-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
}
.nav-link:hover {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
}
.nav-link[href="index.html"] {
    color: var(--brand);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--gap);
}

.btn-search,
.btn-menu {
    background: var(--btn-ghost-bg);
    border: 1px solid var(--border-on-surface-light);
    border-radius: var(--radius-md);
    color: var(--fg-on-surface);
    cursor: pointer;
    padding: calc(var(--space-y) / 1.5) calc(var(--space-x) / 1.5);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--anim-duration) var(--anim-ease);
}
.btn-search:hover,
.btn-menu:hover {
    background-color: var(--btn-ghost-bg-hover);
    border-color: var(--brand);
    color: var(--brand);
}
.btn-search:focus-visible,
.btn-menu:focus-visible {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

.btn-menu {
    display: none;
    flex-direction: column;
    gap: 4px;
}
.menu-icon {
    display: block;
    width: 22px;
    height: 2px;
    background-color: currentColor;
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
    .header-container {
        padding: calc(var(--space-y) / 1.2) calc(var(--space-x) / 1.5);
    }

    .header-nav {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--anim-duration) var(--anim-ease);
        z-index: 99;
    }
    .header-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        gap: calc(var(--gap) / 2);
        align-items: center;
    }

    .nav-link {
        width: 100%;
        text-align: center;
        padding: var(--space-y) var(--space-x);
    }

    .btn-menu {
        display: flex;
    }
    .btn-menu[aria-expanded="true"] .menu-icon:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    .btn-menu[aria-expanded="true"] .menu-icon:nth-child(2) {
        opacity: 0;
    }
    .btn-menu[aria-expanded="true"] .menu-icon:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .btn-search {
        padding: calc(var(--space-y) / 1.8) calc(var(--space-x) / 1.8);
    }
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    font-family: sans-serif;
    color: #333;
    background-color: #f8f9fa;
    border-top: 1px solid #e9ecef;
  }
  .footer-brand {
    flex: 1;
  }
  .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
  }
  .tagline {
    color: #7f8c8d;
    font-size: 0.95rem;
    line-height: 1.4;
  }
  .footer-right-stack {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    text-decoration: none;
    color: #3498db;
    font-weight: 500;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #2980b9;
    text-decoration: underline;
  }
  .footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
  }
  .footer-legal-links a {
    text-decoration: none;
    color: #95a5a6;
  }
  .footer-legal-links a:hover {
    color: #7f8c8d;
    text-decoration: underline;
  }
  .footer-bottom {
    border-top: 1px solid #dee2e6;
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 0.9rem;
  }
  .footer-contacts {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
  }
  .footer-contacts address {
    font-style: normal;
    color: #555;
  }
  .footer-contacts a {
    text-decoration: none;
    color: #3498db;
  }
  .footer-contacts a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer p {
    margin: 0;
    color: #95a5a6;
    font-size: 0.8rem;
    line-height: 1.5;
  }
  @media (min-width: 768px) {
    .footer-container {
      flex-direction: row;
      flex-wrap: wrap;
    }
    .footer-bottom {
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
      width: 100%;
    }
    .footer-contacts {
      gap: 2rem;
    }
  }
  @media (max-width: 767px) {
    .footer-nav ul {
      flex-direction: column;
      gap: 0.8rem;
    }
    .footer-legal-links {
      flex-direction: column;
      gap: 0.5rem;
    }
    .footer-contacts {
      flex-direction: column;
      align-items: flex-start;
      gap: 0.5rem;
    }
  }

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

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

    .policy-layout-c .wrap {
        max-width: 920px;
        margin: 0 auto;
    }

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

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

    .policy-layout-c .section-head p {
        margin: 10px 0 0;
        opacity: .92;
    }

    .policy-layout-c .stack {
        display: grid;
        gap: 10px;
    }

    .policy-layout-c article {
        border: 1px solid rgba(255, 255, 255, .3);
        border-radius: var(--radius-md);
        padding: 12px;
        background: rgba(255, 255, 255, .1);
    }

    .policy-layout-c h3 {
        margin: 0;
        display: flex;
        gap: 8px;
        align-items: center;
    }

    .policy-layout-c h3 span {
        display: inline-grid;
        place-items: center;
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: rgba(255, 255, 255, .18);
    }

    .policy-layout-c article p {
        margin: 8px 0 0;
        opacity: .95;
    }

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

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

.header-logo a {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}
.header-logo a:hover {
    color: var(--accent);
}

.header-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
}
.nav-link:hover {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
}
.nav-link[href="index.html"] {
    color: var(--brand);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--gap);
}

.btn-search,
.btn-menu {
    background: var(--btn-ghost-bg);
    border: 1px solid var(--border-on-surface-light);
    border-radius: var(--radius-md);
    color: var(--fg-on-surface);
    cursor: pointer;
    padding: calc(var(--space-y) / 1.5) calc(var(--space-x) / 1.5);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--anim-duration) var(--anim-ease);
}
.btn-search:hover,
.btn-menu:hover {
    background-color: var(--btn-ghost-bg-hover);
    border-color: var(--brand);
    color: var(--brand);
}
.btn-search:focus-visible,
.btn-menu:focus-visible {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

.btn-menu {
    display: none;
    flex-direction: column;
    gap: 4px;
}
.menu-icon {
    display: block;
    width: 22px;
    height: 2px;
    background-color: currentColor;
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
    .header-container {
        padding: calc(var(--space-y) / 1.2) calc(var(--space-x) / 1.5);
    }

    .header-nav {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--anim-duration) var(--anim-ease);
        z-index: 99;
    }
    .header-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        gap: calc(var(--gap) / 2);
        align-items: center;
    }

    .nav-link {
        width: 100%;
        text-align: center;
        padding: var(--space-y) var(--space-x);
    }

    .btn-menu {
        display: flex;
    }
    .btn-menu[aria-expanded="true"] .menu-icon:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    .btn-menu[aria-expanded="true"] .menu-icon:nth-child(2) {
        opacity: 0;
    }
    .btn-menu[aria-expanded="true"] .menu-icon:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .btn-search {
        padding: calc(var(--space-y) / 1.8) calc(var(--space-x) / 1.8);
    }
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    font-family: sans-serif;
    color: #333;
    background-color: #f8f9fa;
    border-top: 1px solid #e9ecef;
  }
  .footer-brand {
    flex: 1;
  }
  .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
  }
  .tagline {
    color: #7f8c8d;
    font-size: 0.95rem;
    line-height: 1.4;
  }
  .footer-right-stack {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    text-decoration: none;
    color: #3498db;
    font-weight: 500;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #2980b9;
    text-decoration: underline;
  }
  .footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
  }
  .footer-legal-links a {
    text-decoration: none;
    color: #95a5a6;
  }
  .footer-legal-links a:hover {
    color: #7f8c8d;
    text-decoration: underline;
  }
  .footer-bottom {
    border-top: 1px solid #dee2e6;
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 0.9rem;
  }
  .footer-contacts {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
  }
  .footer-contacts address {
    font-style: normal;
    color: #555;
  }
  .footer-contacts a {
    text-decoration: none;
    color: #3498db;
  }
  .footer-contacts a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer p {
    margin: 0;
    color: #95a5a6;
    font-size: 0.8rem;
    line-height: 1.5;
  }
  @media (min-width: 768px) {
    .footer-container {
      flex-direction: row;
      flex-wrap: wrap;
    }
    .footer-bottom {
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
      width: 100%;
    }
    .footer-contacts {
      gap: 2rem;
    }
  }
  @media (max-width: 767px) {
    .footer-nav ul {
      flex-direction: column;
      gap: 0.8rem;
    }
    .footer-legal-links {
      flex-direction: column;
      gap: 0.5rem;
    }
    .footer-contacts {
      flex-direction: column;
      align-items: flex-start;
      gap: 0.5rem;
    }
  }

.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 {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

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

.header-logo a {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}
.header-logo a:hover {
    color: var(--accent);
}

.header-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
}
.nav-link:hover {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
}
.nav-link[href="index.html"] {
    color: var(--brand);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--gap);
}

.btn-search,
.btn-menu {
    background: var(--btn-ghost-bg);
    border: 1px solid var(--border-on-surface-light);
    border-radius: var(--radius-md);
    color: var(--fg-on-surface);
    cursor: pointer;
    padding: calc(var(--space-y) / 1.5) calc(var(--space-x) / 1.5);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--anim-duration) var(--anim-ease);
}
.btn-search:hover,
.btn-menu:hover {
    background-color: var(--btn-ghost-bg-hover);
    border-color: var(--brand);
    color: var(--brand);
}
.btn-search:focus-visible,
.btn-menu:focus-visible {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

.btn-menu {
    display: none;
    flex-direction: column;
    gap: 4px;
}
.menu-icon {
    display: block;
    width: 22px;
    height: 2px;
    background-color: currentColor;
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
    .header-container {
        padding: calc(var(--space-y) / 1.2) calc(var(--space-x) / 1.5);
    }

    .header-nav {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--anim-duration) var(--anim-ease);
        z-index: 99;
    }
    .header-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        gap: calc(var(--gap) / 2);
        align-items: center;
    }

    .nav-link {
        width: 100%;
        text-align: center;
        padding: var(--space-y) var(--space-x);
    }

    .btn-menu {
        display: flex;
    }
    .btn-menu[aria-expanded="true"] .menu-icon:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    .btn-menu[aria-expanded="true"] .menu-icon:nth-child(2) {
        opacity: 0;
    }
    .btn-menu[aria-expanded="true"] .menu-icon:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .btn-search {
        padding: calc(var(--space-y) / 1.8) calc(var(--space-x) / 1.8);
    }
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    font-family: sans-serif;
    color: #333;
    background-color: #f8f9fa;
    border-top: 1px solid #e9ecef;
  }
  .footer-brand {
    flex: 1;
  }
  .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
  }
  .tagline {
    color: #7f8c8d;
    font-size: 0.95rem;
    line-height: 1.4;
  }
  .footer-right-stack {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    text-decoration: none;
    color: #3498db;
    font-weight: 500;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #2980b9;
    text-decoration: underline;
  }
  .footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
  }
  .footer-legal-links a {
    text-decoration: none;
    color: #95a5a6;
  }
  .footer-legal-links a:hover {
    color: #7f8c8d;
    text-decoration: underline;
  }
  .footer-bottom {
    border-top: 1px solid #dee2e6;
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 0.9rem;
  }
  .footer-contacts {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
  }
  .footer-contacts address {
    font-style: normal;
    color: #555;
  }
  .footer-contacts a {
    text-decoration: none;
    color: #3498db;
  }
  .footer-contacts a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer p {
    margin: 0;
    color: #95a5a6;
    font-size: 0.8rem;
    line-height: 1.5;
  }
  @media (min-width: 768px) {
    .footer-container {
      flex-direction: row;
      flex-wrap: wrap;
    }
    .footer-bottom {
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
      width: 100%;
    }
    .footer-contacts {
      gap: 2rem;
    }
  }
  @media (max-width: 767px) {
    .footer-nav ul {
      flex-direction: column;
      gap: 0.8rem;
    }
    .footer-legal-links {
      flex-direction: column;
      gap: 0.5rem;
    }
    .footer-contacts {
      flex-direction: column;
      align-items: flex-start;
      gap: 0.5rem;
    }
  }

.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-e {
        padding: clamp(58px, 10vw, 114px) 18px;
        background: repeating-linear-gradient(135deg, var(--bg-alt), var(--bg-alt) 16px, var(--neutral-0) 16px, var(--neutral-0) 32px);
        color: var(--fg-on-page);
    }

    .thank-mode-e .wrap {
        max-width: 720px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(28px, 4vw, 42px);
        background: var(--surface-1);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-md);
    }

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

    .thank-mode-e p {
        margin: 10px 0 0;
        color: var(--neutral-600);
    }

    .thank-mode-e a {
        display: inline-block;
        margin-top: 16px;
        padding: 9px 14px;
        border-radius: var(--radius-sm);
        text-decoration: none;
        border: 1px solid var(--border-on-surface);
        color: var(--fg-on-page);
    }

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

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

.header-logo a {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}
.header-logo a:hover {
    color: var(--accent);
}

.header-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
}
.nav-link:hover {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
}
.nav-link[href="index.html"] {
    color: var(--brand);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--gap);
}

.btn-search,
.btn-menu {
    background: var(--btn-ghost-bg);
    border: 1px solid var(--border-on-surface-light);
    border-radius: var(--radius-md);
    color: var(--fg-on-surface);
    cursor: pointer;
    padding: calc(var(--space-y) / 1.5) calc(var(--space-x) / 1.5);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--anim-duration) var(--anim-ease);
}
.btn-search:hover,
.btn-menu:hover {
    background-color: var(--btn-ghost-bg-hover);
    border-color: var(--brand);
    color: var(--brand);
}
.btn-search:focus-visible,
.btn-menu:focus-visible {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

.btn-menu {
    display: none;
    flex-direction: column;
    gap: 4px;
}
.menu-icon {
    display: block;
    width: 22px;
    height: 2px;
    background-color: currentColor;
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
    .header-container {
        padding: calc(var(--space-y) / 1.2) calc(var(--space-x) / 1.5);
    }

    .header-nav {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--anim-duration) var(--anim-ease);
        z-index: 99;
    }
    .header-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        gap: calc(var(--gap) / 2);
        align-items: center;
    }

    .nav-link {
        width: 100%;
        text-align: center;
        padding: var(--space-y) var(--space-x);
    }

    .btn-menu {
        display: flex;
    }
    .btn-menu[aria-expanded="true"] .menu-icon:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    .btn-menu[aria-expanded="true"] .menu-icon:nth-child(2) {
        opacity: 0;
    }
    .btn-menu[aria-expanded="true"] .menu-icon:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .btn-search {
        padding: calc(var(--space-y) / 1.8) calc(var(--space-x) / 1.8);
    }
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    font-family: sans-serif;
    color: #333;
    background-color: #f8f9fa;
    border-top: 1px solid #e9ecef;
  }
  .footer-brand {
    flex: 1;
  }
  .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
  }
  .tagline {
    color: #7f8c8d;
    font-size: 0.95rem;
    line-height: 1.4;
  }
  .footer-right-stack {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    text-decoration: none;
    color: #3498db;
    font-weight: 500;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #2980b9;
    text-decoration: underline;
  }
  .footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
  }
  .footer-legal-links a {
    text-decoration: none;
    color: #95a5a6;
  }
  .footer-legal-links a:hover {
    color: #7f8c8d;
    text-decoration: underline;
  }
  .footer-bottom {
    border-top: 1px solid #dee2e6;
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 0.9rem;
  }
  .footer-contacts {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
  }
  .footer-contacts address {
    font-style: normal;
    color: #555;
  }
  .footer-contacts a {
    text-decoration: none;
    color: #3498db;
  }
  .footer-contacts a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer p {
    margin: 0;
    color: #95a5a6;
    font-size: 0.8rem;
    line-height: 1.5;
  }
  @media (min-width: 768px) {
    .footer-container {
      flex-direction: row;
      flex-wrap: wrap;
    }
    .footer-bottom {
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
      width: 100%;
    }
    .footer-contacts {
      gap: 2rem;
    }
  }
  @media (max-width: 767px) {
    .footer-nav ul {
      flex-direction: column;
      gap: 0.8rem;
    }
    .footer-legal-links {
      flex-direction: column;
      gap: 0.5rem;
    }
    .footer-contacts {
      flex-direction: column;
      align-items: flex-start;
      gap: 0.5rem;
    }
  }

.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-c {
        padding: clamp(56px, 10vw, 114px) 20px;
        background: linear-gradient(180deg, var(--bg-accent), var(--bg-page));
        color: var(--fg-on-page);
    }

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

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

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

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