:root {
  --font-family: "Epilogue", sans-serif;
  --font-size-base: 14.6px;
  --line-height-base: 1.3;

  --max-w: 1020px;
  --space-x: 0.75rem;
  --space-y: 0.78rem;
  --gap: 0.6rem;

  --radius-xl: 0.78rem;
  --radius-lg: 0.51rem;
  --radius-md: 0.43rem;
  --radius-sm: 0.24rem;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.08);
  --shadow-md: 0 3px 10px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 16px rgba(0,0,0,0.12);

  --overlay: rgba(10, 15, 25, 0.85);
  --anim-duration: 160ms;
  --anim-ease: ease;
  --random-number: 1;

  --brand: #00d4ff;
  --brand-contrast: #00111a;
  --accent: #00d4ff;
  --accent-contrast: #00111a;

  --neutral-0: #ffffff;
  --neutral-100: #e6e9f0;
  --neutral-300: #8a94a6;
  --neutral-600: #4a5568;
  --neutral-800: #1a202c;
  --neutral-900: #0a0f19;

  --bg-page: #0a0f19;
  --fg-on-page: #e6e9f0;

  --bg-alt: #111827;
  --fg-on-alt: #cbd5e0;

  --surface-1: #1a202c;
  --surface-2: #2d3748;
  --fg-on-surface: #e6e9f0;
  --border-on-surface: #2d3748;

  --surface-light: #2d3748;
  --fg-on-surface-light: #f7fafc;
  --border-on-surface-light: #4a5568;

  --bg-primary: #0066cc;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #0052a3;
  --ring: #00d4ff;

  --bg-accent: rgba(0, 212, 255, 0.12);
  --fg-on-accent: #00d4ff;
  --bg-accent-hover: #00b8e0;

  --link: #00d4ff;
  --link-hover: #00b8e0;

  --gradient-hero: linear-gradient(135deg, #0a0f19 0%, #111827 50%, #1a202c 100%);
  --gradient-accent: linear-gradient(90deg, #0066cc 0%, #00d4ff 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 {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}
.header__container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}
.header__logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}
.header__logo:hover,
.header__logo:focus-visible {
    color: var(--accent);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}
.header__nav {
    flex: 1;
    display: flex;
    justify-content: center;
}
.nav__list {
    display: flex;
    gap: calc(var(--gap) * 1.5);
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav__link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
}
.nav__link:hover,
.nav__link:focus-visible {
    color: var(--brand);
    background-color: var(--btn-ghost-bg-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}
.nav__link[aria-current="page"] {
    color: var(--brand);
    background-color: var(--btn-ghost-bg);
}
.header__actions {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) / 2);
}
.btn-search,
.burger {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--fg-on-surface);
    padding: calc(var(--space-y) / 2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.btn-search:hover,
.btn-search:focus-visible,
.burger:hover,
.burger:focus-visible {
    background-color: var(--btn-ghost-bg-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}
.search-icon {
    display: block;
}
.burger {
    display: none;
    flex-direction: column;
    gap: 4px;
}
.burger__line {
    display: block;
    width: 22px;
    height: 2px;
    background-color: currentColor;
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
.search-slot {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x) var(--space-y);
    display: none;
}
.search-slot[aria-hidden="false"] {
    display: block;
}
.search-form {
    display: flex;
    gap: var(--gap);
}
.search-input {
    flex: 1;
    padding: calc(var(--space-y) / 1.5) var(--space-x);
    border: 1px solid var(--border-on-surface);
    border-radius: var(--radius-lg);
    background-color: var(--bg-page);
    color: var(--fg-on-page);
    font-size: var(--font-size-base);
}
.search-input::placeholder {
    color: var(--input-placeholder);
}
.search-input:focus {
    outline: 2px solid var(--ring);
    border-color: transparent;
}
.search-submit {
    padding: calc(var(--space-y) / 1.5) calc(var(--space-x) * 1.5);
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    border: none;
    border-radius: var(--radius-lg);
    font-weight: 500;
    cursor: pointer;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.search-submit:hover,
.search-submit:focus-visible {
    background-color: var(--bg-primary-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

@media (max-width: 767px) {
    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 300px;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 999;
        display: block;
        overflow-y: auto;
    }
    .header__nav[aria-expanded="true"] {
        right: 0;
    }
    .nav__list {
        flex-direction: column;
        gap: var(--gap);
    }
    .burger {
        display: flex;
    }
    .burger[aria-expanded="true"] .burger__line:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    .burger[aria-expanded="true"] .burger__line:nth-child(2) {
        opacity: 0;
    }
    .burger[aria-expanded="true"] .burger__line:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
    .overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--overlay);
        z-index: 998;
    }
    .overlay.active {
        display: block;
    }
}

.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-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 1.5rem;
        margin-bottom: 1.5rem;
        border-bottom: 1px solid #e9ecef;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #0056b3;
    }
    .footer-nav ul {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: 1.5rem;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #0056b3;
        text-decoration: underline;
    }
    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
        gap: 2rem;
    }
    .footer-legal {
        flex: 1;
        min-width: 300px;
    }
    .copyright {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
        color: #6c757d;
    }
    .disclaimer {
        font-size: 0.8rem;
        line-height: 1.4;
        color: #6c757d;
        max-width: 600px;
    }
    .disclaimer a {
        color: #0056b3;
        text-decoration: none;
    }
    .disclaimer a:hover {
        text-decoration: underline;
    }
    .footer-contacts {
        flex: 0 0 auto;
        font-style: normal;
        line-height: 1.6;
    }
    .footer-contacts p {
        margin: 0.3rem 0;
    }
    .contact-phone a,
    .contact-email a {
        color: #333;
        text-decoration: none;
    }
    .contact-phone a:hover,
    .contact-email a:hover {
        color: #0056b3;
        text-decoration: underline;
    }
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            align-items: flex-start;
            gap: 1rem;
        }
        .footer-nav ul {
            gap: 1rem;
        }
        .footer-bottom {
            flex-direction: column;
            gap: 1.5rem;
        }
        .footer-legal {
            min-width: 100%;
        }
    }

.cookie-cv1 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        background: var(--accent);
        color: var(--accent-contrast);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv1__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv1__text p {
        margin: 0;
        opacity: .95;
    }

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

    .cookie-cv1__actions button {
        border: 1px solid rgba(0, 0, 0, 0.12);
        background: rgba(255, 255, 255, 0.2);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-cv1__actions button[data-choice='accept'] {
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    @media (max-width: 760px) {
        .cookie-cv1__wrap {
            grid-template-columns: 1fr;
        }
    }

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

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

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

    .hero-arc-v2 .subtitle {
        margin: 0;
        max-width: 58ch;
        color: var(--fg-on-surface-light);
    }

    .hero-arc-v2 .split {
        display: grid;
        grid-template-columns:1.1fr .9fr;
        gap: calc(var(--gap) * 1.4);
        align-items: start;
    }

    .hero-arc-v2 .desc {
        margin: 0;
        max-width: 60ch;
    }

    .hero-arc-v2 .actions {
        display: grid;
        gap: .7rem;
        justify-items: start;
    }

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

    .hero-arc-v2 .actions a:nth-child(even) {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

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

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

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

    .hero-arc-v2 .rail div {
        padding: 1rem var(--space-x);
        background: var(--surface-1);
        display: grid;
        gap: .3rem;
    }

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

    .hero-arc-v2 strong {
        font-size: 1.05rem;
    }

    @media (max-width: 900px) {
        .hero-arc-v2 .split {
            grid-template-columns:1fr;
        }

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

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

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

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

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

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

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

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

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

    }

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

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

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

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

        transform: translateY(-18px);
    }

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

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

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

    .index-recommendations-steps__step {
        position: relative;

        transform: translateY(26px);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        transform: translateY(20px);
    }

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

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

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

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

        transform: translateY(30px);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}
.header__container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}
.header__logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}
.header__logo:hover,
.header__logo:focus-visible {
    color: var(--accent);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}
.header__nav {
    flex: 1;
    display: flex;
    justify-content: center;
}
.nav__list {
    display: flex;
    gap: calc(var(--gap) * 1.5);
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav__link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
}
.nav__link:hover,
.nav__link:focus-visible {
    color: var(--brand);
    background-color: var(--btn-ghost-bg-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}
.nav__link[aria-current="page"] {
    color: var(--brand);
    background-color: var(--btn-ghost-bg);
}
.header__actions {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) / 2);
}
.btn-search,
.burger {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--fg-on-surface);
    padding: calc(var(--space-y) / 2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.btn-search:hover,
.btn-search:focus-visible,
.burger:hover,
.burger:focus-visible {
    background-color: var(--btn-ghost-bg-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}
.search-icon {
    display: block;
}
.burger {
    display: none;
    flex-direction: column;
    gap: 4px;
}
.burger__line {
    display: block;
    width: 22px;
    height: 2px;
    background-color: currentColor;
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
.search-slot {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x) var(--space-y);
    display: none;
}
.search-slot[aria-hidden="false"] {
    display: block;
}
.search-form {
    display: flex;
    gap: var(--gap);
}
.search-input {
    flex: 1;
    padding: calc(var(--space-y) / 1.5) var(--space-x);
    border: 1px solid var(--border-on-surface);
    border-radius: var(--radius-lg);
    background-color: var(--bg-page);
    color: var(--fg-on-page);
    font-size: var(--font-size-base);
}
.search-input::placeholder {
    color: var(--input-placeholder);
}
.search-input:focus {
    outline: 2px solid var(--ring);
    border-color: transparent;
}
.search-submit {
    padding: calc(var(--space-y) / 1.5) calc(var(--space-x) * 1.5);
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    border: none;
    border-radius: var(--radius-lg);
    font-weight: 500;
    cursor: pointer;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.search-submit:hover,
.search-submit:focus-visible {
    background-color: var(--bg-primary-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

@media (max-width: 767px) {
    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 300px;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 999;
        display: block;
        overflow-y: auto;
    }
    .header__nav[aria-expanded="true"] {
        right: 0;
    }
    .nav__list {
        flex-direction: column;
        gap: var(--gap);
    }
    .burger {
        display: flex;
    }
    .burger[aria-expanded="true"] .burger__line:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    .burger[aria-expanded="true"] .burger__line:nth-child(2) {
        opacity: 0;
    }
    .burger[aria-expanded="true"] .burger__line:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
    .overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--overlay);
        z-index: 998;
    }
    .overlay.active {
        display: block;
    }
}

.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-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 1.5rem;
        margin-bottom: 1.5rem;
        border-bottom: 1px solid #e9ecef;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #0056b3;
    }
    .footer-nav ul {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: 1.5rem;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #0056b3;
        text-decoration: underline;
    }
    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
        gap: 2rem;
    }
    .footer-legal {
        flex: 1;
        min-width: 300px;
    }
    .copyright {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
        color: #6c757d;
    }
    .disclaimer {
        font-size: 0.8rem;
        line-height: 1.4;
        color: #6c757d;
        max-width: 600px;
    }
    .disclaimer a {
        color: #0056b3;
        text-decoration: none;
    }
    .disclaimer a:hover {
        text-decoration: underline;
    }
    .footer-contacts {
        flex: 0 0 auto;
        font-style: normal;
        line-height: 1.6;
    }
    .footer-contacts p {
        margin: 0.3rem 0;
    }
    .contact-phone a,
    .contact-email a {
        color: #333;
        text-decoration: none;
    }
    .contact-phone a:hover,
    .contact-email a:hover {
        color: #0056b3;
        text-decoration: underline;
    }
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            align-items: flex-start;
            gap: 1rem;
        }
        .footer-nav ul {
            gap: 1rem;
        }
        .footer-bottom {
            flex-direction: column;
            gap: 1.5rem;
        }
        .footer-legal {
            min-width: 100%;
        }
    }

.cookie-cv1 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        background: var(--accent);
        color: var(--accent-contrast);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv1__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv1__text p {
        margin: 0;
        opacity: .95;
    }

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

    .cookie-cv1__actions button {
        border: 1px solid rgba(0, 0, 0, 0.12);
        background: rgba(255, 255, 255, 0.2);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-cv1__actions button[data-choice='accept'] {
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    @media (max-width: 760px) {
        .cookie-cv1__wrap {
            grid-template-columns: 1fr;
        }
    }

.timeline--light-v6 {
    padding: 48px 20px;
    background: var(--bg-page);
    color: var(--fg-on-page);
}

.timeline__inner {
    max-width: 640px;
    margin: 0 auto;
}

.timeline__inner h2 {
    margin: 0 0 10px;
    font-size: clamp(22px,3.5vw,28px);
    color: var(--fg-on-page);
    font-family: var(--font-family);
}

.timeline__list--light {
    margin: 0;
    padding: 0;
    list-style: none;
    border-radius: var(--radius-xl);
    background: var(--surface-light);
    border: 1px solid var(--border-on-surface-light);
    overflow: hidden;
}

.timeline__row {
    display: grid;
    grid-template-columns: auto minmax(0,1fr);
    gap: 10px;
    padding: 8px 12px;
    border-top: 1px solid var(--border-on-surface-light);
}

.timeline__row:first-child {
    border-top: none;
}

.timeline__row-time {
    font-size: 0.8rem;
    color: var(--neutral-300);
    font-family: monospace;
}

.timeline__row-label {
    font-size: 0.9rem;
    color: var(--fg-on-surface-light);
    font-family: var(--font-family);
}

.about-mission {

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

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

    .about-mission .about-mission__q {
        font-size: clamp(22px, 4.5vw, 40px);
        margin: 0 0 .6rem;
        font-weight: 700;
        color: var(--brand);
        font-family: monospace;
    }

    .about-mission .about-mission__txt {
        margin: 0;
        max-width: var(--max-w);
        line-height: var(--line-height-base);
        color: var(--neutral-100);
    }

.identity-lv6 {
        padding: clamp(50px, 7vw, 90px) clamp(16px, 4vw, 36px);
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

    .identity-lv6__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: .9fr 1.1fr;
        gap: var(--gap);
        align-items: start;
    }

    .identity-lv6__img img {
        width: 100%;
        height: auto;
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface-light);
    }

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

    .identity-lv6__body h3 {
        margin: 0 0 10px;
        color: var(--brand);
        font-size: 1rem;
    }

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

    .identity-lv6__body ul {
        margin: 0;
        padding-left: 18px;
        display: grid;
        gap: 6px;
        color: var(--neutral-800);
    }

    @media (max-width: 820px) {
        .identity-lv6__wrap {
            grid-template-columns: 1fr;
        }
    }

.header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}
.header__container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}
.header__logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}
.header__logo:hover,
.header__logo:focus-visible {
    color: var(--accent);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}
.header__nav {
    flex: 1;
    display: flex;
    justify-content: center;
}
.nav__list {
    display: flex;
    gap: calc(var(--gap) * 1.5);
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav__link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
}
.nav__link:hover,
.nav__link:focus-visible {
    color: var(--brand);
    background-color: var(--btn-ghost-bg-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}
.nav__link[aria-current="page"] {
    color: var(--brand);
    background-color: var(--btn-ghost-bg);
}
.header__actions {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) / 2);
}
.btn-search,
.burger {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--fg-on-surface);
    padding: calc(var(--space-y) / 2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.btn-search:hover,
.btn-search:focus-visible,
.burger:hover,
.burger:focus-visible {
    background-color: var(--btn-ghost-bg-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}
.search-icon {
    display: block;
}
.burger {
    display: none;
    flex-direction: column;
    gap: 4px;
}
.burger__line {
    display: block;
    width: 22px;
    height: 2px;
    background-color: currentColor;
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
.search-slot {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x) var(--space-y);
    display: none;
}
.search-slot[aria-hidden="false"] {
    display: block;
}
.search-form {
    display: flex;
    gap: var(--gap);
}
.search-input {
    flex: 1;
    padding: calc(var(--space-y) / 1.5) var(--space-x);
    border: 1px solid var(--border-on-surface);
    border-radius: var(--radius-lg);
    background-color: var(--bg-page);
    color: var(--fg-on-page);
    font-size: var(--font-size-base);
}
.search-input::placeholder {
    color: var(--input-placeholder);
}
.search-input:focus {
    outline: 2px solid var(--ring);
    border-color: transparent;
}
.search-submit {
    padding: calc(var(--space-y) / 1.5) calc(var(--space-x) * 1.5);
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    border: none;
    border-radius: var(--radius-lg);
    font-weight: 500;
    cursor: pointer;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.search-submit:hover,
.search-submit:focus-visible {
    background-color: var(--bg-primary-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

@media (max-width: 767px) {
    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 300px;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 999;
        display: block;
        overflow-y: auto;
    }
    .header__nav[aria-expanded="true"] {
        right: 0;
    }
    .nav__list {
        flex-direction: column;
        gap: var(--gap);
    }
    .burger {
        display: flex;
    }
    .burger[aria-expanded="true"] .burger__line:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    .burger[aria-expanded="true"] .burger__line:nth-child(2) {
        opacity: 0;
    }
    .burger[aria-expanded="true"] .burger__line:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
    .overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--overlay);
        z-index: 998;
    }
    .overlay.active {
        display: block;
    }
}

.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-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 1.5rem;
        margin-bottom: 1.5rem;
        border-bottom: 1px solid #e9ecef;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #0056b3;
    }
    .footer-nav ul {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: 1.5rem;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #0056b3;
        text-decoration: underline;
    }
    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
        gap: 2rem;
    }
    .footer-legal {
        flex: 1;
        min-width: 300px;
    }
    .copyright {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
        color: #6c757d;
    }
    .disclaimer {
        font-size: 0.8rem;
        line-height: 1.4;
        color: #6c757d;
        max-width: 600px;
    }
    .disclaimer a {
        color: #0056b3;
        text-decoration: none;
    }
    .disclaimer a:hover {
        text-decoration: underline;
    }
    .footer-contacts {
        flex: 0 0 auto;
        font-style: normal;
        line-height: 1.6;
    }
    .footer-contacts p {
        margin: 0.3rem 0;
    }
    .contact-phone a,
    .contact-email a {
        color: #333;
        text-decoration: none;
    }
    .contact-phone a:hover,
    .contact-email a:hover {
        color: #0056b3;
        text-decoration: underline;
    }
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            align-items: flex-start;
            gap: 1rem;
        }
        .footer-nav ul {
            gap: 1rem;
        }
        .footer-bottom {
            flex-direction: column;
            gap: 1.5rem;
        }
        .footer-legal {
            min-width: 100%;
        }
    }

.cookie-cv1 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        background: var(--accent);
        color: var(--accent-contrast);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv1__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv1__text p {
        margin: 0;
        opacity: .95;
    }

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

    .cookie-cv1__actions button {
        border: 1px solid rgba(0, 0, 0, 0.12);
        background: rgba(255, 255, 255, 0.2);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-cv1__actions button[data-choice='accept'] {
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    @media (max-width: 760px) {
        .cookie-cv1__wrap {
            grid-template-columns: 1fr;
        }
    }

.nfsocial-v11 {
        padding: clamp(48px, 8vw, 80px) 0;
        background: linear-gradient(145deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
    }

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

    .nfsocial-v11__grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: calc(var(--gap) * 2);
        align-items: center;
    }

    .nfsocial-v11__media img {
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        width: 100%;
        display: block;
    }

    .nfsocial-v11__text h2 {
        margin-bottom: var(--space-y);
    }

    .nfsocial-v11__text p {
        margin-bottom: var(--space-y);
        opacity: .92;
    }

    .nfsocial-v11__text a {
        display: inline-block;
        padding: 12px 24px;
        border-radius: var(--radius-md);
        text-decoration: none;
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    @media (max-width: 840px) {
        .nfsocial-v11__grid {
            grid-template-columns: 1fr;
        }
    }

.hiw-panels-l4 {
        padding: clamp(3.2rem, 7vw, 5.7rem) var(--space-x);
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

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

    .hiw-panels-l4__head {
        margin-bottom: 1.2rem;
        display: flex;
        justify-content: space-between;
        gap: 1rem;
        align-items: end;
        flex-wrap: wrap;
    }

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

    .hiw-panels-l4__head p {
        margin: 0;
        color: var(--neutral-600);
        max-width: 32rem;
    }

    .hiw-panels-l4__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
        gap: var(--gap);
    }

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

    .hiw-panels-l4__badge {
        display: inline-flex;
        padding: .35rem .65rem;
        border-radius: 999px;
        background: var(--surface-2);
        color: var(--brand);
        font-weight: 700;
    }

    .hiw-panels-l4__grid h3 {
        margin: .75rem 0 .35rem;
    }

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

.plans-cv2 {
        padding: clamp(54px, 7vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

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

    .plans-cv2__head {
        margin-bottom: 16px;
    }

    .plans-cv2__head h2 {
        margin: 0;
        font-size: clamp(30px, 5vw, 48px);
    }

    .plans-cv2__head p {
        margin: 8px 0 0;
        opacity: .92;
    }

    .plans-cv2__grid {
        display: grid;
        gap: var(--gap);
        grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    }

    .plans-cv2__card {
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.12);
        padding: var(--space-y) var(--space-x);
        transition: transform var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
    }

    .plans-cv2__card.is-active {
        transform: translateY(-4px);
        border-color: var(--bg-accent);
    }

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

    .plans-cv2__line h3 {
        margin: 0;
    }

    .plans-cv2__line span {
        font-size: .82rem;
        padding: 4px 8px;
        border-radius: 999px;
        background: var(--chip-bg);
    }

    .plans-cv2__price {
        margin: 10px 0 8px;
        font-size: 1.45rem;
        font-weight: 800;
    }

    .plans-cv2__list p {
        margin: 0 0 6px;
        opacity: .92;
    }

    .plans-cv2__card button {
        width: 100%;
        margin-top: 8px;
        border: 0;
        border-radius: var(--radius-sm);
        padding: 9px 12px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

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

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

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

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

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

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

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

.features__icon--chip {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

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

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

.header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}
.header__container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}
.header__logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}
.header__logo:hover,
.header__logo:focus-visible {
    color: var(--accent);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}
.header__nav {
    flex: 1;
    display: flex;
    justify-content: center;
}
.nav__list {
    display: flex;
    gap: calc(var(--gap) * 1.5);
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav__link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
}
.nav__link:hover,
.nav__link:focus-visible {
    color: var(--brand);
    background-color: var(--btn-ghost-bg-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}
.nav__link[aria-current="page"] {
    color: var(--brand);
    background-color: var(--btn-ghost-bg);
}
.header__actions {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) / 2);
}
.btn-search,
.burger {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--fg-on-surface);
    padding: calc(var(--space-y) / 2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.btn-search:hover,
.btn-search:focus-visible,
.burger:hover,
.burger:focus-visible {
    background-color: var(--btn-ghost-bg-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}
.search-icon {
    display: block;
}
.burger {
    display: none;
    flex-direction: column;
    gap: 4px;
}
.burger__line {
    display: block;
    width: 22px;
    height: 2px;
    background-color: currentColor;
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
.search-slot {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x) var(--space-y);
    display: none;
}
.search-slot[aria-hidden="false"] {
    display: block;
}
.search-form {
    display: flex;
    gap: var(--gap);
}
.search-input {
    flex: 1;
    padding: calc(var(--space-y) / 1.5) var(--space-x);
    border: 1px solid var(--border-on-surface);
    border-radius: var(--radius-lg);
    background-color: var(--bg-page);
    color: var(--fg-on-page);
    font-size: var(--font-size-base);
}
.search-input::placeholder {
    color: var(--input-placeholder);
}
.search-input:focus {
    outline: 2px solid var(--ring);
    border-color: transparent;
}
.search-submit {
    padding: calc(var(--space-y) / 1.5) calc(var(--space-x) * 1.5);
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    border: none;
    border-radius: var(--radius-lg);
    font-weight: 500;
    cursor: pointer;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.search-submit:hover,
.search-submit:focus-visible {
    background-color: var(--bg-primary-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

@media (max-width: 767px) {
    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 300px;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 999;
        display: block;
        overflow-y: auto;
    }
    .header__nav[aria-expanded="true"] {
        right: 0;
    }
    .nav__list {
        flex-direction: column;
        gap: var(--gap);
    }
    .burger {
        display: flex;
    }
    .burger[aria-expanded="true"] .burger__line:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    .burger[aria-expanded="true"] .burger__line:nth-child(2) {
        opacity: 0;
    }
    .burger[aria-expanded="true"] .burger__line:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
    .overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--overlay);
        z-index: 998;
    }
    .overlay.active {
        display: block;
    }
}

.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-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 1.5rem;
        margin-bottom: 1.5rem;
        border-bottom: 1px solid #e9ecef;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #0056b3;
    }
    .footer-nav ul {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: 1.5rem;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #0056b3;
        text-decoration: underline;
    }
    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
        gap: 2rem;
    }
    .footer-legal {
        flex: 1;
        min-width: 300px;
    }
    .copyright {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
        color: #6c757d;
    }
    .disclaimer {
        font-size: 0.8rem;
        line-height: 1.4;
        color: #6c757d;
        max-width: 600px;
    }
    .disclaimer a {
        color: #0056b3;
        text-decoration: none;
    }
    .disclaimer a:hover {
        text-decoration: underline;
    }
    .footer-contacts {
        flex: 0 0 auto;
        font-style: normal;
        line-height: 1.6;
    }
    .footer-contacts p {
        margin: 0.3rem 0;
    }
    .contact-phone a,
    .contact-email a {
        color: #333;
        text-decoration: none;
    }
    .contact-phone a:hover,
    .contact-email a:hover {
        color: #0056b3;
        text-decoration: underline;
    }
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            align-items: flex-start;
            gap: 1rem;
        }
        .footer-nav ul {
            gap: 1rem;
        }
        .footer-bottom {
            flex-direction: column;
            gap: 1.5rem;
        }
        .footer-legal {
            min-width: 100%;
        }
    }

.cookie-cv1 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        background: var(--accent);
        color: var(--accent-contrast);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv1__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv1__text p {
        margin: 0;
        opacity: .95;
    }

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

    .cookie-cv1__actions button {
        border: 1px solid rgba(0, 0, 0, 0.12);
        background: rgba(255, 255, 255, 0.2);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-cv1__actions button[data-choice='accept'] {
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    @media (max-width: 760px) {
        .cookie-cv1__wrap {
            grid-template-columns: 1fr;
        }
    }

.nfcontacts-v11 {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    .nfcontacts-v11__shell {
        max-width: 860px;
        margin: 0 auto;
        display: grid;
        gap: 12px;
    }

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

    .nfcontacts-v11__head p {
        margin: 8px 0 0;
        opacity: .85;
    }

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

    .nfcontacts-v11 details {
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .08);
        border: 1px solid rgba(255, 255, 255, .2);
        padding: 10px 12px;
    }

    .nfcontacts-v11 summary {
        cursor: pointer;
        font-weight: 700;
    }

    .nfcontacts-v11 details div {
        margin-top: 8px;
        display: grid;
        gap: 6px;
    }

    .nfcontacts-v11 details p {
        margin: 0;
    }

    .nfcontacts-v11 details a {
        color: var(--neutral-0);
        text-decoration: underline;
    }

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

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

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

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

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

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

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

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

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

    .form-layout-f input:not([type="checkbox"]):focus, .form-layout-f textarea:focus {
        outline: 2px solid var(--ring);
        outline-offset: -1px;
    }

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

    .form-layout-f button {
        margin-top: 10px;
        border: 0;
        border-radius: var(--radius-sm);
        padding: 10px 14px;
        background: var(--gradient-accent);
        color: var(--fg-on-primary);
        font-weight: 600;
        cursor: pointer;
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .form-layout-f button:hover {
        background: var(--bg-primary-hover);
    }

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

.clarifications-c1 {

        padding: clamp(18px, 3vw, 44px);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        overflow: hidden;
        position: relative;
    }

    .clarifications-c1::before {
        content: '';
        position: absolute;
        inset: -40%;
        background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.16), transparent 55%),
        radial-gradient(circle at 70% 60%, rgba(255, 107, 53, 0.18), transparent 52%);
        filter: blur(18px);
        animation: c1Glow 6s var(--anim-ease) infinite;
        opacity: .8;
        pointer-events: none;
    }

    @keyframes c1Glow {
        0%, 100% {
            transform: translate3d(-1%, 0, 0) scale(1);
        }
        50% {
            transform: translate3d(1.5%, -1%, 0) scale(1.03);
        }
    }

    .clarifications-c1__c {
        max-width: var(--max-w);
        margin: 0 auto;
        position: relative;
    }

    .clarifications-c1__h {
        margin-bottom: clamp(14px, 2.2vw, 22px);
    }

    .clarifications-c1__title {
        margin: 0;
        font-size: clamp(24px, 4.6vw, 44px);
        line-height: 1.1;
        letter-spacing: -.02em;
    }

    .clarifications-c1__sub {
        margin: 10px 0 0;
        max-width: 70ch;
        color: rgba(255, 255, 255, .82);
    }

    .clarifications-c1__grid {
        display: grid;
        gap: 12px;
    }

    .clarifications-c1__item {
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, 0.10);
        border: 1px solid rgba(255, 255, 255, 0.16);
        box-shadow: var(--shadow-md);
        overflow: hidden;
        backdrop-filter: blur(8px);
    }

    .clarifications-c1__q {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 14px 16px;
        background: transparent;
        border: 0;
        color: inherit;
        cursor: pointer;
        text-align: left;
    }

    .clarifications-c1__dot {
        width: 10px;
        height: 10px;
        border-radius: 999px;
        background: var(--accent);
        box-shadow: 0 0 0 6px rgba(0, 0, 0, 0.12);
        flex: 0 0 auto;
        animation: c1Dot 1.8s ease-in-out infinite;
    }

    @keyframes c1Dot {
        0%, 100% {
            transform: scale(1);
            opacity: .9
        }
        50% {
            transform: scale(1.15);
            opacity: 1
        }
    }

    .clarifications-c1__qText {
        font-weight: 800;
        letter-spacing: -.01em
    }

    .clarifications-c1__chev {
        margin-left: auto;
        opacity: .85;
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .clarifications-c1__a {
        display: none;
        padding: 0 16px 16px 38px;
        color: rgba(255, 255, 255, .82);
        line-height: var(--line-height-base);
    }

    .clarifications-c1__item.is-open .clarifications-c1__chev {
        transform: rotate(180deg);
    }

    .clarifications-c1__item.is-open .clarifications-c1__a {
        display: block;
    }

    @media (prefers-reduced-motion: reduce) {
        .clarifications-c1::before, .clarifications-c1__dot {
            animation: none;
        }
    }

.header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}
.header__container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}
.header__logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}
.header__logo:hover,
.header__logo:focus-visible {
    color: var(--accent);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}
.header__nav {
    flex: 1;
    display: flex;
    justify-content: center;
}
.nav__list {
    display: flex;
    gap: calc(var(--gap) * 1.5);
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav__link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
}
.nav__link:hover,
.nav__link:focus-visible {
    color: var(--brand);
    background-color: var(--btn-ghost-bg-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}
.nav__link[aria-current="page"] {
    color: var(--brand);
    background-color: var(--btn-ghost-bg);
}
.header__actions {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) / 2);
}
.btn-search,
.burger {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--fg-on-surface);
    padding: calc(var(--space-y) / 2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.btn-search:hover,
.btn-search:focus-visible,
.burger:hover,
.burger:focus-visible {
    background-color: var(--btn-ghost-bg-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}
.search-icon {
    display: block;
}
.burger {
    display: none;
    flex-direction: column;
    gap: 4px;
}
.burger__line {
    display: block;
    width: 22px;
    height: 2px;
    background-color: currentColor;
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
.search-slot {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x) var(--space-y);
    display: none;
}
.search-slot[aria-hidden="false"] {
    display: block;
}
.search-form {
    display: flex;
    gap: var(--gap);
}
.search-input {
    flex: 1;
    padding: calc(var(--space-y) / 1.5) var(--space-x);
    border: 1px solid var(--border-on-surface);
    border-radius: var(--radius-lg);
    background-color: var(--bg-page);
    color: var(--fg-on-page);
    font-size: var(--font-size-base);
}
.search-input::placeholder {
    color: var(--input-placeholder);
}
.search-input:focus {
    outline: 2px solid var(--ring);
    border-color: transparent;
}
.search-submit {
    padding: calc(var(--space-y) / 1.5) calc(var(--space-x) * 1.5);
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    border: none;
    border-radius: var(--radius-lg);
    font-weight: 500;
    cursor: pointer;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.search-submit:hover,
.search-submit:focus-visible {
    background-color: var(--bg-primary-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

@media (max-width: 767px) {
    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 300px;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 999;
        display: block;
        overflow-y: auto;
    }
    .header__nav[aria-expanded="true"] {
        right: 0;
    }
    .nav__list {
        flex-direction: column;
        gap: var(--gap);
    }
    .burger {
        display: flex;
    }
    .burger[aria-expanded="true"] .burger__line:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    .burger[aria-expanded="true"] .burger__line:nth-child(2) {
        opacity: 0;
    }
    .burger[aria-expanded="true"] .burger__line:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
    .overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--overlay);
        z-index: 998;
    }
    .overlay.active {
        display: block;
    }
}

.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-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 1.5rem;
        margin-bottom: 1.5rem;
        border-bottom: 1px solid #e9ecef;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #0056b3;
    }
    .footer-nav ul {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: 1.5rem;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #0056b3;
        text-decoration: underline;
    }
    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
        gap: 2rem;
    }
    .footer-legal {
        flex: 1;
        min-width: 300px;
    }
    .copyright {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
        color: #6c757d;
    }
    .disclaimer {
        font-size: 0.8rem;
        line-height: 1.4;
        color: #6c757d;
        max-width: 600px;
    }
    .disclaimer a {
        color: #0056b3;
        text-decoration: none;
    }
    .disclaimer a:hover {
        text-decoration: underline;
    }
    .footer-contacts {
        flex: 0 0 auto;
        font-style: normal;
        line-height: 1.6;
    }
    .footer-contacts p {
        margin: 0.3rem 0;
    }
    .contact-phone a,
    .contact-email a {
        color: #333;
        text-decoration: none;
    }
    .contact-phone a:hover,
    .contact-email a:hover {
        color: #0056b3;
        text-decoration: underline;
    }
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            align-items: flex-start;
            gap: 1rem;
        }
        .footer-nav ul {
            gap: 1rem;
        }
        .footer-bottom {
            flex-direction: column;
            gap: 1.5rem;
        }
        .footer-legal {
            min-width: 100%;
        }
    }

.cookie-cv1 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        background: var(--accent);
        color: var(--accent-contrast);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv1__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv1__text p {
        margin: 0;
        opacity: .95;
    }

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

    .cookie-cv1__actions button {
        border: 1px solid rgba(0, 0, 0, 0.12);
        background: rgba(255, 255, 255, 0.2);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-cv1__actions button[data-choice='accept'] {
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    @media (max-width: 760px) {
        .cookie-cv1__wrap {
            grid-template-columns: 1fr;
        }
    }

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

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

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

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

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

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

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

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

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

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

.header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}
.header__container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}
.header__logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}
.header__logo:hover,
.header__logo:focus-visible {
    color: var(--accent);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}
.header__nav {
    flex: 1;
    display: flex;
    justify-content: center;
}
.nav__list {
    display: flex;
    gap: calc(var(--gap) * 1.5);
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav__link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
}
.nav__link:hover,
.nav__link:focus-visible {
    color: var(--brand);
    background-color: var(--btn-ghost-bg-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}
.nav__link[aria-current="page"] {
    color: var(--brand);
    background-color: var(--btn-ghost-bg);
}
.header__actions {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) / 2);
}
.btn-search,
.burger {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--fg-on-surface);
    padding: calc(var(--space-y) / 2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.btn-search:hover,
.btn-search:focus-visible,
.burger:hover,
.burger:focus-visible {
    background-color: var(--btn-ghost-bg-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}
.search-icon {
    display: block;
}
.burger {
    display: none;
    flex-direction: column;
    gap: 4px;
}
.burger__line {
    display: block;
    width: 22px;
    height: 2px;
    background-color: currentColor;
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
.search-slot {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x) var(--space-y);
    display: none;
}
.search-slot[aria-hidden="false"] {
    display: block;
}
.search-form {
    display: flex;
    gap: var(--gap);
}
.search-input {
    flex: 1;
    padding: calc(var(--space-y) / 1.5) var(--space-x);
    border: 1px solid var(--border-on-surface);
    border-radius: var(--radius-lg);
    background-color: var(--bg-page);
    color: var(--fg-on-page);
    font-size: var(--font-size-base);
}
.search-input::placeholder {
    color: var(--input-placeholder);
}
.search-input:focus {
    outline: 2px solid var(--ring);
    border-color: transparent;
}
.search-submit {
    padding: calc(var(--space-y) / 1.5) calc(var(--space-x) * 1.5);
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    border: none;
    border-radius: var(--radius-lg);
    font-weight: 500;
    cursor: pointer;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.search-submit:hover,
.search-submit:focus-visible {
    background-color: var(--bg-primary-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

@media (max-width: 767px) {
    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 300px;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 999;
        display: block;
        overflow-y: auto;
    }
    .header__nav[aria-expanded="true"] {
        right: 0;
    }
    .nav__list {
        flex-direction: column;
        gap: var(--gap);
    }
    .burger {
        display: flex;
    }
    .burger[aria-expanded="true"] .burger__line:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    .burger[aria-expanded="true"] .burger__line:nth-child(2) {
        opacity: 0;
    }
    .burger[aria-expanded="true"] .burger__line:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
    .overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--overlay);
        z-index: 998;
    }
    .overlay.active {
        display: block;
    }
}

.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-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 1.5rem;
        margin-bottom: 1.5rem;
        border-bottom: 1px solid #e9ecef;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #0056b3;
    }
    .footer-nav ul {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: 1.5rem;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #0056b3;
        text-decoration: underline;
    }
    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
        gap: 2rem;
    }
    .footer-legal {
        flex: 1;
        min-width: 300px;
    }
    .copyright {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
        color: #6c757d;
    }
    .disclaimer {
        font-size: 0.8rem;
        line-height: 1.4;
        color: #6c757d;
        max-width: 600px;
    }
    .disclaimer a {
        color: #0056b3;
        text-decoration: none;
    }
    .disclaimer a:hover {
        text-decoration: underline;
    }
    .footer-contacts {
        flex: 0 0 auto;
        font-style: normal;
        line-height: 1.6;
    }
    .footer-contacts p {
        margin: 0.3rem 0;
    }
    .contact-phone a,
    .contact-email a {
        color: #333;
        text-decoration: none;
    }
    .contact-phone a:hover,
    .contact-email a:hover {
        color: #0056b3;
        text-decoration: underline;
    }
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            align-items: flex-start;
            gap: 1rem;
        }
        .footer-nav ul {
            gap: 1rem;
        }
        .footer-bottom {
            flex-direction: column;
            gap: 1.5rem;
        }
        .footer-legal {
            min-width: 100%;
        }
    }

.cookie-cv1 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        background: var(--accent);
        color: var(--accent-contrast);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv1__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv1__text p {
        margin: 0;
        opacity: .95;
    }

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

    .cookie-cv1__actions button {
        border: 1px solid rgba(0, 0, 0, 0.12);
        background: rgba(255, 255, 255, 0.2);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-cv1__actions button[data-choice='accept'] {
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    @media (max-width: 760px) {
        .cookie-cv1__wrap {
            grid-template-columns: 1fr;
        }
    }

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

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

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

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

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

    .terms-layout-d ol {
        margin: 0;
        padding-left: 20px;
        display: grid;
        gap: 10px;
    }

    .terms-layout-d li {
        border: 1px solid rgba(255, 255, 255, .2);
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .05);
        padding: 12px;
    }

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

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

.header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}
.header__container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}
.header__logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}
.header__logo:hover,
.header__logo:focus-visible {
    color: var(--accent);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}
.header__nav {
    flex: 1;
    display: flex;
    justify-content: center;
}
.nav__list {
    display: flex;
    gap: calc(var(--gap) * 1.5);
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav__link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
}
.nav__link:hover,
.nav__link:focus-visible {
    color: var(--brand);
    background-color: var(--btn-ghost-bg-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}
.nav__link[aria-current="page"] {
    color: var(--brand);
    background-color: var(--btn-ghost-bg);
}
.header__actions {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) / 2);
}
.btn-search,
.burger {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--fg-on-surface);
    padding: calc(var(--space-y) / 2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.btn-search:hover,
.btn-search:focus-visible,
.burger:hover,
.burger:focus-visible {
    background-color: var(--btn-ghost-bg-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}
.search-icon {
    display: block;
}
.burger {
    display: none;
    flex-direction: column;
    gap: 4px;
}
.burger__line {
    display: block;
    width: 22px;
    height: 2px;
    background-color: currentColor;
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
.search-slot {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x) var(--space-y);
    display: none;
}
.search-slot[aria-hidden="false"] {
    display: block;
}
.search-form {
    display: flex;
    gap: var(--gap);
}
.search-input {
    flex: 1;
    padding: calc(var(--space-y) / 1.5) var(--space-x);
    border: 1px solid var(--border-on-surface);
    border-radius: var(--radius-lg);
    background-color: var(--bg-page);
    color: var(--fg-on-page);
    font-size: var(--font-size-base);
}
.search-input::placeholder {
    color: var(--input-placeholder);
}
.search-input:focus {
    outline: 2px solid var(--ring);
    border-color: transparent;
}
.search-submit {
    padding: calc(var(--space-y) / 1.5) calc(var(--space-x) * 1.5);
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    border: none;
    border-radius: var(--radius-lg);
    font-weight: 500;
    cursor: pointer;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.search-submit:hover,
.search-submit:focus-visible {
    background-color: var(--bg-primary-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

@media (max-width: 767px) {
    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 300px;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 999;
        display: block;
        overflow-y: auto;
    }
    .header__nav[aria-expanded="true"] {
        right: 0;
    }
    .nav__list {
        flex-direction: column;
        gap: var(--gap);
    }
    .burger {
        display: flex;
    }
    .burger[aria-expanded="true"] .burger__line:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    .burger[aria-expanded="true"] .burger__line:nth-child(2) {
        opacity: 0;
    }
    .burger[aria-expanded="true"] .burger__line:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
    .overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--overlay);
        z-index: 998;
    }
    .overlay.active {
        display: block;
    }
}

.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-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 1.5rem;
        margin-bottom: 1.5rem;
        border-bottom: 1px solid #e9ecef;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #0056b3;
    }
    .footer-nav ul {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: 1.5rem;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #0056b3;
        text-decoration: underline;
    }
    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
        gap: 2rem;
    }
    .footer-legal {
        flex: 1;
        min-width: 300px;
    }
    .copyright {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
        color: #6c757d;
    }
    .disclaimer {
        font-size: 0.8rem;
        line-height: 1.4;
        color: #6c757d;
        max-width: 600px;
    }
    .disclaimer a {
        color: #0056b3;
        text-decoration: none;
    }
    .disclaimer a:hover {
        text-decoration: underline;
    }
    .footer-contacts {
        flex: 0 0 auto;
        font-style: normal;
        line-height: 1.6;
    }
    .footer-contacts p {
        margin: 0.3rem 0;
    }
    .contact-phone a,
    .contact-email a {
        color: #333;
        text-decoration: none;
    }
    .contact-phone a:hover,
    .contact-email a:hover {
        color: #0056b3;
        text-decoration: underline;
    }
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            align-items: flex-start;
            gap: 1rem;
        }
        .footer-nav ul {
            gap: 1rem;
        }
        .footer-bottom {
            flex-direction: column;
            gap: 1.5rem;
        }
        .footer-legal {
            min-width: 100%;
        }
    }

.cookie-cv1 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        background: var(--accent);
        color: var(--accent-contrast);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv1__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv1__text p {
        margin: 0;
        opacity: .95;
    }

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

    .cookie-cv1__actions button {
        border: 1px solid rgba(0, 0, 0, 0.12);
        background: rgba(255, 255, 255, 0.2);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-cv1__actions button[data-choice='accept'] {
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    @media (max-width: 760px) {
        .cookie-cv1__wrap {
            grid-template-columns: 1fr;
        }
    }

.nfthank-v11 {
        padding: clamp(56px, 10vw, 114px) 18px;
        background: linear-gradient(160deg, var(--bg-primary), var(--bg-primary-hover));
        color: var(--fg-on-primary);
    }

    .nfthank-v11__box {
        max-width: 740px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(28px, 4vw, 46px);
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, .2);
        background: rgba(255, 255, 255, .08);
    }

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

    .nfthank-v11 p {
        margin: 12px 0 0;
        opacity: .9;
    }

    .nfthank-v11 a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 16px;
        border-radius: 999px;
        text-decoration: none;
        background: var(--neutral-0);
        color: var(--neutral-900);
    }

.header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}
.header__container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}
.header__logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}
.header__logo:hover,
.header__logo:focus-visible {
    color: var(--accent);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}
.header__nav {
    flex: 1;
    display: flex;
    justify-content: center;
}
.nav__list {
    display: flex;
    gap: calc(var(--gap) * 1.5);
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav__link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
}
.nav__link:hover,
.nav__link:focus-visible {
    color: var(--brand);
    background-color: var(--btn-ghost-bg-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}
.nav__link[aria-current="page"] {
    color: var(--brand);
    background-color: var(--btn-ghost-bg);
}
.header__actions {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) / 2);
}
.btn-search,
.burger {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--fg-on-surface);
    padding: calc(var(--space-y) / 2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.btn-search:hover,
.btn-search:focus-visible,
.burger:hover,
.burger:focus-visible {
    background-color: var(--btn-ghost-bg-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}
.search-icon {
    display: block;
}
.burger {
    display: none;
    flex-direction: column;
    gap: 4px;
}
.burger__line {
    display: block;
    width: 22px;
    height: 2px;
    background-color: currentColor;
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
.search-slot {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x) var(--space-y);
    display: none;
}
.search-slot[aria-hidden="false"] {
    display: block;
}
.search-form {
    display: flex;
    gap: var(--gap);
}
.search-input {
    flex: 1;
    padding: calc(var(--space-y) / 1.5) var(--space-x);
    border: 1px solid var(--border-on-surface);
    border-radius: var(--radius-lg);
    background-color: var(--bg-page);
    color: var(--fg-on-page);
    font-size: var(--font-size-base);
}
.search-input::placeholder {
    color: var(--input-placeholder);
}
.search-input:focus {
    outline: 2px solid var(--ring);
    border-color: transparent;
}
.search-submit {
    padding: calc(var(--space-y) / 1.5) calc(var(--space-x) * 1.5);
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    border: none;
    border-radius: var(--radius-lg);
    font-weight: 500;
    cursor: pointer;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.search-submit:hover,
.search-submit:focus-visible {
    background-color: var(--bg-primary-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

@media (max-width: 767px) {
    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 300px;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 999;
        display: block;
        overflow-y: auto;
    }
    .header__nav[aria-expanded="true"] {
        right: 0;
    }
    .nav__list {
        flex-direction: column;
        gap: var(--gap);
    }
    .burger {
        display: flex;
    }
    .burger[aria-expanded="true"] .burger__line:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    .burger[aria-expanded="true"] .burger__line:nth-child(2) {
        opacity: 0;
    }
    .burger[aria-expanded="true"] .burger__line:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
    .overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--overlay);
        z-index: 998;
    }
    .overlay.active {
        display: block;
    }
}

.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-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 1.5rem;
        margin-bottom: 1.5rem;
        border-bottom: 1px solid #e9ecef;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #0056b3;
    }
    .footer-nav ul {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: 1.5rem;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #0056b3;
        text-decoration: underline;
    }
    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
        gap: 2rem;
    }
    .footer-legal {
        flex: 1;
        min-width: 300px;
    }
    .copyright {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
        color: #6c757d;
    }
    .disclaimer {
        font-size: 0.8rem;
        line-height: 1.4;
        color: #6c757d;
        max-width: 600px;
    }
    .disclaimer a {
        color: #0056b3;
        text-decoration: none;
    }
    .disclaimer a:hover {
        text-decoration: underline;
    }
    .footer-contacts {
        flex: 0 0 auto;
        font-style: normal;
        line-height: 1.6;
    }
    .footer-contacts p {
        margin: 0.3rem 0;
    }
    .contact-phone a,
    .contact-email a {
        color: #333;
        text-decoration: none;
    }
    .contact-phone a:hover,
    .contact-email a:hover {
        color: #0056b3;
        text-decoration: underline;
    }
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            align-items: flex-start;
            gap: 1rem;
        }
        .footer-nav ul {
            gap: 1rem;
        }
        .footer-bottom {
            flex-direction: column;
            gap: 1.5rem;
        }
        .footer-legal {
            min-width: 100%;
        }
    }

.cookie-cv1 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        background: var(--accent);
        color: var(--accent-contrast);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv1__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv1__text p {
        margin: 0;
        opacity: .95;
    }

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

    .cookie-cv1__actions button {
        border: 1px solid rgba(0, 0, 0, 0.12);
        background: rgba(255, 255, 255, 0.2);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-cv1__actions button[data-choice='accept'] {
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    @media (max-width: 760px) {
        .cookie-cv1__wrap {
            grid-template-columns: 1fr;
        }
    }

.nf404-v9 {
        padding: clamp(56px, 10vw, 112px) 20px;
        background: var(--accent);
        color: var(--accent-contrast);
    }

    .nf404-v9__card {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        border-radius: var(--radius-xl);
        border: 1px solid rgba(255, 255, 255, .26);
        background: rgba(255, 255, 255, .08);
        padding: clamp(28px, 4vw, 46px);
    }

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

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

    .nf404-v9 a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 16px;
        border-radius: var(--radius-md);
        color: var(--accent-contrast);
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, .45);
    }