:root {
  --font-family: "Fira Sans", sans-serif;
  --font-size-base: 15.3px;
  --line-height-base: 1.67;

  --max-w: 1060px;
  --space-x: 1.04rem;
  --space-y: 1.5rem;
  --gap: 0.84rem;

  --radius-xl: 0.75rem;
  --radius-lg: 0.61rem;
  --radius-md: 0.3rem;
  --radius-sm: 0.21rem;

  --shadow-sm: 0 0px 1px rgba(0,0,0,0.06);
  --shadow-md: 0 5px 12px rgba(0,0,0,0.07);
  --shadow-lg: 0 10px 28px rgba(0,0,0,0.09);

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

  --brand: #2E7D32;
  --brand-contrast: #FFFFFF;
  --accent: #FF9800;
  --accent-contrast: #212121;

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

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

  --bg-alt: #F9F9F9;
  --fg-on-alt: #424242;

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

  --surface-light: #FAFAFA;
  --fg-on-surface-light: #757575;
  --border-on-surface-light: #EEEEEE;

  --bg-primary: #2E7D32;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #388E3C;
  --ring: rgba(46, 125, 50, 0.4);

  --bg-accent: #FFF3E0;
  --fg-on-accent: #E65100;
  --bg-accent-hover: #FFB74D;

  --link: #1B5E20;
  --link-hover: #2E7D32;

  --gradient-hero: linear-gradient(135deg, #E8F5E9 0%, #F1F8E9 100%);
  --gradient-accent: linear-gradient(90deg, #FFECB3 0%, #FFCC80 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;}

.header {
    position: sticky;
    top: var(--space-y);
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 var(--space-x);
    margin-bottom: var(--space-y);
}
.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
    border: 1px solid var(--border-on-surface-light);
}
.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);
}
.nav {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) * 2);
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}
.button-cta {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: calc(var(--space-y) / 1.5) var(--space-x);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
    border: none;
    cursor: pointer;
    display: inline-block;
}
.button-cta:hover {
    background-color: var(--bg-primary-hover);
}
.burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}
.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
    .burger {
        display: flex;
    }
    .nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: calc(var(--space-y) * 2) var(--space-x);
        gap: calc(var(--gap) * 2);
        width: 280px;
        max-width: 85vw;
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        z-index: 999;
        overflow-y: auto;
    }
    .nav.is-active {
        transform: translateX(0);
    }
    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: calc(var(--gap) / 2);
    }
    .nav-link {
        display: block;
        width: 100%;
        padding: var(--space-y) var(--space-x);
    }
    .button-cta {
        width: 100%;
        text-align: center;
    }
    .burger[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .burger[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2rem 1rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }
    .footer-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 0;
    }
    .top-row {
        border-bottom: 1px solid #e9ecef;
        padding-bottom: 1.5rem;
    }
    .middle-row {
        justify-content: center;
        text-align: center;
        padding: 1.5rem 0;
    }
    .bottom-row {
        flex-direction: column;
        gap: 0.75rem;
        padding-top: 1.5rem;
        border-top: 1px solid #e9ecef;
        text-align: center;
        font-size: 0.9rem;
        color: #6c757d;
    }
    .footer-brand .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2a9d8f;
    }
    .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: #495057;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #2a9d8f;
    }
    .footer-contacts ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
    }
    .footer-contacts li {
        color: #6c757d;
    }
    .footer-legal a {
        color: #6c757d;
        text-decoration: none;
        margin: 0 0.5rem;
    }
    .footer-legal a:hover {
        text-decoration: underline;
        color: #2a9d8f;
    }
    .footer-disclaimer {
        max-width: 800px;
        line-height: 1.4;
        margin-top: 0.5rem;
    }
    @media (max-width: 768px) {
        .footer-row {
            flex-direction: column;
            gap: 1rem;
            text-align: center;
        }
        .footer-nav ul {
            justify-content: center;
        }
        .footer-contacts ul {
            flex-direction: column;
            gap: 0.75rem;
        }
        .top-row {
            padding-bottom: 1.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;
    }

.hero-arc-v4 {
        padding: calc(var(--space-y) * 3) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-surface);
    }

    .hero-arc-v4 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns:repeat(12, minmax(0, 1fr));
        gap: var(--gap);
    }

    .hero-arc-v4 .headline {
        grid-column: 1/8;
        padding: calc(var(--space-y) * 1.2);
        border-radius: var(--radius-xl);
        background: var(--gradient-hero);
        color: var(--brand-contrast);
    }

    .hero-arc-v4 h1 {
        margin: .2rem 0 .7rem;
        font-size: clamp(2rem, 4.6vw, 3.6rem);
        line-height: 1.08;
    }

    .hero-arc-v4 .headline p {
        margin: 0;
        max-width: 52ch;
        opacity: .92;
    }

    .hero-arc-v4 .actionbox {
        grid-column: 8/13;
        background: var(--surface-2);
        border: 1px solid var(--border-on-surface);
        padding: calc(var(--space-y) * 1.2);
        border-radius: var(--radius-xl);
        display: grid;
        align-content: center;
        gap: var(--gap);
    }

    .hero-arc-v4 .actions {
        display: grid;
        gap: .65rem;
    }

    .hero-arc-v4 .actions a {
        display: inline-flex;
        justify-content: center;
        padding: .7rem 1rem;
        border-radius: var(--radius-md);
        text-decoration: none;
        font-weight: 700;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    .hero-arc-v4 .actions a:nth-child(even) {
        background: var(--surface-1);
        color: var(--fg-on-surface);
        border: 1px solid var(--border-on-surface);
    }

    .hero-arc-v4 .media {
        grid-column: 1/6;
        overflow: hidden;
        border-radius: var(--radius-xl);
        min-height: 260px;
    }

    .hero-arc-v4 img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .hero-arc-v4 .stats {
        grid-column: 6/13;
        display: grid;
        grid-template-columns:repeat(3, minmax(0, 1fr));
        gap: var(--gap);
    }

    .hero-arc-v4 .stats div {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-2);
        border: 1px solid var(--border-on-surface);
    }

    .hero-arc-v4 .stats span {
        display: block;
        color: var(--fg-on-surface-light);
        font-size: .88rem;
    }

    .hero-arc-v4 .stats strong {
        font-size: 1.1rem;
    }

    @media (max-width: 960px) {
        .hero-arc-v4 .headline, .hero-arc-v4 .actionbox, .hero-arc-v4 .media, .hero-arc-v4 .stats {
            grid-column: 1/-1;
        }

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

.next-grid-l8 {
        padding: clamp(3.2rem, 7vw, 5.7rem) var(--space-x);
        background: linear-gradient(180deg, var(--surface-1), var(--bg-alt));
        color: var(--fg-on-page);
    }

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

    .next-grid-l8__copy {
        margin-bottom: 1rem;
        text-align: center;
    }

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

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

    .next-grid-l8__copy span {
        display: block;
        margin-top: .8rem;
        color: var(--neutral-600);
    }

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

    .next-grid-l8__grid article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
        box-shadow: var(--shadow-sm);
    }

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

    .next-grid-l8__grid h3 {
        margin: .75rem 0 .35rem;
    }

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

    .next-grid-l8__foot {
        margin-top: 1rem;
        text-align: center;
    }

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

.education-struct-v2 {
        padding: calc(var(--space-y) * 2) var(--space-x);
        background: var(--bg-alt);
        color: var(--fg-on-alt)
    }

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

    .education-struct-v2 h2, .education-struct-v2 h3, .education-struct-v2 p {
        margin: 0
    }

    .education-struct-v2 a {
        text-decoration: none
    }

    .education-struct-v2 article, .education-struct-v2 .row, .education-struct-v2 details, .education-struct-v2 .program {
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        padding: .85rem
    }

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

    .education-struct-v2 .grid a, .education-struct-v2 .tiers a, .education-struct-v2 .cta a {
        display: inline-flex;
        min-height: 2.3rem;
        padding: 0 .8rem;
        align-items: center;
        border-radius: var(--radius-sm);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border: 1px solid var(--ring)
    }

    .education-struct-v2 .path {
        display: grid;
        gap: .65rem
    }

    .education-struct-v2 .path article {
        position: relative;
        padding-left: 1.25rem
    }

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

    .education-struct-v2 .table {
        display: grid;
        gap: .45rem
    }

    .education-struct-v2 .row {
        display: grid;
        grid-template-columns:1fr 1fr 1fr;
        gap: .6rem
    }

    .education-struct-v2 .combo {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: var(--gap)
    }

    .education-struct-v2 .mentors {
        display: grid;
        gap: .6rem
    }

    .education-struct-v2 .mentors article {
        display: grid;
        grid-template-columns:3rem 1fr;
        gap: .6rem;
        align-items: center
    }

    .education-struct-v2 .mentors img {
        display: block;
        width: 3rem;
        height: 3rem;
        border-radius: 50%;
        object-fit: cover
    }

    .education-struct-v2 .program {
        display: grid;
        gap: .45rem
    }

    .education-struct-v2 .modules {
        display: grid;
        gap: .6rem
    }

    .education-struct-v2 .cta {
        display: flex
    }

    @media (max-width: 900px) {
        .education-struct-v2 .grid, .education-struct-v2 .tiers, .education-struct-v2 .combo {
            grid-template-columns:1fr 1fr
        }
    }

    @media (max-width: 680px) {
        .education-struct-v2 .grid, .education-struct-v2 .tiers, .education-struct-v2 .combo, .education-struct-v2 .row {
            grid-template-columns:1fr
        }
    }

.touch-orbit {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 3vw, 36px);
        background: var(--gradient-accent);
        color: var(--accent-contrast);
    }

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

    .touch-orbit .touch-header {
        margin-bottom: 14px;
        text-align: center;
    }

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

    .touch-orbit .touch-header p {
        margin: 10px auto 0;
        max-width: 64ch;
        opacity: .92;
    }

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

    .touch-orbit .card {
        border: 1px solid rgba(255, 255, 255, .35);
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .12);
        padding: 12px;
        animation: orbitIn 420ms ease both;
    }

    .touch-orbit .card:nth-child(2) {
        animation-delay: 90ms;
    }

    .touch-orbit .card:nth-child(3) {
        animation-delay: 180ms;
    }

    .touch-orbit .icon,
    .touch-orbit .badge,
    .touch-orbit h3,
    .touch-orbit .card p {
        margin: 0 0 8px;
    }

    .touch-orbit .card a {
        color: var(--accent-contrast);
        text-decoration: underline;
    }

    .touch-orbit .main-form button:hover {
        background: var(--bg-primary-hover);
    }

    @keyframes orbitIn {
        from {
            opacity: 0;
            transform: translateY(8px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

.about-struct-v6 {
        padding: calc(var(--space-y) * 2) var(--space-x);
        background: var(--neutral-900);
        color: var(--neutral-0)
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.header {
    position: sticky;
    top: var(--space-y);
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 var(--space-x);
    margin-bottom: var(--space-y);
}
.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
    border: 1px solid var(--border-on-surface-light);
}
.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);
}
.nav {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) * 2);
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}
.button-cta {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: calc(var(--space-y) / 1.5) var(--space-x);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
    border: none;
    cursor: pointer;
    display: inline-block;
}
.button-cta:hover {
    background-color: var(--bg-primary-hover);
}
.burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}
.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
    .burger {
        display: flex;
    }
    .nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: calc(var(--space-y) * 2) var(--space-x);
        gap: calc(var(--gap) * 2);
        width: 280px;
        max-width: 85vw;
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        z-index: 999;
        overflow-y: auto;
    }
    .nav.is-active {
        transform: translateX(0);
    }
    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: calc(var(--gap) / 2);
    }
    .nav-link {
        display: block;
        width: 100%;
        padding: var(--space-y) var(--space-x);
    }
    .button-cta {
        width: 100%;
        text-align: center;
    }
    .burger[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .burger[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2rem 1rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }
    .footer-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 0;
    }
    .top-row {
        border-bottom: 1px solid #e9ecef;
        padding-bottom: 1.5rem;
    }
    .middle-row {
        justify-content: center;
        text-align: center;
        padding: 1.5rem 0;
    }
    .bottom-row {
        flex-direction: column;
        gap: 0.75rem;
        padding-top: 1.5rem;
        border-top: 1px solid #e9ecef;
        text-align: center;
        font-size: 0.9rem;
        color: #6c757d;
    }
    .footer-brand .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2a9d8f;
    }
    .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: #495057;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #2a9d8f;
    }
    .footer-contacts ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
    }
    .footer-contacts li {
        color: #6c757d;
    }
    .footer-legal a {
        color: #6c757d;
        text-decoration: none;
        margin: 0 0.5rem;
    }
    .footer-legal a:hover {
        text-decoration: underline;
        color: #2a9d8f;
    }
    .footer-disclaimer {
        max-width: 800px;
        line-height: 1.4;
        margin-top: 0.5rem;
    }
    @media (max-width: 768px) {
        .footer-row {
            flex-direction: column;
            gap: 1rem;
            text-align: center;
        }
        .footer-nav ul {
            justify-content: center;
        }
        .footer-contacts ul {
            flex-direction: column;
            gap: 0.75rem;
        }
        .top-row {
            padding-bottom: 1.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;
    }

.testimonials-struct-v4 {
        padding: calc(var(--space-y) * 2) var(--space-x);
        background: var(--bg-primary);
        color: var(--fg-on-primary)
    }

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

    .testimonials-struct-v4 h2, .testimonials-struct-v4 h3, .testimonials-struct-v4 p {
        margin: 0
    }

    .testimonials-struct-v4 article, .testimonials-struct-v4 blockquote, .testimonials-struct-v4 figure, .testimonials-struct-v4 .spotlight, .testimonials-struct-v4 .row {
        background: var(--chip-bg);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        padding: .85rem
    }

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

    .testimonials-struct-v4 .rail {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: .6rem
    }

    .testimonials-struct-v4 .stack {
        display: grid;
        gap: .65rem
    }

    .testimonials-struct-v4 .stack article {
        display: grid;
        grid-template-columns:3rem 1fr;
        gap: .6rem;
        align-items: center
    }

    .testimonials-struct-v4 img {
        display: block;
        width: 3rem;
        height: 3rem;
        border-radius: 50%;
        object-fit: cover
    }

    .testimonials-struct-v4 .table {
        display: grid;
        gap: .45rem
    }

    .testimonials-struct-v4 .row {
        display: grid;
        grid-template-columns:12rem 1fr;
        gap: .6rem
    }

    .testimonials-struct-v4 .wall {
        columns: 3;
        column-gap: var(--gap)
    }

    .testimonials-struct-v4 blockquote {
        break-inside: avoid;
        margin: 0 0 var(--gap) 0;
        display: grid;
        gap: .4rem
    }

    .testimonials-struct-v4 .slider {
        display: grid;
        grid-template-columns:repeat(2, minmax(0, 1fr));
        gap: var(--gap)
    }

    .testimonials-struct-v4 .dots {
        display: flex;
        justify-content: center;
        gap: .4rem
    }

    .testimonials-struct-v4 .dots span {
        padding: .25rem .45rem;
        border-radius: var(--radius-sm);
        background: var(--chip-bg);
        border: 1px solid var(--border-on-surface)
    }

    @media (max-width: 900px) {
        .testimonials-struct-v4 .grid, .testimonials-struct-v4 .rail, .testimonials-struct-v4 .slider {
            grid-template-columns:1fr 1fr
        }

        .testimonials-struct-v4 .wall {
            columns: 2
        }
    }

    @media (max-width: 680px) {
        .testimonials-struct-v4 .grid, .testimonials-struct-v4 .rail, .testimonials-struct-v4 .slider, .testimonials-struct-v4 .row {
            grid-template-columns:1fr
        }

        .testimonials-struct-v4 .wall {
            columns: 1
        }
    }

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

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

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

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

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

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

    .team-card__photo {
        width: 100%;
        height: 300px;
        object-fit: cover;
    }

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

    .team-card__info h3 {
        margin-bottom: 0.5rem;
        color: var(--fg-on-surface);
    }

    .team-card__role {
        color: var(--brand);
        font-weight: 500;
        margin-bottom: var(--space-y);
    }

    .team-card__info p {
        margin: 0 auto;
        color: var(--fg-on-surface-light);
        font-size: 0.95rem;
    }

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

.header {
    position: sticky;
    top: var(--space-y);
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 var(--space-x);
    margin-bottom: var(--space-y);
}
.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
    border: 1px solid var(--border-on-surface-light);
}
.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);
}
.nav {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) * 2);
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}
.button-cta {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: calc(var(--space-y) / 1.5) var(--space-x);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
    border: none;
    cursor: pointer;
    display: inline-block;
}
.button-cta:hover {
    background-color: var(--bg-primary-hover);
}
.burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}
.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
    .burger {
        display: flex;
    }
    .nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: calc(var(--space-y) * 2) var(--space-x);
        gap: calc(var(--gap) * 2);
        width: 280px;
        max-width: 85vw;
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        z-index: 999;
        overflow-y: auto;
    }
    .nav.is-active {
        transform: translateX(0);
    }
    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: calc(var(--gap) / 2);
    }
    .nav-link {
        display: block;
        width: 100%;
        padding: var(--space-y) var(--space-x);
    }
    .button-cta {
        width: 100%;
        text-align: center;
    }
    .burger[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .burger[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2rem 1rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }
    .footer-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 0;
    }
    .top-row {
        border-bottom: 1px solid #e9ecef;
        padding-bottom: 1.5rem;
    }
    .middle-row {
        justify-content: center;
        text-align: center;
        padding: 1.5rem 0;
    }
    .bottom-row {
        flex-direction: column;
        gap: 0.75rem;
        padding-top: 1.5rem;
        border-top: 1px solid #e9ecef;
        text-align: center;
        font-size: 0.9rem;
        color: #6c757d;
    }
    .footer-brand .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2a9d8f;
    }
    .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: #495057;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #2a9d8f;
    }
    .footer-contacts ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
    }
    .footer-contacts li {
        color: #6c757d;
    }
    .footer-legal a {
        color: #6c757d;
        text-decoration: none;
        margin: 0 0.5rem;
    }
    .footer-legal a:hover {
        text-decoration: underline;
        color: #2a9d8f;
    }
    .footer-disclaimer {
        max-width: 800px;
        line-height: 1.4;
        margin-top: 0.5rem;
    }
    @media (max-width: 768px) {
        .footer-row {
            flex-direction: column;
            gap: 1rem;
            text-align: center;
        }
        .footer-nav ul {
            justify-content: center;
        }
        .footer-contacts ul {
            flex-direction: column;
            gap: 0.75rem;
        }
        .top-row {
            padding-bottom: 1.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;
    }

.nfsocial-v9 {
        padding: clamp(20px, 3vw, 44px);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

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

    .nfsocial-v9__head {
        margin-bottom: 14px;
    }

    .nfsocial-v9 h2 {
        margin: 0;
        font-size: clamp(24px, 4.2vw, 40px);
    }

    .nfsocial-v9__head p {
        margin: 10px 0 0;
        opacity: .88;
    }

    .nfsocial-v9__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 12px;
    }

    .nfsocial-v9__grid article {
        border-radius: var(--radius-xl);
        border: 1px solid rgba(255, 255, 255, .18);
        background: rgba(255, 255, 255, .1);
        padding: 14px;
        display: grid;
        gap: 6px;
    }

    .nfsocial-v9__grid span {
        opacity: .9;
        font-size: .85rem;
    }

    .nfsocial-v9__grid strong {
        font-size: clamp(18px, 2.4vw, 28px);
    }

    .nfsocial-v9__grid p {
        margin: 0;
        opacity: .9;
    }

    .nfsocial-v9__grid h3 {
        margin: 6px 0 0;
        font-size: 1rem;
    }

    .nfsocial-v9__grid em {
        font-style: normal;
        opacity: .86;
    }

.capabilities-light {

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

    .capabilities-light .capabilities-light__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .capabilities-light .capabilities-light__h {
        text-align: center;
        margin-bottom: clamp(40px, 6vw, 72px);

    }

    .capabilities-light h2 {
        font-size: clamp(32px, 5vw, 48px);
        font-weight: 800;
        margin: 0 0 1rem;
        color: var(--fg-on-page);
    }

    .capabilities-light .capabilities-light__subtitle {
        font-size: clamp(16px, 2vw, 20px);
        margin: 0;
        color: var(--neutral-600);
    }

    .capabilities-light .capabilities-light__list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: clamp(20px, 3vw, 32px);
    }

    .capabilities-light .capabilities-light__card {
        background: var(--surface-1);
        border: 2px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        padding: clamp(24px, 3vw, 36px);
        display: flex;
        gap: clamp(16px, 2vw, 24px);
        transition: all var(--anim-duration) var(--anim-ease);

        transform: scale(0.95);
    }

    .capabilities-light .capabilities-light__card:hover {
        border-color: var(--brand);
        box-shadow: var(--shadow-md);
        transform: scale(1);
    }

    .capabilities-light .capabilities-light__visual {
        flex-shrink: 0;
        position: relative;
    }

    .capabilities-light .capabilities-light__number {
        width: 64px;
        height: 64px;
        background: var(--bg-accent);
        border-radius: var(--radius-lg);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 32px;
    }

    .capabilities-light .capabilities-light__content {
        flex: 1;
    }

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

    .capabilities-light .capabilities-light__card p {
        margin: 0;
        color: var(--neutral-600);
        line-height: var(--line-height-base);
    }

.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(40rem, 60%);
        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);
    }

.about-struct-v6 {
        padding: calc(var(--space-y) * 2) var(--space-x);
        background: var(--neutral-900);
        color: var(--neutral-0)
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.header {
    position: sticky;
    top: var(--space-y);
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 var(--space-x);
    margin-bottom: var(--space-y);
}
.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
    border: 1px solid var(--border-on-surface-light);
}
.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);
}
.nav {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) * 2);
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}
.button-cta {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: calc(var(--space-y) / 1.5) var(--space-x);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
    border: none;
    cursor: pointer;
    display: inline-block;
}
.button-cta:hover {
    background-color: var(--bg-primary-hover);
}
.burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}
.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
    .burger {
        display: flex;
    }
    .nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: calc(var(--space-y) * 2) var(--space-x);
        gap: calc(var(--gap) * 2);
        width: 280px;
        max-width: 85vw;
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        z-index: 999;
        overflow-y: auto;
    }
    .nav.is-active {
        transform: translateX(0);
    }
    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: calc(var(--gap) / 2);
    }
    .nav-link {
        display: block;
        width: 100%;
        padding: var(--space-y) var(--space-x);
    }
    .button-cta {
        width: 100%;
        text-align: center;
    }
    .burger[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .burger[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2rem 1rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }
    .footer-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 0;
    }
    .top-row {
        border-bottom: 1px solid #e9ecef;
        padding-bottom: 1.5rem;
    }
    .middle-row {
        justify-content: center;
        text-align: center;
        padding: 1.5rem 0;
    }
    .bottom-row {
        flex-direction: column;
        gap: 0.75rem;
        padding-top: 1.5rem;
        border-top: 1px solid #e9ecef;
        text-align: center;
        font-size: 0.9rem;
        color: #6c757d;
    }
    .footer-brand .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2a9d8f;
    }
    .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: #495057;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #2a9d8f;
    }
    .footer-contacts ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
    }
    .footer-contacts li {
        color: #6c757d;
    }
    .footer-legal a {
        color: #6c757d;
        text-decoration: none;
        margin: 0 0.5rem;
    }
    .footer-legal a:hover {
        text-decoration: underline;
        color: #2a9d8f;
    }
    .footer-disclaimer {
        max-width: 800px;
        line-height: 1.4;
        margin-top: 0.5rem;
    }
    @media (max-width: 768px) {
        .footer-row {
            flex-direction: column;
            gap: 1rem;
            text-align: center;
        }
        .footer-nav ul {
            justify-content: center;
        }
        .footer-contacts ul {
            flex-direction: column;
            gap: 0.75rem;
        }
        .top-row {
            padding-bottom: 1.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;
    }

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

    .nfform-v8__form {
        max-width: 760px;
        margin: 0 auto;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-2);
        padding: 16px;
        display: grid;
        gap: 10px;
    }

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

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

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

    .nfform-v8 label span {
        color: var(--neutral-600);
        font-size: .9rem;
    }

    .nfform-v8 input {
        width: 100%;
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        padding: 9px;
        font: inherit;
    }

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

.touch-orbit {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 3vw, 36px);
        background: var(--gradient-accent);
        color: var(--accent-contrast);
    }

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

    .touch-orbit .touch-header {
        margin-bottom: 14px;
        text-align: center;
    }

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

    .touch-orbit .touch-header p {
        margin: 10px auto 0;
        max-width: 64ch;
        opacity: .92;
    }

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

    .touch-orbit .card {
        border: 1px solid rgba(255, 255, 255, .35);
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .12);
        padding: 12px;
        animation: orbitIn 420ms ease both;
    }

    .touch-orbit .card:nth-child(2) {
        animation-delay: 90ms;
    }

    .touch-orbit .card:nth-child(3) {
        animation-delay: 180ms;
    }

    .touch-orbit .icon,
    .touch-orbit .badge,
    .touch-orbit h3,
    .touch-orbit .card p {
        margin: 0 0 8px;
    }

    .touch-orbit .card a {
        color: var(--accent-contrast);
        text-decoration: underline;
    }

    .touch-orbit .main-form button:hover {
        background: var(--bg-primary-hover);
    }

    @keyframes orbitIn {
        from {
            opacity: 0;
            transform: translateY(8px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

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

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

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

    .nfcontacts-v8__intro h2 {
        margin: 7px 0;
        font-size: clamp(28px, 4vw, 42px);
        color: var(--neutral-900);
    }

    .nfcontacts-v8__intro span {
        color: var(--neutral-600);
    }

    .nfcontacts-v8__cards {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: var(--gap);
    }

    .nfcontacts-v8__cards article {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-2);
        padding: 14px;
    }

    .nfcontacts-v8__cards h3 {
        margin: 0 0 6px;
    }

    .nfcontacts-v8__cards p {
        margin: 0;
        font-weight: 700;
    }

    .nfcontacts-v8__cards small {
        display: block;
        margin-top: 5px;
        color: var(--neutral-600);
    }

    .nfcontacts-v8__cards a {
        display: inline-block;
        margin-top: 8px;
        color: var(--link);
        text-decoration: none;
    }

.header {
    position: sticky;
    top: var(--space-y);
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 var(--space-x);
    margin-bottom: var(--space-y);
}
.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
    border: 1px solid var(--border-on-surface-light);
}
.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);
}
.nav {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) * 2);
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}
.button-cta {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: calc(var(--space-y) / 1.5) var(--space-x);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
    border: none;
    cursor: pointer;
    display: inline-block;
}
.button-cta:hover {
    background-color: var(--bg-primary-hover);
}
.burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}
.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
    .burger {
        display: flex;
    }
    .nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: calc(var(--space-y) * 2) var(--space-x);
        gap: calc(var(--gap) * 2);
        width: 280px;
        max-width: 85vw;
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        z-index: 999;
        overflow-y: auto;
    }
    .nav.is-active {
        transform: translateX(0);
    }
    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: calc(var(--gap) / 2);
    }
    .nav-link {
        display: block;
        width: 100%;
        padding: var(--space-y) var(--space-x);
    }
    .button-cta {
        width: 100%;
        text-align: center;
    }
    .burger[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .burger[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2rem 1rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }
    .footer-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 0;
    }
    .top-row {
        border-bottom: 1px solid #e9ecef;
        padding-bottom: 1.5rem;
    }
    .middle-row {
        justify-content: center;
        text-align: center;
        padding: 1.5rem 0;
    }
    .bottom-row {
        flex-direction: column;
        gap: 0.75rem;
        padding-top: 1.5rem;
        border-top: 1px solid #e9ecef;
        text-align: center;
        font-size: 0.9rem;
        color: #6c757d;
    }
    .footer-brand .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2a9d8f;
    }
    .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: #495057;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #2a9d8f;
    }
    .footer-contacts ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
    }
    .footer-contacts li {
        color: #6c757d;
    }
    .footer-legal a {
        color: #6c757d;
        text-decoration: none;
        margin: 0 0.5rem;
    }
    .footer-legal a:hover {
        text-decoration: underline;
        color: #2a9d8f;
    }
    .footer-disclaimer {
        max-width: 800px;
        line-height: 1.4;
        margin-top: 0.5rem;
    }
    @media (max-width: 768px) {
        .footer-row {
            flex-direction: column;
            gap: 1rem;
            text-align: center;
        }
        .footer-nav ul {
            justify-content: center;
        }
        .footer-contacts ul {
            flex-direction: column;
            gap: 0.75rem;
        }
        .top-row {
            padding-bottom: 1.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-a {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: linear-gradient(180deg, var(--bg-alt), var(--surface-1));
        color: var(--fg-on-page);
    }

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

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

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

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

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

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

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

.header {
    position: sticky;
    top: var(--space-y);
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 var(--space-x);
    margin-bottom: var(--space-y);
}
.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
    border: 1px solid var(--border-on-surface-light);
}
.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);
}
.nav {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) * 2);
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}
.button-cta {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: calc(var(--space-y) / 1.5) var(--space-x);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
    border: none;
    cursor: pointer;
    display: inline-block;
}
.button-cta:hover {
    background-color: var(--bg-primary-hover);
}
.burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}
.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
    .burger {
        display: flex;
    }
    .nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: calc(var(--space-y) * 2) var(--space-x);
        gap: calc(var(--gap) * 2);
        width: 280px;
        max-width: 85vw;
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        z-index: 999;
        overflow-y: auto;
    }
    .nav.is-active {
        transform: translateX(0);
    }
    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: calc(var(--gap) / 2);
    }
    .nav-link {
        display: block;
        width: 100%;
        padding: var(--space-y) var(--space-x);
    }
    .button-cta {
        width: 100%;
        text-align: center;
    }
    .burger[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .burger[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2rem 1rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }
    .footer-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 0;
    }
    .top-row {
        border-bottom: 1px solid #e9ecef;
        padding-bottom: 1.5rem;
    }
    .middle-row {
        justify-content: center;
        text-align: center;
        padding: 1.5rem 0;
    }
    .bottom-row {
        flex-direction: column;
        gap: 0.75rem;
        padding-top: 1.5rem;
        border-top: 1px solid #e9ecef;
        text-align: center;
        font-size: 0.9rem;
        color: #6c757d;
    }
    .footer-brand .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2a9d8f;
    }
    .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: #495057;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #2a9d8f;
    }
    .footer-contacts ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
    }
    .footer-contacts li {
        color: #6c757d;
    }
    .footer-legal a {
        color: #6c757d;
        text-decoration: none;
        margin: 0 0.5rem;
    }
    .footer-legal a:hover {
        text-decoration: underline;
        color: #2a9d8f;
    }
    .footer-disclaimer {
        max-width: 800px;
        line-height: 1.4;
        margin-top: 0.5rem;
    }
    @media (max-width: 768px) {
        .footer-row {
            flex-direction: column;
            gap: 1rem;
            text-align: center;
        }
        .footer-nav ul {
            justify-content: center;
        }
        .footer-contacts ul {
            flex-direction: column;
            gap: 0.75rem;
        }
        .top-row {
            padding-bottom: 1.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-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);
    }

.header {
    position: sticky;
    top: var(--space-y);
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 var(--space-x);
    margin-bottom: var(--space-y);
}
.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
    border: 1px solid var(--border-on-surface-light);
}
.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);
}
.nav {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) * 2);
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}
.button-cta {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: calc(var(--space-y) / 1.5) var(--space-x);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
    border: none;
    cursor: pointer;
    display: inline-block;
}
.button-cta:hover {
    background-color: var(--bg-primary-hover);
}
.burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}
.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
    .burger {
        display: flex;
    }
    .nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: calc(var(--space-y) * 2) var(--space-x);
        gap: calc(var(--gap) * 2);
        width: 280px;
        max-width: 85vw;
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        z-index: 999;
        overflow-y: auto;
    }
    .nav.is-active {
        transform: translateX(0);
    }
    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: calc(var(--gap) / 2);
    }
    .nav-link {
        display: block;
        width: 100%;
        padding: var(--space-y) var(--space-x);
    }
    .button-cta {
        width: 100%;
        text-align: center;
    }
    .burger[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .burger[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2rem 1rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }
    .footer-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 0;
    }
    .top-row {
        border-bottom: 1px solid #e9ecef;
        padding-bottom: 1.5rem;
    }
    .middle-row {
        justify-content: center;
        text-align: center;
        padding: 1.5rem 0;
    }
    .bottom-row {
        flex-direction: column;
        gap: 0.75rem;
        padding-top: 1.5rem;
        border-top: 1px solid #e9ecef;
        text-align: center;
        font-size: 0.9rem;
        color: #6c757d;
    }
    .footer-brand .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2a9d8f;
    }
    .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: #495057;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #2a9d8f;
    }
    .footer-contacts ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
    }
    .footer-contacts li {
        color: #6c757d;
    }
    .footer-legal a {
        color: #6c757d;
        text-decoration: none;
        margin: 0 0.5rem;
    }
    .footer-legal a:hover {
        text-decoration: underline;
        color: #2a9d8f;
    }
    .footer-disclaimer {
        max-width: 800px;
        line-height: 1.4;
        margin-top: 0.5rem;
    }
    @media (max-width: 768px) {
        .footer-row {
            flex-direction: column;
            gap: 1rem;
            text-align: center;
        }
        .footer-nav ul {
            justify-content: center;
        }
        .footer-contacts ul {
            flex-direction: column;
            gap: 0.75rem;
        }
        .top-row {
            padding-bottom: 1.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;
    }

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

    .nfthank-v9__panel {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        border: 1px solid rgba(255, 255, 255, .24);
        border-radius: var(--radius-lg);
        padding: clamp(30px, 4vw, 44px);
        background: rgba(255, 255, 255, .06);
    }

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

    .nfthank-v9 p {
        margin: 12px 0 0;
        opacity: .92;
    }

    .nfthank-v9 a {
        display: inline-block;
        margin-top: 17px;
        color: var(--accent-contrast);
        text-decoration: none;
        border-bottom: 2px solid var(--accent-contrast);
        padding-bottom: 2px;
    }

.header {
    position: sticky;
    top: var(--space-y);
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 var(--space-x);
    margin-bottom: var(--space-y);
}
.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
    border: 1px solid var(--border-on-surface-light);
}
.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);
}
.nav {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) * 2);
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}
.button-cta {
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: calc(var(--space-y) / 1.5) var(--space-x);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color var(--anim-duration) var(--anim-ease);
    border: none;
    cursor: pointer;
    display: inline-block;
}
.button-cta:hover {
    background-color: var(--bg-primary-hover);
}
.burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}
.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
    .burger {
        display: flex;
    }
    .nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: calc(var(--space-y) * 2) var(--space-x);
        gap: calc(var(--gap) * 2);
        width: 280px;
        max-width: 85vw;
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        z-index: 999;
        overflow-y: auto;
    }
    .nav.is-active {
        transform: translateX(0);
    }
    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: calc(var(--gap) / 2);
    }
    .nav-link {
        display: block;
        width: 100%;
        padding: var(--space-y) var(--space-x);
    }
    .button-cta {
        width: 100%;
        text-align: center;
    }
    .burger[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .burger[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2rem 1rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }
    .footer-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 0;
    }
    .top-row {
        border-bottom: 1px solid #e9ecef;
        padding-bottom: 1.5rem;
    }
    .middle-row {
        justify-content: center;
        text-align: center;
        padding: 1.5rem 0;
    }
    .bottom-row {
        flex-direction: column;
        gap: 0.75rem;
        padding-top: 1.5rem;
        border-top: 1px solid #e9ecef;
        text-align: center;
        font-size: 0.9rem;
        color: #6c757d;
    }
    .footer-brand .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2a9d8f;
    }
    .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: #495057;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #2a9d8f;
    }
    .footer-contacts ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
    }
    .footer-contacts li {
        color: #6c757d;
    }
    .footer-legal a {
        color: #6c757d;
        text-decoration: none;
        margin: 0 0.5rem;
    }
    .footer-legal a:hover {
        text-decoration: underline;
        color: #2a9d8f;
    }
    .footer-disclaimer {
        max-width: 800px;
        line-height: 1.4;
        margin-top: 0.5rem;
    }
    @media (max-width: 768px) {
        .footer-row {
            flex-direction: column;
            gap: 1rem;
            text-align: center;
        }
        .footer-nav ul {
            justify-content: center;
        }
        .footer-contacts ul {
            flex-direction: column;
            gap: 0.75rem;
        }
        .top-row {
            padding-bottom: 1.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;
    }

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

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

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

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

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