:root {
  --font-family: "Lato", sans-serif;
  --font-size-base: 14.9px;
  --line-height-base: 1.27;

  --max-w: 1080px;
  --space-x: 0.62rem;
  --space-y: 0.71rem;
  --gap: 0.57rem;

  --radius-xl: 0.74rem;
  --radius-lg: 0.55rem;
  --radius-md: 0.42rem;
  --radius-sm: 0.21rem;

  --shadow-sm: 0 1px 4px rgba(0,0,0,0.08);
  --shadow-md: 0 5px 8px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 22px rgba(0,0,0,0.12);

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

  --brand: #3A86FF;
  --brand-contrast: #FFFFFF;
  --accent: #FF006E;
  --accent-contrast: #FFFFFF;

  --neutral-0: #FFFFFF;
  --neutral-100: #F8F9FA;
  --neutral-300: #DEE2E6;
  --neutral-600: #6C757D;
  --neutral-800: #343A40;
  --neutral-900: #212529;

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

  --bg-alt: #F8F9FA;
  --fg-on-alt: #343A40;

  --surface-1: #FFFFFF;
  --surface-2: #F8F9FA;
  --fg-on-surface: #212529;
  --border-on-surface: #DEE2E6;

  --surface-light: rgba(58, 134, 255, 0.05);
  --fg-on-surface-light: #3A86FF;
  --border-on-surface-light: rgba(58, 134, 255, 0.2);

  --bg-primary: #3A86FF;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #2A76EF;
  --ring: rgba(58, 134, 255, 0.4);

  --bg-accent: rgba(255, 0, 110, 0.1);
  --fg-on-accent: #FF006E;
  --bg-accent-hover: #E00062;

  --link: #3A86FF;
  --link-hover: #2A76EF;

  --gradient-hero: linear-gradient(135deg, #3A86FF 0%, #8338EC 100%);
  --gradient-accent: linear-gradient(90deg, #FF006E 0%, #FB5607 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);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.logo:hover {
    color: var(--accent);
}

.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    z-index: 1001;
}

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

.main-nav {
    display: block;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) 0;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width var(--anim-duration) var(--anim-ease);
}

.nav-link:hover {
    color: var(--accent);
}

.nav-link:hover::after {
    width: 100%;
}

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

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        padding: calc(var(--space-y) * 3) var(--space-x) var(--space-y);
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
    }

    .main-nav.is-active {
        right: 0;
    }

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

    .nav-link {
        display: block;
        padding: var(--space-y) 0;
        border-bottom: 1px solid var(--border-on-surface-light);
    }

    .nav-link::after {
        display: none;
    }

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

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

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

.site-footer {
    background-color: #f8f9fa;
    color: #333;
    padding: 3rem 1rem;
    border-top: 1px solid #dee2e6;
    font-family: system-ui, -apple-system, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  .footer-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    color: #2c3e50;
  }
  .copyright {
    color: #6c757d;
    font-size: 0.9rem;
    margin: 0;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #6c757d;
    line-height: 1.4;
    margin-top: 2rem;
  }
  .footer-disclaimer a {
    color: #0066cc;
    text-decoration: none;
  }
  .footer-disclaimer a:hover {
    text-decoration: underline;
  }
  .footer-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .nav-list a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
  }
  .nav-list a:hover {
    color: #0066cc;
    text-decoration: underline;
  }
  .footer-contacts {
    line-height: 1.6;
  }
  .footer-contacts p {
    margin: 0.4rem 0;
  }
  .footer-contacts a {
    color: #0066cc;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    font-size: 0.85rem;
    color: #6c757d;
  }
  .footer-legal a {
    color: #6c757d;
    text-decoration: none;
  }
  .footer-legal a:hover {
    color: #2c3e50;
    text-decoration: underline;
  }
  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    .nav-list {
      flex-direction: column;
      gap: 0.8rem;
    }
  }

.cookie-lv8 {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1200;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 12px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 14px 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

    .cookie-lv8__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

    .cookie-lv8__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-lv8__actions button {
        border: 0;
        border-radius: 999px;
        background: var(--neutral-100);
        color: var(--fg-on-page);
        padding: 7px 11px;
        cursor: pointer;
    }

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

    @media (max-width: 760px) {
        .cookie-lv8 {
            border-radius: var(--radius-lg);
        }
    }

.wp-lang-switcher {
        position: fixed;
        right: clamp(16px, 2vw, var(--space-x, 24px));
        bottom: clamp(16px, 2vw, var(--space-y, 20px));
        z-index: 99999;
        font-family: var(--font-family, inherit);
    }

    .wp-lang-switcher__btn {
        background: var(--neutral-800, rgba(0, 0, 0, .75));
        color: var(--neutral-0, #fff);
        padding: calc(8px + var(--random-number, 1) * 2px) calc(12px + var(--random-number, 1) * 2px);
        border-radius: calc(var(--radius-lg, 14px) - var(--random-number, 1) * 2px);
        cursor: pointer;
        display: flex;
        gap: var(--gap, 10px);
        align-items: center;
        box-shadow: var(--shadow-md, 0 4px 12px rgba(0, 0, 0, 0.08));
        transition: all var(--anim-duration, 0.3s) var(--anim-ease, ease-in-out);
        border: 1px solid var(--border-on-surface, transparent);
    }

    .wp-lang-switcher__btn:hover {
        background: var(--neutral-900, rgba(0, 0, 0, .85));
        box-shadow: var(--shadow-lg, 0 8px 24px rgba(0, 0, 0, 0.12));
    }

    .wp-lang-switcher__label {
        font-size: var(--font-size-base, 16px);
    }

    .wp-lang-switcher__chev {
        font-size: 12px;
        transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease-in-out);
    }

    .wp-lang-switcher__list.open ~ .wp-lang-switcher__btn .wp-lang-switcher__chev,
    .wp-lang-switcher__btn:has(~ .wp-lang-switcher__list.open) .wp-lang-switcher__chev {
        transform: rotate(180deg);
    }

    .wp-lang-switcher__list {
        display: none;
        position: absolute;
        right: 0;
        bottom: calc(100% + 8px);
        background: var(--surface-1, #fff);
        border-radius: calc(var(--radius-lg, 14px) + var(--random-number, 1) * 2px);
        overflow: hidden;
        box-shadow: var(--shadow-lg, 0 10px 30px rgba(0, 0, 0, .2));
        min-width: calc(210px + var(--random-number, 1) * 10px);
        border: 1px solid var(--border-on-surface, #e5e7eb);
    }

    .wp-lang-switcher__list.open {
        display: block;
    }

    .wp-lang-switcher__list button,
    .wp-lang-switcher__list a {
        width: 100%;
        text-align: left;
        padding: calc(8px + var(--random-number, 1) * 2px) calc(10px + var(--random-number, 1) * 2px);
        border: 0;
        background: var(--surface-1, #fff);
        color: var(--fg-on-surface, #111827);
        cursor: pointer;
        font-family: var(--font-family, inherit);
        font-size: var(--font-size-base, 16px);
        transition: background var(--anim-duration, 0.3s) var(--anim-ease, ease-in-out);
        text-decoration: none;
        display: block;
    }

    .wp-lang-switcher__list button:hover,
    .wp-lang-switcher__list a:hover {
        background: var(--bg-alt, #f3f4f6);
    }

.intro-flag-c11 {
        padding: clamp(3.8rem, 8vw, 6.8rem) var(--space-x);
        background: linear-gradient(160deg, var(--bg-primary), var(--bg-primary-hover));
        color: var(--fg-on-primary);
    }

    .intro-flag-c11__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1.2fr .8fr;
        gap: 1rem;
    }

    .intro-flag-c11__left, .intro-flag-c11__right {
        padding: 1.1rem;
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .intro-flag-c11__tag {
        display: inline-flex;
        padding: .4rem .75rem;
        border-radius: 999px;
        background: var(--chip-bg);
    }

    .intro-flag-c11__left h1 {
        margin: .8rem 0 0;
        font-size: clamp(2.5rem, 5vw, 4.6rem);
        line-height: 1;
    }

    .intro-flag-c11__left p {
        margin: .9rem 0 0;

    }

    .intro-flag-c11__right {
        display: grid;
        align-content: center;
        gap: .65rem;
    }

    .intro-flag-c11__right div {
        font-size: clamp(2.8rem, 5vw, 4rem);
        font-weight: 700;
    }

    .intro-flag-c11__right span {
        color: rgba(255, 255, 255, .82);
    }

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

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

    .values-board-l8__wrap {
        max-width: 62rem;
        margin: 0 auto;
    }

    .values-board-l8__head {
        text-align: center;
        margin-bottom: 1.1rem;
    }

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

    .values-board-l8__head p {
        margin: .65rem auto 0;
        max-width: 40rem;
        color: var(--neutral-600);
    }

    .values-board-l8__board {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
        gap: var(--gap);
    }

    .values-board-l8__board article {
        padding: 1rem;
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
    }

    .values-board-l8__board strong {
        color: var(--brand);
    }

    .values-board-l8__board h3 {
        margin: .7rem 0 .35rem;
    }

    .values-board-l8__board p {
        margin: 0;
        color: var(--neutral-600);
    }

.touch-panorama {
        padding: clamp(56px, 8vw, 96px) 16px;
        background: var(--gradient-accent);
        color: var(--fg-on-primary);
    }

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

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

    .touch-panorama .lead {
        margin: 10px 0 14px;
    }

    .touch-panorama .lane {
        display: flex;
        gap: 10px;
        overflow-x: auto;
        padding-bottom: 6px;
        scroll-snap-type: x mandatory;
    }

    .touch-panorama article {
        min-width: 250px;
        border: 1px solid var(--chip-bg);
        border-radius: 14px;
        background: var(--chip-bg);
        padding: 12px;
        scroll-snap-align: start;
    }

    .touch-panorama article h3 {
        margin: 0 0 8px;
    }

    .touch-panorama article p {
        margin: 0 0 8px;
    }

    .touch-panorama article a {
        color: var(--fg-on-primary);
        text-decoration: underline;
    }

    .touch-panorama .main {
        display: inline-block;
        margin-top: 12px;
        text-decoration: none;
        padding: 10px 14px;
        border-radius: 10px;
        background: var(--fg-on-primary);
        color: var(--fg-on-accent);
    }

.visual-board-l4 {
        padding: clamp(3.1rem, 7vw, 5.7rem) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

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

    .visual-board-l4__head {
        margin-bottom: 1rem;
        text-align: center;
    }

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

    .visual-board-l4__head p {
        margin: .6rem 0 0;
        color: var(--neutral-600);
    }

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

    .visual-board-l4__grid figure {
        margin: 0;
        padding: .9rem;
        border-radius: var(--radius-xl);
        background: var(--bg-alt);
        border: 1px solid var(--border-on-surface-light);
    }

    .visual-board-l4__grid figcaption strong {
        color: var(--brand);
    }

    .visual-board-l4__grid h3 {
        margin: .45rem 0 .35rem;
    }

    .visual-board-l4__grid p {
        margin: 0;
        color: var(--neutral-600);
    }

    .visual-board-l4__grid img {
        display: block;
        width: 100%;
        height: 12rem;
        object-fit: cover;
        border-radius: var(--radius-md);
        margin-top: .85rem;
    }

.next-c-1 {
        padding: clamp(3.3rem, 7vw, 6rem) var(--space-x);
        background: var(--gradient-accent);
        color: var(--fg-on-primary);
    }

    .next-c-1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .next-c-1__mast {
        display: flex;
        justify-content: space-between;
        align-items: end;
        gap: 1rem;
        flex-wrap: wrap;
        margin-bottom: 1.1rem;
    }

    .next-c-1__mast p {
        margin: 0;
        color: rgba(255, 255, 255, 0.82);
    }

    .next-c-1__mast h2 {
        margin: .55rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

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

    .next-c-1__list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
        gap: var(--gap);
    }

    .next-c-1__list article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: rgba(255, 255, 255, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .next-c-1__list i {
        font-style: normal;
        display: inline-flex;
        width: 2.3rem;
        height: 2.3rem;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(255, 255, 255, .16);
    }

    .next-c-1__list h3 {
        margin: .8rem 0 .35rem;
        font-size: 1.04rem;
    }

    .next-c-1__list p {
        margin: 0;
        color: rgba(255, 255, 255, 0.82);
    }

    .next-c-1__list a {
        display: inline-block;
        margin-top: .75rem;
        color: var(--bg-accent);
        text-decoration: none;
        font-weight: 600;
    }

    /* macro-bg:next-c-1__wrap */
    .next-c-1 {
        overflow: hidden;
    }

    .next-c-1__wrap {
        background-image: linear-gradient(rgba(17, 24, 39, .28), rgba(17, 24, 39, .28)), url('https://images.pexels.com/photos/3183150/pexels-photo-3183150.jpeg?auto=compress&cs=tinysrgb&w=800');
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        border-radius: var(--radius-xl);
        overflow: hidden;
    }

.site-header {
    background-color: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.logo:hover {
    color: var(--accent);
}

.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    z-index: 1001;
}

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

.main-nav {
    display: block;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) 0;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width var(--anim-duration) var(--anim-ease);
}

.nav-link:hover {
    color: var(--accent);
}

.nav-link:hover::after {
    width: 100%;
}

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

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        padding: calc(var(--space-y) * 3) var(--space-x) var(--space-y);
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
    }

    .main-nav.is-active {
        right: 0;
    }

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

    .nav-link {
        display: block;
        padding: var(--space-y) 0;
        border-bottom: 1px solid var(--border-on-surface-light);
    }

    .nav-link::after {
        display: none;
    }

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

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

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

.site-footer {
    background-color: #f8f9fa;
    color: #333;
    padding: 3rem 1rem;
    border-top: 1px solid #dee2e6;
    font-family: system-ui, -apple-system, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  .footer-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    color: #2c3e50;
  }
  .copyright {
    color: #6c757d;
    font-size: 0.9rem;
    margin: 0;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #6c757d;
    line-height: 1.4;
    margin-top: 2rem;
  }
  .footer-disclaimer a {
    color: #0066cc;
    text-decoration: none;
  }
  .footer-disclaimer a:hover {
    text-decoration: underline;
  }
  .footer-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .nav-list a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
  }
  .nav-list a:hover {
    color: #0066cc;
    text-decoration: underline;
  }
  .footer-contacts {
    line-height: 1.6;
  }
  .footer-contacts p {
    margin: 0.4rem 0;
  }
  .footer-contacts a {
    color: #0066cc;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    font-size: 0.85rem;
    color: #6c757d;
  }
  .footer-legal a {
    color: #6c757d;
    text-decoration: none;
  }
  .footer-legal a:hover {
    color: #2c3e50;
    text-decoration: underline;
  }
  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    .nav-list {
      flex-direction: column;
      gap: 0.8rem;
    }
  }

.cookie-lv8 {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1200;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 12px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 14px 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

    .cookie-lv8__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

    .cookie-lv8__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-lv8__actions button {
        border: 0;
        border-radius: 999px;
        background: var(--neutral-100);
        color: var(--fg-on-page);
        padding: 7px 11px;
        cursor: pointer;
    }

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

    @media (max-width: 760px) {
        .cookie-lv8 {
            border-radius: var(--radius-lg);
        }
    }

.story-scene-l8 {
        padding: clamp(3.2rem, 7vw, 5.7rem) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    .story-scene-l8__wrap {
        max-width: 58rem;
        margin: 0 auto;
    }

    .story-scene-l8__panel {
        padding: 1rem;
        border-radius: var(--radius-xl);
        background: var(--bg-alt);
        border: 1px solid var(--border-on-surface-light);
    }

    .story-scene-l8__top {
        display: grid;
        grid-template-columns: 14rem 1fr;
        gap: 1rem;
        align-items: center;
    }

    .story-scene-l8__top img {
        display: block;
        width: 100%;
        border-radius: var(--radius-lg);
    }

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

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

    .story-scene-l8__copy {
        margin: .8rem 0 0;
        color: var(--neutral-600);
    }

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

    @media (max-width: 700px) {
        .story-scene-l8__top {
            grid-template-columns: 1fr;
        }
    }

.team-radiance {
        background: radial-gradient(circle at top right, rgba(255, 183, 96, 0.75), rgba(255, 183, 96, 0)), var(--bg-primary);
        color: var(--fg-on-primary);
        padding: clamp(60px, 8vw, 110px) clamp(16px, 4vw, 48px);
    }

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

    .team-radiance__h {
        text-align: center;
        margin-bottom: clamp(40px, 5vw, 72px);

        transform: translateY(-20px);
    }

    .team-radiance__h span {
        display: inline-flex;
        padding: 0.35rem 1rem;
        border-radius: 999px;
        background: rgba(255, 206, 182, 0.2);
        border: 1px solid rgba(255, 206, 182, 0.4);
        text-transform: uppercase;
        letter-spacing: 0.2em;
        font-size: 0.8rem;
    }

    .team-radiance__h h2 {
        margin: 0.75rem 0 0;
        font-size: clamp(34px, 4.8vw, 56px);
    }

    .team-radiance__list {
        display: flex;
        flex-direction: column;
        gap: clamp(20px, 3vw, 32px);
    }

    .team-radiance__item {
        background: rgba(255, 206, 182, 0.2);
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, 0.15);
        padding: clamp(20px, 3vw, 32px);
        box-shadow: 0 25px 45px rgba(6, 3, 19, 0.4);

        transform: translateY(26px);
    }

    .team-radiance__header {
        display: grid;
        grid-template-columns: auto 1fr auto;
        gap: 1rem;
        align-items: center;
        margin-bottom: 1rem;
    }

    .team-radiance__photo {
        width: 72px;
        height: 72px;
        border-radius: var(--radius-sm);
        overflow: hidden;
        border: 2px solid rgba(255, 255, 255, 0.4);
    }

    .team-radiance__photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .team-radiance__header h3 {
        margin: 0;
        font-size: 1.35rem;
    }

    .team-radiance__header p {
        margin: 0.15rem 0 0;

    }

    .team-radiance__badge {
        padding: 0.5rem 0.85rem;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.15);
        font-weight: 700;
        text-align: center;
    }

    .team-radiance__bio {
        margin: 0 0 0.75rem;
        color: rgba(255, 255, 255, 0.78);
    }

    .team-radiance__impact {
        font-weight: 600;
        color: #FFD1C0;
    }

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

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

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

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

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

    .faq-layout-f .table {
        display: grid;
        gap: 10px;
    }

    .faq-layout-f .line {
        display: grid;
        grid-template-columns: .9fr 1.1fr;
        gap: 12px;
        padding: 12px;
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--surface-1);
    }

    .faq-layout-f .q {
        font-weight: 600;
        color: var(--brand);
    }

    .faq-layout-f .a {
        color: var(--neutral-600);
    }

    @media (max-width: 780px) {
        .faq-layout-f .line {
            grid-template-columns: 1fr;
        }
    }

.identity-cv1 {
        padding: clamp(56px, 8vw, 104px) clamp(16px, 4vw, 40px);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

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

    .identity-cv1__head {
        text-align: center;
        margin-bottom: 18px;
    }

    .identity-cv1__head p {
        margin: 0;
        opacity: .9;
        letter-spacing: .08em;
        text-transform: uppercase;
    }

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

    .identity-cv1__head span {
        display: block;
        max-width: 74ch;
        margin: 0 auto;
        opacity: .92;
    }

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

    .identity-cv1__grid article {
        border: 1px solid rgba(255, 255, 255, 0.25);
        background: rgba(255, 255, 255, 0.12);
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-md);
    }

    .identity-cv1__icon {
        font-size: 1.6rem;
        margin-bottom: 8px;
    }

    .identity-cv1__grid h3 {
        margin: 0;
    }

    .identity-cv1__grid p {
        margin: 7px 0;
        opacity: .92;
    }

    .identity-cv1__grid small {
        opacity: .9;
    }

.site-header {
    background-color: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.logo:hover {
    color: var(--accent);
}

.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    z-index: 1001;
}

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

.main-nav {
    display: block;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) 0;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width var(--anim-duration) var(--anim-ease);
}

.nav-link:hover {
    color: var(--accent);
}

.nav-link:hover::after {
    width: 100%;
}

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

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        padding: calc(var(--space-y) * 3) var(--space-x) var(--space-y);
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
    }

    .main-nav.is-active {
        right: 0;
    }

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

    .nav-link {
        display: block;
        padding: var(--space-y) 0;
        border-bottom: 1px solid var(--border-on-surface-light);
    }

    .nav-link::after {
        display: none;
    }

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

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

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

.site-footer {
    background-color: #f8f9fa;
    color: #333;
    padding: 3rem 1rem;
    border-top: 1px solid #dee2e6;
    font-family: system-ui, -apple-system, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  .footer-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    color: #2c3e50;
  }
  .copyright {
    color: #6c757d;
    font-size: 0.9rem;
    margin: 0;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #6c757d;
    line-height: 1.4;
    margin-top: 2rem;
  }
  .footer-disclaimer a {
    color: #0066cc;
    text-decoration: none;
  }
  .footer-disclaimer a:hover {
    text-decoration: underline;
  }
  .footer-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .nav-list a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
  }
  .nav-list a:hover {
    color: #0066cc;
    text-decoration: underline;
  }
  .footer-contacts {
    line-height: 1.6;
  }
  .footer-contacts p {
    margin: 0.4rem 0;
  }
  .footer-contacts a {
    color: #0066cc;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    font-size: 0.85rem;
    color: #6c757d;
  }
  .footer-legal a {
    color: #6c757d;
    text-decoration: none;
  }
  .footer-legal a:hover {
    color: #2c3e50;
    text-decoration: underline;
  }
  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    .nav-list {
      flex-direction: column;
      gap: 0.8rem;
    }
  }

.cookie-lv8 {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1200;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 12px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 14px 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

    .cookie-lv8__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

    .cookie-lv8__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-lv8__actions button {
        border: 0;
        border-radius: 999px;
        background: var(--neutral-100);
        color: var(--fg-on-page);
        padding: 7px 11px;
        cursor: pointer;
    }

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

    @media (max-width: 760px) {
        .cookie-lv8 {
            border-radius: var(--radius-lg);
        }
    }

.plans-lv4 {
        padding: clamp(50px, 7vw, 90px) clamp(16px, 4vw, 36px);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    .plans-lv4__wrap {
        max-width: 920px;
        margin: 0 auto;
    }

    .plans-lv4__head {
        text-align: center;
        margin-bottom: 14px;
    }

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

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

    .plans-lv4__stack {
        display: grid;
        gap: 10px;
    }

    .plans-lv4__stack article {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--surface-light);
        padding: 12px;
    }

    .plans-lv4__line {
        display: flex;
        justify-content: space-between;
        align-items: baseline;
        gap: 8px;
    }

    .plans-lv4__line h3 {
        margin: 0;
    }

    .plans-lv4__line p {
        margin: 0;
        color: var(--brand);
        font-weight: 700;
    }

    .plans-lv4__chips {
        margin-top: 8px;
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
    }

    .plans-lv4__chips span {
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        padding: 5px 9px;
        font-size: .88rem;
    }

    .plans-lv4__stack button {
        margin-top: 10px;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 8px 11px;
    }

.hiw-zigzag-c3 {
        padding: clamp(3.6rem, 8vw, 6.1rem) var(--space-x);
        background: var(--gradient-accent);
        color: var(--accent-contrast);
    }

    .hiw-zigzag-c3__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .hiw-zigzag-c3__head {
        max-width: 42rem;
        margin: 0 auto 1.25rem;
        text-align: center;
    }

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

    .hiw-zigzag-c3__head p {
        margin: .55rem 0 0;

    }

    .hiw-zigzag-c3__grid {
        display: grid;
        gap: var(--gap);
    }

    .hiw-zigzag-c3__grid article {
        width: min(28rem, 100%);
        padding: 1rem;
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, .2);
        backdrop-filter: blur(8px);
    }

    .hiw-zigzag-c3__grid article:nth-child(odd) {
        margin-right: auto;
    }

    .hiw-zigzag-c3__grid article:nth-child(even) {
        margin-left: auto;
    }

    .hiw-zigzag-c3__num {
        display: inline-flex;
        min-width: 2.6rem;
        height: 2.6rem;
        align-items: center;
        justify-content: center;
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        font-weight: 700;
    }

    .hiw-zigzag-c3__grid h3 {
        margin: .75rem 0 .35rem;
    }

    .hiw-zigzag-c3__grid p {
        margin: 0;
        color: rgba(255, 255, 255, .9);
    }

.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);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.logo:hover {
    color: var(--accent);
}

.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    z-index: 1001;
}

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

.main-nav {
    display: block;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) 0;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width var(--anim-duration) var(--anim-ease);
}

.nav-link:hover {
    color: var(--accent);
}

.nav-link:hover::after {
    width: 100%;
}

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

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        padding: calc(var(--space-y) * 3) var(--space-x) var(--space-y);
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
    }

    .main-nav.is-active {
        right: 0;
    }

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

    .nav-link {
        display: block;
        padding: var(--space-y) 0;
        border-bottom: 1px solid var(--border-on-surface-light);
    }

    .nav-link::after {
        display: none;
    }

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

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

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

.site-footer {
    background-color: #f8f9fa;
    color: #333;
    padding: 3rem 1rem;
    border-top: 1px solid #dee2e6;
    font-family: system-ui, -apple-system, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  .footer-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    color: #2c3e50;
  }
  .copyright {
    color: #6c757d;
    font-size: 0.9rem;
    margin: 0;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #6c757d;
    line-height: 1.4;
    margin-top: 2rem;
  }
  .footer-disclaimer a {
    color: #0066cc;
    text-decoration: none;
  }
  .footer-disclaimer a:hover {
    text-decoration: underline;
  }
  .footer-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .nav-list a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
  }
  .nav-list a:hover {
    color: #0066cc;
    text-decoration: underline;
  }
  .footer-contacts {
    line-height: 1.6;
  }
  .footer-contacts p {
    margin: 0.4rem 0;
  }
  .footer-contacts a {
    color: #0066cc;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    font-size: 0.85rem;
    color: #6c757d;
  }
  .footer-legal a {
    color: #6c757d;
    text-decoration: none;
  }
  .footer-legal a:hover {
    color: #2c3e50;
    text-decoration: underline;
  }
  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    .nav-list {
      flex-direction: column;
      gap: 0.8rem;
    }
  }

.cookie-lv8 {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1200;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 12px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 14px 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

    .cookie-lv8__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

    .cookie-lv8__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-lv8__actions button {
        border: 0;
        border-radius: 999px;
        background: var(--neutral-100);
        color: var(--fg-on-page);
        padding: 7px 11px;
        cursor: pointer;
    }

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

    @media (max-width: 760px) {
        .cookie-lv8 {
            border-radius: var(--radius-lg);
        }
    }

.form-layout-e {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--gradient-accent);
        color: var(--neutral-0);
    }

    .form-layout-e .wrap {
        max-width: 820px;
        margin: 0 auto;
        background: white;
        color: black;
        border-radius: var(--radius-xl);
        padding: var(--space-x);
        box-shadow: var(--shadow-md);
    }

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

    .form-layout-e h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 40px);
        color: var(--neutral-900);
    }

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

    .form-layout-e .dark-card {
        border: 1px solid rgba(255, 255, 255, .2);
        border-radius: var(--radius-lg);
        padding: 16px;
        background: rgba(255, 255, 255, .04);
    }

    .form-layout-e label {
        display: grid;
        gap: 6px;
        margin-bottom: 10px;
        color: var(--neutral-800);
        font-weight: 500;
    }

    .form-layout-e input:not([type="checkbox"]), .form-layout-e textarea {
        width: 100%;
        border: 1px solid var(--neutral-300);
        border-radius: var(--radius-sm);
        background: var(--neutral-0);
        color: var(--neutral-900);
        padding: 9px;
        font: inherit;
    }

    .form-layout-e input::placeholder,
    .form-layout-e textarea::placeholder {
        color: var(--input-placeholder, var(--neutral-600));
    }

    .form-layout-e .end {
        display: flex;
        justify-content: space-between;
        gap: 10px;
        align-items: center;
        flex-wrap: wrap;
        margin-top: 8px;
    }

    .form-layout-e .agree {
        display: flex;
        gap: 8px;
        align-items: center;
        color: var(--neutral-600);
        font-size: 0.9em;
    }

    .form-layout-e button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 10px 14px;
        background: var(--gradient-accent);
        color: var(--accent-contrast);
        font-weight: bold;
        cursor: pointer;
        transition: opacity var(--anim-duration) var(--anim-ease);
    }

    .form-layout-e button:hover {
        opacity: 0.9;
    }

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

    .contact-layout-b .wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .contact-layout-b .section-head {
        margin-bottom: 16px;
    }

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

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

    .contact-layout-b .grid {
        display: grid;
        gap: var(--gap);
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

    .contact-layout-b .item-card {
        background: var(--surface-1);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface-light);
        padding: 16px;
        box-shadow: var(--shadow-sm);
    }

    .contact-layout-b .item-card h3 {
        margin: 0;
        color: var(--brand);
    }

    .contact-layout-b .item-card p {
        margin: 8px 0 0;
        color: var(--neutral-700, var(--neutral-600));
    }

    .contact-layout-b footer {
        margin-top: 18px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        align-items: center;
    }

    .contact-layout-b .social {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .contact-layout-b .social a {
        text-decoration: none;
        color: var(--link);
        padding: 6px 10px;
        border: 1px solid var(--border-on-surface);
        border-radius: 999px;
    }

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

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

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

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

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

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

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

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

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

.site-header {
    background-color: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.logo:hover {
    color: var(--accent);
}

.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    z-index: 1001;
}

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

.main-nav {
    display: block;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) 0;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width var(--anim-duration) var(--anim-ease);
}

.nav-link:hover {
    color: var(--accent);
}

.nav-link:hover::after {
    width: 100%;
}

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

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        padding: calc(var(--space-y) * 3) var(--space-x) var(--space-y);
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
    }

    .main-nav.is-active {
        right: 0;
    }

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

    .nav-link {
        display: block;
        padding: var(--space-y) 0;
        border-bottom: 1px solid var(--border-on-surface-light);
    }

    .nav-link::after {
        display: none;
    }

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

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

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

.site-footer {
    background-color: #f8f9fa;
    color: #333;
    padding: 3rem 1rem;
    border-top: 1px solid #dee2e6;
    font-family: system-ui, -apple-system, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  .footer-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    color: #2c3e50;
  }
  .copyright {
    color: #6c757d;
    font-size: 0.9rem;
    margin: 0;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #6c757d;
    line-height: 1.4;
    margin-top: 2rem;
  }
  .footer-disclaimer a {
    color: #0066cc;
    text-decoration: none;
  }
  .footer-disclaimer a:hover {
    text-decoration: underline;
  }
  .footer-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .nav-list a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
  }
  .nav-list a:hover {
    color: #0066cc;
    text-decoration: underline;
  }
  .footer-contacts {
    line-height: 1.6;
  }
  .footer-contacts p {
    margin: 0.4rem 0;
  }
  .footer-contacts a {
    color: #0066cc;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    font-size: 0.85rem;
    color: #6c757d;
  }
  .footer-legal a {
    color: #6c757d;
    text-decoration: none;
  }
  .footer-legal a:hover {
    color: #2c3e50;
    text-decoration: underline;
  }
  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    .nav-list {
      flex-direction: column;
      gap: 0.8rem;
    }
  }

.cookie-lv8 {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1200;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 12px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 14px 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

    .cookie-lv8__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

    .cookie-lv8__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-lv8__actions button {
        border: 0;
        border-radius: 999px;
        background: var(--neutral-100);
        color: var(--fg-on-page);
        padding: 7px 11px;
        cursor: pointer;
    }

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

    @media (max-width: 760px) {
        .cookie-lv8 {
            border-radius: var(--radius-lg);
        }
    }

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

    .terms-layout-b .wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

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

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

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

    .terms-layout-b .grid {
        display: grid;
        gap: var(--gap);
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }

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

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

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

    .terms-layout-b p, .terms-layout-b li {
        color: var(--neutral-600);
        margin-top: 0;
    }

.site-header {
    background-color: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.logo:hover {
    color: var(--accent);
}

.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    z-index: 1001;
}

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

.main-nav {
    display: block;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) 0;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width var(--anim-duration) var(--anim-ease);
}

.nav-link:hover {
    color: var(--accent);
}

.nav-link:hover::after {
    width: 100%;
}

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

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        padding: calc(var(--space-y) * 3) var(--space-x) var(--space-y);
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
    }

    .main-nav.is-active {
        right: 0;
    }

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

    .nav-link {
        display: block;
        padding: var(--space-y) 0;
        border-bottom: 1px solid var(--border-on-surface-light);
    }

    .nav-link::after {
        display: none;
    }

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

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

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

.site-footer {
    background-color: #f8f9fa;
    color: #333;
    padding: 3rem 1rem;
    border-top: 1px solid #dee2e6;
    font-family: system-ui, -apple-system, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  .footer-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    color: #2c3e50;
  }
  .copyright {
    color: #6c757d;
    font-size: 0.9rem;
    margin: 0;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #6c757d;
    line-height: 1.4;
    margin-top: 2rem;
  }
  .footer-disclaimer a {
    color: #0066cc;
    text-decoration: none;
  }
  .footer-disclaimer a:hover {
    text-decoration: underline;
  }
  .footer-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .nav-list a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
  }
  .nav-list a:hover {
    color: #0066cc;
    text-decoration: underline;
  }
  .footer-contacts {
    line-height: 1.6;
  }
  .footer-contacts p {
    margin: 0.4rem 0;
  }
  .footer-contacts a {
    color: #0066cc;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    font-size: 0.85rem;
    color: #6c757d;
  }
  .footer-legal a {
    color: #6c757d;
    text-decoration: none;
  }
  .footer-legal a:hover {
    color: #2c3e50;
    text-decoration: underline;
  }
  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    .nav-list {
      flex-direction: column;
      gap: 0.8rem;
    }
  }

.cookie-lv8 {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1200;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 12px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 14px 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

    .cookie-lv8__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

    .cookie-lv8__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-lv8__actions button {
        border: 0;
        border-radius: 999px;
        background: var(--neutral-100);
        color: var(--fg-on-page);
        padding: 7px 11px;
        cursor: pointer;
    }

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

    @media (max-width: 760px) {
        .cookie-lv8 {
            border-radius: var(--radius-lg);
        }
    }

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

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

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

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

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

    .policy-layout-f .rows {
        display: grid;
        gap: 10px;
    }

    .policy-layout-f article {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        padding: 12px;
        background: var(--surface-1);
    }

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

    .policy-layout-f .head span {
        min-width: 30px;
        height: 30px;
        display: grid;
        place-items: center;
        border-radius: 50%;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 700;
    }

    .policy-layout-f .head h3 {
        margin: 0;
    }

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

.site-header {
    background-color: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.logo:hover {
    color: var(--accent);
}

.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    z-index: 1001;
}

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

.main-nav {
    display: block;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) 0;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width var(--anim-duration) var(--anim-ease);
}

.nav-link:hover {
    color: var(--accent);
}

.nav-link:hover::after {
    width: 100%;
}

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

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        padding: calc(var(--space-y) * 3) var(--space-x) var(--space-y);
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
    }

    .main-nav.is-active {
        right: 0;
    }

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

    .nav-link {
        display: block;
        padding: var(--space-y) 0;
        border-bottom: 1px solid var(--border-on-surface-light);
    }

    .nav-link::after {
        display: none;
    }

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

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

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

.site-footer {
    background-color: #f8f9fa;
    color: #333;
    padding: 3rem 1rem;
    border-top: 1px solid #dee2e6;
    font-family: system-ui, -apple-system, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  .footer-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    color: #2c3e50;
  }
  .copyright {
    color: #6c757d;
    font-size: 0.9rem;
    margin: 0;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #6c757d;
    line-height: 1.4;
    margin-top: 2rem;
  }
  .footer-disclaimer a {
    color: #0066cc;
    text-decoration: none;
  }
  .footer-disclaimer a:hover {
    text-decoration: underline;
  }
  .footer-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .nav-list a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
  }
  .nav-list a:hover {
    color: #0066cc;
    text-decoration: underline;
  }
  .footer-contacts {
    line-height: 1.6;
  }
  .footer-contacts p {
    margin: 0.4rem 0;
  }
  .footer-contacts a {
    color: #0066cc;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    font-size: 0.85rem;
    color: #6c757d;
  }
  .footer-legal a {
    color: #6c757d;
    text-decoration: none;
  }
  .footer-legal a:hover {
    color: #2c3e50;
    text-decoration: underline;
  }
  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    .nav-list {
      flex-direction: column;
      gap: 0.8rem;
    }
  }

.cookie-lv8 {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1200;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 12px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 14px 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

    .cookie-lv8__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

    .cookie-lv8__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-lv8__actions button {
        border: 0;
        border-radius: 999px;
        background: var(--neutral-100);
        color: var(--fg-on-page);
        padding: 7px 11px;
        cursor: pointer;
    }

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

    @media (max-width: 760px) {
        .cookie-lv8 {
            border-radius: var(--radius-lg);
        }
    }

.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);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.logo:hover {
    color: var(--accent);
}

.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    z-index: 1001;
}

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

.main-nav {
    display: block;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) 0;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width var(--anim-duration) var(--anim-ease);
}

.nav-link:hover {
    color: var(--accent);
}

.nav-link:hover::after {
    width: 100%;
}

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

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        padding: calc(var(--space-y) * 3) var(--space-x) var(--space-y);
        transition: right var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
    }

    .main-nav.is-active {
        right: 0;
    }

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

    .nav-link {
        display: block;
        padding: var(--space-y) 0;
        border-bottom: 1px solid var(--border-on-surface-light);
    }

    .nav-link::after {
        display: none;
    }

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

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

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

.site-footer {
    background-color: #f8f9fa;
    color: #333;
    padding: 3rem 1rem;
    border-top: 1px solid #dee2e6;
    font-family: system-ui, -apple-system, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  .footer-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    color: #2c3e50;
  }
  .copyright {
    color: #6c757d;
    font-size: 0.9rem;
    margin: 0;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #6c757d;
    line-height: 1.4;
    margin-top: 2rem;
  }
  .footer-disclaimer a {
    color: #0066cc;
    text-decoration: none;
  }
  .footer-disclaimer a:hover {
    text-decoration: underline;
  }
  .footer-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .nav-list a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
  }
  .nav-list a:hover {
    color: #0066cc;
    text-decoration: underline;
  }
  .footer-contacts {
    line-height: 1.6;
  }
  .footer-contacts p {
    margin: 0.4rem 0;
  }
  .footer-contacts a {
    color: #0066cc;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    font-size: 0.85rem;
    color: #6c757d;
  }
  .footer-legal a {
    color: #6c757d;
    text-decoration: none;
  }
  .footer-legal a:hover {
    color: #2c3e50;
    text-decoration: underline;
  }
  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    .nav-list {
      flex-direction: column;
      gap: 0.8rem;
    }
  }

.cookie-lv8 {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1200;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 12px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 14px 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

    .cookie-lv8__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

    .cookie-lv8__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-lv8__actions button {
        border: 0;
        border-radius: 999px;
        background: var(--neutral-100);
        color: var(--fg-on-page);
        padding: 7px 11px;
        cursor: pointer;
    }

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

    @media (max-width: 760px) {
        .cookie-lv8 {
            border-radius: var(--radius-lg);
        }
    }

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