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

  --max-w: 1240px;
  --space-x: 1.14rem;
  --space-y: 1.19rem;
  --gap: 1.07rem;

  --radius-xl: 1.08rem;
  --radius-lg: 0.77rem;
  --radius-md: 0.44rem;
  --radius-sm: 0.28rem;

  --shadow-sm: 0 2px 4px rgba(0,0,0,0.07);
  --shadow-md: 0 5px 10px rgba(0,0,0,0.09);
  --shadow-lg: 0 18px 32px rgba(0,0,0,0.11);

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

  --brand: #0066cc;
  --brand-contrast: #ffffff;
  --accent: #00a8a8;
  --accent-contrast: #ffffff;

  --neutral-0: #ffffff;
  --neutral-100: #f5f7fa;
  --neutral-300: #d1d9e6;
  --neutral-600: #6c7a95;
  --neutral-800: #2c3e50;
  --neutral-900: #1a2530;

  --bg-page: #f8fafc;
  --fg-on-page: #1a2530;

  --bg-alt: #ffffff;
  --fg-on-alt: #2c3e50;

  --surface-1: #ffffff;
  --surface-2: #f5f7fa;
  --fg-on-surface: #2c3e50;
  --border-on-surface: #e1e8f0;

  --surface-light: #ffffff;
  --fg-on-surface-light: #1a2530;
  --border-on-surface-light: #d1d9e6;

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

  --bg-accent: #e6f7f7;
  --fg-on-accent: #004d4d;
  --bg-accent-hover: #008b8b;

  --link: #0066cc;
  --link-hover: #004d99;

  --gradient-hero: linear-gradient(135deg, #0066cc 0%, #00a8a8 100%);
  --gradient-accent: linear-gradient(90deg, #e6f7f7 0%, #f0f9ff 100%);

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

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

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

.logo {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--link-hover);
}

.main-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: 0.5rem 0.75rem;
    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: none;
}

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

.search-btn,
.burger-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--fg-on-surface);
    padding: 0.5rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.search-btn:hover,
.search-btn:focus-visible,
.burger-btn:hover,
.burger-btn:focus-visible {
    background-color: var(--btn-ghost-bg-hover);
    outline: none;
}
.search-icon {
    display: block;
}

.burger-btn {
    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.active {
    display: block;
    animation: slideDown var(--anim-duration) var(--anim-ease);
}

.search-form {
    display: flex;
    gap: var(--gap);
}
.search-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-on-surface-light);
    border-radius: var(--radius-lg);
    background-color: var(--surface-light);
    color: var(--fg-on-surface-light);
    font-size: var(--font-size-base);
}
.search-input::placeholder {
    color: var(--input-placeholder);
}
.search-input:focus {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}
.search-submit {
    padding: 0.75rem 1.5rem;
    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 {
    background-color: var(--bg-primary-hover);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 767px) {
    .header-container {
        padding: calc(var(--space-y) * 0.75) var(--space-x);
    }
    .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
        border-top: 1px solid var(--border-on-surface);
        display: none;
        z-index: 99;
    }
    .main-nav.active {
        display: block;
        animation: slideDown var(--anim-duration) var(--anim-ease);
    }
    .nav-list {
        flex-direction: column;
        gap: 0.5rem;
    }
    .nav-link {
        display: block;
        padding: 0.75rem 1rem;
        border-radius: var(--radius-md);
    }
    .burger-btn {
        display: flex;
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2.5rem 1.5rem 1rem;
        font-family: 'Segoe UI', system-ui, sans-serif;
        color: #333;
        background-color: #f9f9f9;
        border-top: 1px solid #e1e1e1;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 2.5rem;
        margin-bottom: 2.5rem;
    }

    .footer-brand .logo {
        font-size: 1.8rem;
        font-weight: 700;
        letter-spacing: 1px;
        color: #222;
        margin-bottom: 0.5rem;
    }

    .footer-brand .tagline {
        font-size: 0.95rem;
        color: #666;
    }

    .footer-nav h3,
    .footer-legal h3,
    .footer-contacts h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #444;
    }

    .footer-nav ul,
    .footer-legal ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li,
    .footer-legal li {
        margin-bottom: 0.65rem;
    }

    .footer-nav a,
    .footer-legal a {
        text-decoration: none;
        color: #555;
        transition: color 0.2s ease;
        font-size: 0.95rem;
    }

    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #000;
        text-decoration: underline;
    }

    .footer-contacts p {
        margin-bottom: 0.8rem;
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .footer-contacts strong {
        color: #444;
        display: inline-block;
        min-width: 70px;
    }

    .footer-contacts a {
        color: #2a5db0;
        text-decoration: none;
    }

    .footer-contacts a:hover {
        text-decoration: underline;
    }

    .footer-disclaimer {
        padding-top: 1.5rem;
        border-top: 1px solid #ddd;
        text-align: center;
        font-size: 0.85rem;
        color: #777;
        line-height: 1.5;
    }

    .footer-disclaimer a {
        color: #2a5db0;
        text-decoration: none;
    }

    .footer-disclaimer a:hover {
        text-decoration: underline;
    }

    #currentYear {
        font-weight: 600;
    }

    @media (max-width: 768px) {
        .footer-grid {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .footer-container {
            padding: 2rem 1rem 1rem;
        }
    }

.cookie-cv5 {
        position: fixed;
        inset: auto 0 0 0;
        z-index: 1200;
        background: linear-gradient(90deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    }

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

    .cookie-cv5__inner p {
        margin: 0;
    }

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

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

    .cookie-cv5__actions button[data-choice='accept'] {
        background: var(--neutral-0);
        color: var(--fg-on-page);
    }

.hero-arc-v5 {
        padding: calc(var(--space-y) * 2.4) var(--space-x);
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    .hero-arc-v5 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        gap: calc(var(--gap) * 2);
        align-items: flex-end;
        justify-content: space-between;
    }

    .hero-arc-v5 .content {
        max-width: 66ch;
    }

    .hero-arc-v5 h1 {
        margin: .25rem 0;
        font-size: clamp(2.1rem, 5vw, 4rem);
        line-height: 1.02;
        letter-spacing: -.02em;
    }

    .hero-arc-v5 .subtitle {
        margin: 0 0 .5rem;
        opacity: .9;
        font-size: 1.05rem;
    }

    .hero-arc-v5 .desc {
        margin: 0;
        opacity: .8;
        max-width: 58ch;
    }

    .hero-arc-v5 .aside {
        min-width: 280px;
        max-width: 360px;
        display: grid;
        gap: var(--gap);
    }

    .hero-arc-v5 img {
        width: 100%;
        display: block;
        aspect-ratio: 4/5;
        object-fit: cover;
        border-radius: var(--radius-xl);
    }

    .hero-arc-v5 .actions {
        display: grid;
        gap: .7rem;
    }

    .hero-arc-v5 .actions a {
        display: block;
        text-align: center;
        padding: .66rem;
        border-radius: var(--radius-md);
        text-decoration: none;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-weight: 700;
    }

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

    .hero-arc-v5 .ticker {
        max-width: var(--max-w);
        margin: calc(var(--space-y) * 1.2) auto 0;
        display: flex;
        flex-wrap: wrap;
        gap: .7rem;
        padding-top: var(--space-y);
        border-top: 1px solid var(--neutral-600);
    }

    .hero-arc-v5 .ticker span {
        padding: .45rem .7rem;
        border-radius: var(--radius-sm);
        background: var(--chip-bg);
        font-size: .9rem;
    }

    @media (max-width: 940px) {
        .hero-arc-v5 .shell {
            flex-direction: column;
            align-items: stretch;
        }

        .hero-arc-v5 .aside {
            max-width: none;
        }

        .hero-arc-v5 img {
            aspect-ratio: 16/9;
        }
    }

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

    .next-strip-l2__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        gap: 1rem;
        align-items: end;
        flex-wrap: wrap;
        background-image: linear-gradient(rgba(255, 255, 255, .86), rgba(255, 255, 255, .86)), url('https://images.pexels.com/photos/3807277/pexels-photo-3807277.jpeg?auto=compress&cs=tinysrgb&w=800');
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        border-radius: var(--radius-xl);
        overflow: hidden;
        padding: var(--gap);
        box-shadow: var(--shadow-sm)
    }

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

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

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

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

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

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

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

.faq-layout-a {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--gradient-hero);
        color: var(--brand-contrast);
    }

    .faq-layout-a .wrap {
        max-width: 900px;
        margin: 0 auto;
    }

    .faq-layout-a .section-head {
        margin-bottom: 14px;
    }

    .faq-layout-a h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 40px);
        color: var(--brand-contrast);
    }

    .faq-layout-a .section-head p {
        margin: 10px 0 0;
        opacity: .92;
        color: var(--brand-contrast);
    }

    .faq-layout-a .list {
        display: grid;
        gap: 10px;
    }

    .faq-layout-a .item {
        border-radius: var(--radius-md);
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, .3);
        background: rgba(255, 255, 255, .1);
    }

    .faq-layout-a .q {
        width: 100%;
        border: 0;
        background: transparent;
        text-align: left;
        padding: 12px;
        font: inherit;
        font-weight: 600;
        cursor: pointer;
        color: var(--brand-contrast);
    }

    .faq-layout-a .a {
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease);
    }

    .faq-layout-a .a p {
        margin: 0;
        padding: 0 12px 12px;
        opacity: .95;
        color: var(--brand-contrast);
    }

    .faq-layout-a .item.open .a {
        max-height: 240px;
    }

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

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

    .values-grid-l2__head {
        margin-bottom: 1.1rem;
    }

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

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

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

    .values-grid-l2__grid article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--bg-alt);
        border: 1px solid var(--border-on-surface-light);
    }

    .values-grid-l2__grid i {
        font-style: normal;
        font-size: 1.8rem;
        display: block;
    }

    .values-grid-l2__grid h3 {
        margin: .75rem 0 .35rem;
        font-size: 1.2rem;
        color: var(--neutral-900);
    }

    .values-grid-l2__grid p {
        margin: 0;
        color: var(--neutral-600);
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .values-grid-l2__grid span {
        display: block;
        margin-top: .55rem;
        color: var(--neutral-800);
        font-weight: 600;
        font-size: 0.9rem;
    }

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

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

.logo {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--link-hover);
}

.main-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: 0.5rem 0.75rem;
    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: none;
}

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

.search-btn,
.burger-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--fg-on-surface);
    padding: 0.5rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.search-btn:hover,
.search-btn:focus-visible,
.burger-btn:hover,
.burger-btn:focus-visible {
    background-color: var(--btn-ghost-bg-hover);
    outline: none;
}
.search-icon {
    display: block;
}

.burger-btn {
    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.active {
    display: block;
    animation: slideDown var(--anim-duration) var(--anim-ease);
}

.search-form {
    display: flex;
    gap: var(--gap);
}
.search-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-on-surface-light);
    border-radius: var(--radius-lg);
    background-color: var(--surface-light);
    color: var(--fg-on-surface-light);
    font-size: var(--font-size-base);
}
.search-input::placeholder {
    color: var(--input-placeholder);
}
.search-input:focus {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}
.search-submit {
    padding: 0.75rem 1.5rem;
    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 {
    background-color: var(--bg-primary-hover);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 767px) {
    .header-container {
        padding: calc(var(--space-y) * 0.75) var(--space-x);
    }
    .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
        border-top: 1px solid var(--border-on-surface);
        display: none;
        z-index: 99;
    }
    .main-nav.active {
        display: block;
        animation: slideDown var(--anim-duration) var(--anim-ease);
    }
    .nav-list {
        flex-direction: column;
        gap: 0.5rem;
    }
    .nav-link {
        display: block;
        padding: 0.75rem 1rem;
        border-radius: var(--radius-md);
    }
    .burger-btn {
        display: flex;
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2.5rem 1.5rem 1rem;
        font-family: 'Segoe UI', system-ui, sans-serif;
        color: #333;
        background-color: #f9f9f9;
        border-top: 1px solid #e1e1e1;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 2.5rem;
        margin-bottom: 2.5rem;
    }

    .footer-brand .logo {
        font-size: 1.8rem;
        font-weight: 700;
        letter-spacing: 1px;
        color: #222;
        margin-bottom: 0.5rem;
    }

    .footer-brand .tagline {
        font-size: 0.95rem;
        color: #666;
    }

    .footer-nav h3,
    .footer-legal h3,
    .footer-contacts h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #444;
    }

    .footer-nav ul,
    .footer-legal ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li,
    .footer-legal li {
        margin-bottom: 0.65rem;
    }

    .footer-nav a,
    .footer-legal a {
        text-decoration: none;
        color: #555;
        transition: color 0.2s ease;
        font-size: 0.95rem;
    }

    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #000;
        text-decoration: underline;
    }

    .footer-contacts p {
        margin-bottom: 0.8rem;
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .footer-contacts strong {
        color: #444;
        display: inline-block;
        min-width: 70px;
    }

    .footer-contacts a {
        color: #2a5db0;
        text-decoration: none;
    }

    .footer-contacts a:hover {
        text-decoration: underline;
    }

    .footer-disclaimer {
        padding-top: 1.5rem;
        border-top: 1px solid #ddd;
        text-align: center;
        font-size: 0.85rem;
        color: #777;
        line-height: 1.5;
    }

    .footer-disclaimer a {
        color: #2a5db0;
        text-decoration: none;
    }

    .footer-disclaimer a:hover {
        text-decoration: underline;
    }

    #currentYear {
        font-weight: 600;
    }

    @media (max-width: 768px) {
        .footer-grid {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .footer-container {
            padding: 2rem 1rem 1rem;
        }
    }

.cookie-cv5 {
        position: fixed;
        inset: auto 0 0 0;
        z-index: 1200;
        background: linear-gradient(90deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    }

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

    .cookie-cv5__inner p {
        margin: 0;
    }

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

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

    .cookie-cv5__actions button[data-choice='accept'] {
        background: var(--neutral-0);
        color: var(--fg-on-page);
    }

.profile {

        color: var(--fg-on-page);
        background: linear-gradient(135deg, var(--bg-accent) 0%, var(--bg-page) 100%);
        padding: clamp(24px, 4vw, 56px) clamp(16px, 4vw, 40px);
    }

    .profile .profile__c {
        max-width: 900px;
        margin: 0 auto;
    }

    .profile .profile__h {
        text-align: center;
        margin-bottom: clamp(32px, 5vw, 48px);
    }

    .profile h1 {
        font-size: clamp(32px, 6vw, 56px);
        margin: 0 0 0.75rem;
        color: var(--fg-on-page);
        font-weight: 700;
    }

    .profile .profile__h p {
        font-size: clamp(16px, 2.4vw, 20px);
        color: var(--neutral-600);
        margin: 0;
    }

    .profile .profile__tabs {
        display: flex;
        gap: 0.5rem;
        justify-content: center;
        margin-bottom: clamp(32px, 5vw, 48px);
        flex-wrap: wrap;
    }

    /* Dacă randomNumber este par (2) - primul copil primește order: 2 */
    .profile .profile__tabs > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    .profile .profile__tab {
        padding: 0.875rem 2rem;
        border-radius: var(--radius-lg);
        border: 2px solid var(--ring);
        background: var(--bg-page);
        color: var(--fg-on-page);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        font-weight: 600;
    }

    .profile .profile__tab:hover {
        background: var(--bg-alt);
        border-color: var(--bg-primary);
    }

    .profile .profile__tab.active {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-color: var(--bg-primary);
        box-shadow: var(--shadow-sm);
    }

    .profile .profile__panels {
        background: var(--surface-light);
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-xl);
        padding: clamp(32px, 4vw, 48px);
        box-shadow: var(--shadow-md);
    }

    .profile .profile__panel {
        display: none;
    }

    .profile .profile__panel.active {
        display: block;
    }

    .profile .profile__avatar-section {
        display: flex;
        gap: clamp(24px, 4vw, 40px);
        align-items: center;
        margin-bottom: clamp(32px, 4vw, 40px);
        padding-bottom: clamp(24px, 4vw, 32px);
        border-bottom: 1px solid var(--border-on-surface-light);
    }

    /* Dacă randomNumber este par (2) - primul copil primește order: 2 */
    .profile .profile__avatar-section > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    .profile .profile__avatar {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2.5rem;
        font-weight: 700;
        border: 4px solid var(--ring);
        box-shadow: var(--shadow-md);
        flex-shrink: 0;
    }

    .profile .profile__avatar-actions {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        flex: 1;
    }

    .profile .profile__upload-btn {
        padding: 0.75rem 1.5rem;
        border-radius: var(--radius-md);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        font-weight: 600;
        text-align: center;
        border: 2px solid var(--bg-primary);
    }

    .profile .profile__upload-btn input {
        display: none;
    }

    .profile .profile__upload-btn:hover {
        background: var(--bg-primary-hover);
    }

    .profile .profile__remove-btn {
        padding: 0.75rem 1.5rem;
        border-radius: var(--radius-md);
        background: transparent;
        color: var(--fg-on-page);
        border: 2px solid var(--ring);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        font-weight: 600;
    }

    .profile .profile__remove-btn:hover {
        border-color: var(--accent);
        color: var(--accent);
        background: rgba(239, 68, 68, 0.1);
    }

    .profile .profile__form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: clamp(20px, 3vw, 28px);
        margin-bottom: clamp(20px, 3vw, 28px);
    }

    /* Dacă randomNumber este par (2) - primul copil primește order: 2 */
    .profile .profile__form-row > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    @media (max-width: 767px) {
        .profile .profile__form-row {
            grid-template-columns: 1fr;
        }

        .profile .profile__avatar-section {
            flex-direction: column;
            text-align: center;
        }
    }

    .profile .profile__form-group {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        margin-bottom: clamp(20px, 3vw, 24px);
    }

    .profile .profile__form-group label {
        font-weight: 600;
        color: var(--fg-on-page);
        font-size: 0.875rem;
    }

    .profile .profile__form-group input,
    .profile .profile__form-group textarea {
        padding: 0.875rem 1.25rem;
        border-radius: var(--radius-md);
        border: 2px solid var(--ring);
        background: var(--bg-page);
        color: var(--fg-on-page);

        font-size: 1rem;
        outline: none;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .profile .profile__form-group input::placeholder,
    .profile .profile__form-group textarea::placeholder {
        color: var(--neutral-600);
    }

    .profile .profile__form-group input:focus,
    .profile .profile__form-group textarea:focus {
        border-color: var(--bg-primary);
        box-shadow: 0 0 0 3px var(--ring);
    }

    .profile .profile__submit {
        padding: 1rem 2.5rem;
        border-radius: var(--radius-lg);
        border: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 700;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        align-self: flex-start;
        box-shadow: var(--shadow-md);
    }

    .profile .profile__submit:hover {
        background: var(--bg-primary-hover);
        transform: translateY(-3px);
        box-shadow: var(--shadow-lg);
    }

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

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

    .support-lv1__head {
        margin-bottom: 14px;
    }

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

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

    .support-lv1__grid {
        display: grid;
        gap: 10px;
        grid-template-columns: repeat(var(--cols, 3), minmax(0, 1fr));
    }

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

    .support-lv1__grid h3 {
        margin: 0 0 6px;
    }

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

    .support-lv1__grid a {
        color: var(--link);
        text-decoration: none;
        font-weight: 600;
    }

    @media (max-width: 900px) {
        .support-lv1__grid {
            grid-template-columns: 1fr 1fr;
        }
    }

    @media (max-width: 640px) {
        .support-lv1__grid {
            grid-template-columns: 1fr;
        }
    }

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

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

.logo {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--link-hover);
}

.main-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: 0.5rem 0.75rem;
    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: none;
}

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

.search-btn,
.burger-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--fg-on-surface);
    padding: 0.5rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.search-btn:hover,
.search-btn:focus-visible,
.burger-btn:hover,
.burger-btn:focus-visible {
    background-color: var(--btn-ghost-bg-hover);
    outline: none;
}
.search-icon {
    display: block;
}

.burger-btn {
    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.active {
    display: block;
    animation: slideDown var(--anim-duration) var(--anim-ease);
}

.search-form {
    display: flex;
    gap: var(--gap);
}
.search-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-on-surface-light);
    border-radius: var(--radius-lg);
    background-color: var(--surface-light);
    color: var(--fg-on-surface-light);
    font-size: var(--font-size-base);
}
.search-input::placeholder {
    color: var(--input-placeholder);
}
.search-input:focus {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}
.search-submit {
    padding: 0.75rem 1.5rem;
    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 {
    background-color: var(--bg-primary-hover);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 767px) {
    .header-container {
        padding: calc(var(--space-y) * 0.75) var(--space-x);
    }
    .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
        border-top: 1px solid var(--border-on-surface);
        display: none;
        z-index: 99;
    }
    .main-nav.active {
        display: block;
        animation: slideDown var(--anim-duration) var(--anim-ease);
    }
    .nav-list {
        flex-direction: column;
        gap: 0.5rem;
    }
    .nav-link {
        display: block;
        padding: 0.75rem 1rem;
        border-radius: var(--radius-md);
    }
    .burger-btn {
        display: flex;
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2.5rem 1.5rem 1rem;
        font-family: 'Segoe UI', system-ui, sans-serif;
        color: #333;
        background-color: #f9f9f9;
        border-top: 1px solid #e1e1e1;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 2.5rem;
        margin-bottom: 2.5rem;
    }

    .footer-brand .logo {
        font-size: 1.8rem;
        font-weight: 700;
        letter-spacing: 1px;
        color: #222;
        margin-bottom: 0.5rem;
    }

    .footer-brand .tagline {
        font-size: 0.95rem;
        color: #666;
    }

    .footer-nav h3,
    .footer-legal h3,
    .footer-contacts h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #444;
    }

    .footer-nav ul,
    .footer-legal ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li,
    .footer-legal li {
        margin-bottom: 0.65rem;
    }

    .footer-nav a,
    .footer-legal a {
        text-decoration: none;
        color: #555;
        transition: color 0.2s ease;
        font-size: 0.95rem;
    }

    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #000;
        text-decoration: underline;
    }

    .footer-contacts p {
        margin-bottom: 0.8rem;
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .footer-contacts strong {
        color: #444;
        display: inline-block;
        min-width: 70px;
    }

    .footer-contacts a {
        color: #2a5db0;
        text-decoration: none;
    }

    .footer-contacts a:hover {
        text-decoration: underline;
    }

    .footer-disclaimer {
        padding-top: 1.5rem;
        border-top: 1px solid #ddd;
        text-align: center;
        font-size: 0.85rem;
        color: #777;
        line-height: 1.5;
    }

    .footer-disclaimer a {
        color: #2a5db0;
        text-decoration: none;
    }

    .footer-disclaimer a:hover {
        text-decoration: underline;
    }

    #currentYear {
        font-weight: 600;
    }

    @media (max-width: 768px) {
        .footer-grid {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .footer-container {
            padding: 2rem 1rem 1rem;
        }
    }

.cookie-cv5 {
        position: fixed;
        inset: auto 0 0 0;
        z-index: 1200;
        background: linear-gradient(90deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    }

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

    .cookie-cv5__inner p {
        margin: 0;
    }

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

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

    .cookie-cv5__actions button[data-choice='accept'] {
        background: var(--neutral-0);
        color: var(--fg-on-page);
    }

.settings {

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

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

    .settings .settings__tabs {
        display: flex;
        gap: 0.5rem;
        margin-bottom: var(--space-y);
        border-bottom: 1px solid var(--ring);
    }

    /* Dacă randomNumber este par (2) - primul copil primește order: 2 */
    .settings .settings__tabs > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    .settings .settings__tab {
        padding: 0.875rem 1.5rem;
        border: none;
        background: transparent;
        color: var(--neutral-600);
        font-weight: 600;
        cursor: pointer;
        border-bottom: 2px solid transparent;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .settings .settings__tab:hover {
        color: var(--bg-primary);
    }

    .settings .settings__tab.active {
        color: var(--bg-primary);
        border-color: var(--bg-primary);
    }

    .settings .settings__form {
        background: var(--surface-light);
        padding: clamp(24px, 3vw, 40px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--ring);
        box-shadow: var(--shadow-sm);
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    /* Dacă randomNumber este par (2) - primul copil primește order: 2 */
    .settings .settings__form > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    .settings .settings__group {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .settings .settings__group label {
        font-weight: 600;
        color: var(--fg-on-page);
    }

    .settings .settings__group input[type="text"],
    .settings .settings__group input[type="email"],
    .settings .settings__group input[type="file"] {
        padding: 0.875rem;
        border-radius: var(--radius-md);
        border: 1px solid var(--ring);

        outline: none;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .settings .settings__group input:focus {
        border-color: var(--bg-primary);
        box-shadow: 0 0 0 3px var(--ring);
    }

    .settings .settings__group input[type="checkbox"] {
        margin-right: 0.5rem;
    }

    .settings .settings__submit {
        padding: 1rem 2rem;
        border-radius: var(--radius-lg);
        border: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 600;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        align-self: flex-start;
    }

    .settings .settings__submit:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
    }

.clarifications-c2 {

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

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

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

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

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

    .clarifications-c2__rail {
        position: relative;
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.16);
        box-shadow: var(--shadow-lg);
        overflow: hidden;
    }

    /* Световой “луч” двигается постоянно */
    .clarifications-c2__beam {
        position: absolute;
        top: 0;
        left: 0;
        width: 48%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
        transform: translateX(-120%);
        animation: c2Beam 6.2s linear infinite;
        pointer-events: none;
    }

    @keyframes c2Beam {
        0% {
            transform: translateX(-120%)
        }
        55% {
            transform: translateX(160%)
        }
        100% {
            transform: translateX(160%)
        }
    }

    .clarifications-c2__list {
        display: grid;
        gap: 10px;
        padding: 12px;
    }

    .clarifications-c2__row {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 12px;
        padding: 12px 14px;
        border-radius: var(--radius-lg);
        background: rgba(0, 0, 0, 0.14);
        border: 1px solid rgba(255, 255, 255, 0.12);
        transition: transform var(--anim-duration) var(--anim-ease), background var(--anim-duration) var(--anim-ease);
    }

    .clarifications-c2__row.is-hot {
        transform: translateY(-2px);
        background: rgba(255, 255, 255, 0.12);
    }

    .clarifications-c2__tag {
        align-self: start;
        padding: 8px 10px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.10);
        border: 1px solid rgba(255, 255, 255, 0.16);
        font-weight: 800;
        white-space: nowrap;
        color: rgba(255, 255, 255, .92);
    }

    .clarifications-c2__q {
        font-weight: 900;
        letter-spacing: -.01em;
        margin-bottom: 6px;
    }

    .clarifications-c2__a {
        color: rgba(255, 255, 255, .82);
        line-height: var(--line-height-base);
    }

    @media (max-width: 720px) {
        .clarifications-c2__row {
            grid-template-columns:1fr
        }

        .clarifications-c2__tag {
            justify-self: start
        }
    }

    @media (prefers-reduced-motion: reduce) {
        .clarifications-c2__beam {
            animation: none;
        }
    }

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

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

.logo {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--link-hover);
}

.main-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: 0.5rem 0.75rem;
    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: none;
}

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

.search-btn,
.burger-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--fg-on-surface);
    padding: 0.5rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.search-btn:hover,
.search-btn:focus-visible,
.burger-btn:hover,
.burger-btn:focus-visible {
    background-color: var(--btn-ghost-bg-hover);
    outline: none;
}
.search-icon {
    display: block;
}

.burger-btn {
    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.active {
    display: block;
    animation: slideDown var(--anim-duration) var(--anim-ease);
}

.search-form {
    display: flex;
    gap: var(--gap);
}
.search-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-on-surface-light);
    border-radius: var(--radius-lg);
    background-color: var(--surface-light);
    color: var(--fg-on-surface-light);
    font-size: var(--font-size-base);
}
.search-input::placeholder {
    color: var(--input-placeholder);
}
.search-input:focus {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}
.search-submit {
    padding: 0.75rem 1.5rem;
    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 {
    background-color: var(--bg-primary-hover);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 767px) {
    .header-container {
        padding: calc(var(--space-y) * 0.75) var(--space-x);
    }
    .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
        border-top: 1px solid var(--border-on-surface);
        display: none;
        z-index: 99;
    }
    .main-nav.active {
        display: block;
        animation: slideDown var(--anim-duration) var(--anim-ease);
    }
    .nav-list {
        flex-direction: column;
        gap: 0.5rem;
    }
    .nav-link {
        display: block;
        padding: 0.75rem 1rem;
        border-radius: var(--radius-md);
    }
    .burger-btn {
        display: flex;
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2.5rem 1.5rem 1rem;
        font-family: 'Segoe UI', system-ui, sans-serif;
        color: #333;
        background-color: #f9f9f9;
        border-top: 1px solid #e1e1e1;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 2.5rem;
        margin-bottom: 2.5rem;
    }

    .footer-brand .logo {
        font-size: 1.8rem;
        font-weight: 700;
        letter-spacing: 1px;
        color: #222;
        margin-bottom: 0.5rem;
    }

    .footer-brand .tagline {
        font-size: 0.95rem;
        color: #666;
    }

    .footer-nav h3,
    .footer-legal h3,
    .footer-contacts h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #444;
    }

    .footer-nav ul,
    .footer-legal ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li,
    .footer-legal li {
        margin-bottom: 0.65rem;
    }

    .footer-nav a,
    .footer-legal a {
        text-decoration: none;
        color: #555;
        transition: color 0.2s ease;
        font-size: 0.95rem;
    }

    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #000;
        text-decoration: underline;
    }

    .footer-contacts p {
        margin-bottom: 0.8rem;
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .footer-contacts strong {
        color: #444;
        display: inline-block;
        min-width: 70px;
    }

    .footer-contacts a {
        color: #2a5db0;
        text-decoration: none;
    }

    .footer-contacts a:hover {
        text-decoration: underline;
    }

    .footer-disclaimer {
        padding-top: 1.5rem;
        border-top: 1px solid #ddd;
        text-align: center;
        font-size: 0.85rem;
        color: #777;
        line-height: 1.5;
    }

    .footer-disclaimer a {
        color: #2a5db0;
        text-decoration: none;
    }

    .footer-disclaimer a:hover {
        text-decoration: underline;
    }

    #currentYear {
        font-weight: 600;
    }

    @media (max-width: 768px) {
        .footer-grid {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .footer-container {
            padding: 2rem 1rem 1rem;
        }
    }

.cookie-cv5 {
        position: fixed;
        inset: auto 0 0 0;
        z-index: 1200;
        background: linear-gradient(90deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    }

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

    .cookie-cv5__inner p {
        margin: 0;
    }

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

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

    .cookie-cv5__actions button[data-choice='accept'] {
        background: var(--neutral-0);
        color: var(--fg-on-page);
    }

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

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

.statistics__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--gap);
    text-align: center;
}

.statistics__card {
    padding: clamp(16px, 3vw, 32px);
}

.statistics__number {
    font-size: clamp(32px, 6vw, 48px);
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.statistics__label {
    font-size: 1.1rem;
    font-weight: 400;
}

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

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

    .index-feedback-light__h {
        text-align: center;
        margin-bottom: clamp(22px, 5vw, 44px);

        transform: translateY(-18px);
    }

    .index-feedback-light__h h2 {
        margin: 0 0 10px;
        font-size: clamp(26px, 4.4vw, 44px);
        letter-spacing: -0.02em;
    }

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

    .index-feedback-light__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
        gap: clamp(14px, 2.6vw, 22px);
    }

    .index-feedback-light__card {
        border-radius: var(--radius-xl);
        background: var(--surface-light);
        border: 1px solid var(--border-on-surface-light);
        box-shadow: var(--shadow-md);
        padding: clamp(18px, 3vw, 26px);

        transform: translateY(28px);
    }

    .index-feedback-light__top {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 14px;
    }

    .index-feedback-light__who {
        display: flex;
        align-items: center;
        gap: 12px;
        min-width: 0;
    }

    .index-feedback-light__avatar {
        width: 46px;
        height: 46px;
        border-radius: 14px;
        background: var(--bg-accent);
        border: 1px solid var(--border-on-surface);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        flex: 0 0 auto;
    }

    .index-feedback-light__who h3 {
        margin: 0;
        font-size: 16px;
        font-weight: 800;
        color: var(--fg-on-page);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 20ch;
    }

    .index-feedback-light__who p {
        margin: 2px 0 0;
        font-size: 13px;
        color: var(--neutral-600);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 26ch;
    }

    .index-feedback-light__rating {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 8px 10px;
        border-radius: 999px;
        background: var(--surface-2);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-sm);
        flex: 0 0 auto;
    }

    .index-feedback-light__stars {
        font-size: 14px;
        letter-spacing: 0.08em;
        color: var(--accent);
        line-height: 1;
    }

    .index-feedback-light__score {
        font-size: 12px;
        font-weight: 800;
        color: var(--fg-on-page);
    }

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

    .index-feedback-light__badge {
        display: inline-flex;
        margin-top: 12px;
        padding: 6px 10px;
        border-radius: 999px;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border: 1px solid var(--ring);
        font-size: 11px;
        letter-spacing: 0.14em;
        text-transform: uppercase;
    }

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

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

.logo {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--link-hover);
}

.main-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: 0.5rem 0.75rem;
    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: none;
}

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

.search-btn,
.burger-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--fg-on-surface);
    padding: 0.5rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.search-btn:hover,
.search-btn:focus-visible,
.burger-btn:hover,
.burger-btn:focus-visible {
    background-color: var(--btn-ghost-bg-hover);
    outline: none;
}
.search-icon {
    display: block;
}

.burger-btn {
    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.active {
    display: block;
    animation: slideDown var(--anim-duration) var(--anim-ease);
}

.search-form {
    display: flex;
    gap: var(--gap);
}
.search-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-on-surface-light);
    border-radius: var(--radius-lg);
    background-color: var(--surface-light);
    color: var(--fg-on-surface-light);
    font-size: var(--font-size-base);
}
.search-input::placeholder {
    color: var(--input-placeholder);
}
.search-input:focus {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}
.search-submit {
    padding: 0.75rem 1.5rem;
    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 {
    background-color: var(--bg-primary-hover);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 767px) {
    .header-container {
        padding: calc(var(--space-y) * 0.75) var(--space-x);
    }
    .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
        border-top: 1px solid var(--border-on-surface);
        display: none;
        z-index: 99;
    }
    .main-nav.active {
        display: block;
        animation: slideDown var(--anim-duration) var(--anim-ease);
    }
    .nav-list {
        flex-direction: column;
        gap: 0.5rem;
    }
    .nav-link {
        display: block;
        padding: 0.75rem 1rem;
        border-radius: var(--radius-md);
    }
    .burger-btn {
        display: flex;
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2.5rem 1.5rem 1rem;
        font-family: 'Segoe UI', system-ui, sans-serif;
        color: #333;
        background-color: #f9f9f9;
        border-top: 1px solid #e1e1e1;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 2.5rem;
        margin-bottom: 2.5rem;
    }

    .footer-brand .logo {
        font-size: 1.8rem;
        font-weight: 700;
        letter-spacing: 1px;
        color: #222;
        margin-bottom: 0.5rem;
    }

    .footer-brand .tagline {
        font-size: 0.95rem;
        color: #666;
    }

    .footer-nav h3,
    .footer-legal h3,
    .footer-contacts h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #444;
    }

    .footer-nav ul,
    .footer-legal ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li,
    .footer-legal li {
        margin-bottom: 0.65rem;
    }

    .footer-nav a,
    .footer-legal a {
        text-decoration: none;
        color: #555;
        transition: color 0.2s ease;
        font-size: 0.95rem;
    }

    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #000;
        text-decoration: underline;
    }

    .footer-contacts p {
        margin-bottom: 0.8rem;
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .footer-contacts strong {
        color: #444;
        display: inline-block;
        min-width: 70px;
    }

    .footer-contacts a {
        color: #2a5db0;
        text-decoration: none;
    }

    .footer-contacts a:hover {
        text-decoration: underline;
    }

    .footer-disclaimer {
        padding-top: 1.5rem;
        border-top: 1px solid #ddd;
        text-align: center;
        font-size: 0.85rem;
        color: #777;
        line-height: 1.5;
    }

    .footer-disclaimer a {
        color: #2a5db0;
        text-decoration: none;
    }

    .footer-disclaimer a:hover {
        text-decoration: underline;
    }

    #currentYear {
        font-weight: 600;
    }

    @media (max-width: 768px) {
        .footer-grid {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .footer-container {
            padding: 2rem 1rem 1rem;
        }
    }

.cookie-cv5 {
        position: fixed;
        inset: auto 0 0 0;
        z-index: 1200;
        background: linear-gradient(90deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    }

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

    .cookie-cv5__inner p {
        margin: 0;
    }

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

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

    .cookie-cv5__actions button[data-choice='accept'] {
        background: var(--neutral-0);
        color: var(--fg-on-page);
    }

.security {

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

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

    .security .security__h {
        margin-bottom: var(--space-y);
    }

    .security h1 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 0.5rem;
        color: var(--fg-on-primary);
    }

    .security .security__sections {
        display: flex;
        flex-direction: column;
        gap: var(--space-y);
    }

    .security .security__section {
        background: var(--surface-light);
        padding: clamp(24px, 3vw, 32px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--ring);
        box-shadow: var(--shadow-sm);
    }

    .security h2 {
        font-size: clamp(20px, 3vw, 24px);
        margin: 0 0 1.5rem;
        color: var(--fg-on-primary);
    }

    .security .security__form {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .security .security__form input {
        padding: 0.875rem;
        border-radius: var(--radius-md);
        border: 1px solid var(--ring);

        outline: none;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .security .security__form input:focus {
        border-color: var(--bg-primary);
        box-shadow: 0 0 0 3px var(--ring);
    }

    .security .security__form button {
        padding: 0.875rem 2rem;
        border-radius: var(--radius-lg);
        border: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 600;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        align-self: flex-start;
    }

    .security .security__form button:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
    }

    .security .security__sessions {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .security .security__session {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem;
        background: var(--gradient-hero);
        border-radius: var(--radius-md);
        border: 1px solid var(--ring);
    }

    .security h4 {
        margin: 0 0 0.25rem;
        color: var(--fg-on-primary);
    }

    .security .security__session p {
        margin: 0;
        color: var(--neutral-600);
        font-size: 0.875rem;
    }

    .security .security__logout {
        padding: 0.5rem 1rem;
        border-radius: var(--radius-md);
        border: 1px solid var(--ring);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .security .security__logout:hover {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-color: var(--bg-primary);
    }

.clarifications-c2 {

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

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

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

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

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

    .clarifications-c2__rail {
        position: relative;
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.16);
        box-shadow: var(--shadow-lg);
        overflow: hidden;
    }

    /* Световой “луч” двигается постоянно */
    .clarifications-c2__beam {
        position: absolute;
        top: 0;
        left: 0;
        width: 48%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
        transform: translateX(-120%);
        animation: c2Beam 6.2s linear infinite;
        pointer-events: none;
    }

    @keyframes c2Beam {
        0% {
            transform: translateX(-120%)
        }
        55% {
            transform: translateX(160%)
        }
        100% {
            transform: translateX(160%)
        }
    }

    .clarifications-c2__list {
        display: grid;
        gap: 10px;
        padding: 12px;
    }

    .clarifications-c2__row {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 12px;
        padding: 12px 14px;
        border-radius: var(--radius-lg);
        background: rgba(0, 0, 0, 0.14);
        border: 1px solid rgba(255, 255, 255, 0.12);
        transition: transform var(--anim-duration) var(--anim-ease), background var(--anim-duration) var(--anim-ease);
    }

    .clarifications-c2__row.is-hot {
        transform: translateY(-2px);
        background: rgba(255, 255, 255, 0.12);
    }

    .clarifications-c2__tag {
        align-self: start;
        padding: 8px 10px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.10);
        border: 1px solid rgba(255, 255, 255, 0.16);
        font-weight: 800;
        white-space: nowrap;
        color: rgba(255, 255, 255, .92);
    }

    .clarifications-c2__q {
        font-weight: 900;
        letter-spacing: -.01em;
        margin-bottom: 6px;
    }

    .clarifications-c2__a {
        color: rgba(255, 255, 255, .82);
        line-height: var(--line-height-base);
    }

    @media (max-width: 720px) {
        .clarifications-c2__row {
            grid-template-columns:1fr
        }

        .clarifications-c2__tag {
            justify-self: start
        }
    }

    @media (prefers-reduced-motion: reduce) {
        .clarifications-c2__beam {
            animation: none;
        }
    }

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

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

.logo {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--link-hover);
}

.main-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: 0.5rem 0.75rem;
    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: none;
}

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

.search-btn,
.burger-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--fg-on-surface);
    padding: 0.5rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.search-btn:hover,
.search-btn:focus-visible,
.burger-btn:hover,
.burger-btn:focus-visible {
    background-color: var(--btn-ghost-bg-hover);
    outline: none;
}
.search-icon {
    display: block;
}

.burger-btn {
    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.active {
    display: block;
    animation: slideDown var(--anim-duration) var(--anim-ease);
}

.search-form {
    display: flex;
    gap: var(--gap);
}
.search-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-on-surface-light);
    border-radius: var(--radius-lg);
    background-color: var(--surface-light);
    color: var(--fg-on-surface-light);
    font-size: var(--font-size-base);
}
.search-input::placeholder {
    color: var(--input-placeholder);
}
.search-input:focus {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}
.search-submit {
    padding: 0.75rem 1.5rem;
    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 {
    background-color: var(--bg-primary-hover);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 767px) {
    .header-container {
        padding: calc(var(--space-y) * 0.75) var(--space-x);
    }
    .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
        border-top: 1px solid var(--border-on-surface);
        display: none;
        z-index: 99;
    }
    .main-nav.active {
        display: block;
        animation: slideDown var(--anim-duration) var(--anim-ease);
    }
    .nav-list {
        flex-direction: column;
        gap: 0.5rem;
    }
    .nav-link {
        display: block;
        padding: 0.75rem 1rem;
        border-radius: var(--radius-md);
    }
    .burger-btn {
        display: flex;
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2.5rem 1.5rem 1rem;
        font-family: 'Segoe UI', system-ui, sans-serif;
        color: #333;
        background-color: #f9f9f9;
        border-top: 1px solid #e1e1e1;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 2.5rem;
        margin-bottom: 2.5rem;
    }

    .footer-brand .logo {
        font-size: 1.8rem;
        font-weight: 700;
        letter-spacing: 1px;
        color: #222;
        margin-bottom: 0.5rem;
    }

    .footer-brand .tagline {
        font-size: 0.95rem;
        color: #666;
    }

    .footer-nav h3,
    .footer-legal h3,
    .footer-contacts h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #444;
    }

    .footer-nav ul,
    .footer-legal ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li,
    .footer-legal li {
        margin-bottom: 0.65rem;
    }

    .footer-nav a,
    .footer-legal a {
        text-decoration: none;
        color: #555;
        transition: color 0.2s ease;
        font-size: 0.95rem;
    }

    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #000;
        text-decoration: underline;
    }

    .footer-contacts p {
        margin-bottom: 0.8rem;
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .footer-contacts strong {
        color: #444;
        display: inline-block;
        min-width: 70px;
    }

    .footer-contacts a {
        color: #2a5db0;
        text-decoration: none;
    }

    .footer-contacts a:hover {
        text-decoration: underline;
    }

    .footer-disclaimer {
        padding-top: 1.5rem;
        border-top: 1px solid #ddd;
        text-align: center;
        font-size: 0.85rem;
        color: #777;
        line-height: 1.5;
    }

    .footer-disclaimer a {
        color: #2a5db0;
        text-decoration: none;
    }

    .footer-disclaimer a:hover {
        text-decoration: underline;
    }

    #currentYear {
        font-weight: 600;
    }

    @media (max-width: 768px) {
        .footer-grid {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .footer-container {
            padding: 2rem 1rem 1rem;
        }
    }

.cookie-cv5 {
        position: fixed;
        inset: auto 0 0 0;
        z-index: 1200;
        background: linear-gradient(90deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    }

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

    .cookie-cv5__inner p {
        margin: 0;
    }

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

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

    .cookie-cv5__actions button[data-choice='accept'] {
        background: var(--neutral-0);
        color: var(--fg-on-page);
    }

.form-fresh-v2 {
        padding: calc(var(--space-y) * 2.4) var(--space-x);
        background: var(--bg-alt);
        color: var(--fg-on-alt);
    }

    .form-fresh-v2 .shell {
        max-width: 760px;
        margin: 0 auto;
        display: grid;
        gap: var(--gap);
    }

    .form-fresh-v2 h2 {
        margin: 0;
        font-size: clamp(1.7rem, 3.1vw, 2.4rem);
    }

    .form-fresh-v2 p {
        margin: 0;
        color: var(--fg-on-surface-light);
    }

    .form-fresh-v2 form {
        display: grid;
        grid-template-columns:repeat(2, minmax(0, 1fr));
        gap: .75rem;
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
    }

    .form-fresh-v2 label {
        display: grid;
        gap: .3rem;
        font-size: .9rem;
    }

    .form-fresh-v2 input {
        padding: .66rem .75rem;
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-sm);
        font: inherit;
    }

    .form-fresh-v2 button {
        grid-column: 1/-1;
        padding: .72rem 1rem;
        border: 0;
        border-radius: var(--radius-sm);
        background: var(--gradient-accent);
        color: var(--accent-contrast);
        font-weight: 700;
        cursor: pointer;
    }

    @media (max-width: 700px) {
        .form-fresh-v2 form {
            grid-template-columns:1fr;
        }
    }

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

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

    .support-lv1__head {
        margin-bottom: 14px;
    }

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

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

    .support-lv1__grid {
        display: grid;
        gap: 10px;
        grid-template-columns: repeat(var(--cols, 3), minmax(0, 1fr));
    }

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

    .support-lv1__grid h3 {
        margin: 0 0 6px;
    }

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

    .support-lv1__grid a {
        color: var(--link);
        text-decoration: none;
        font-weight: 600;
    }

    @media (max-width: 900px) {
        .support-lv1__grid {
            grid-template-columns: 1fr 1fr;
        }
    }

    @media (max-width: 640px) {
        .support-lv1__grid {
            grid-template-columns: 1fr;
        }
    }

.contacts-fresh-v4 {
        padding: calc(var(--space-y) * 2.6) var(--space-x);
        background: var(--gradient-hero);
        color: var(--brand-contrast);
    }

    .contacts-fresh-v4 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .contacts-fresh-v4 h2 {
        margin: 0 0 1rem;
        font-size: clamp(1.8rem, 3.4vw, 2.6rem);
    }

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

    .contacts-fresh-v4 article {
        background: var(--chip-bg);
        border: 1px solid var(--btn-ghost-bg-hover);
        padding: 1rem;
        border-radius: var(--radius-lg);
    }

    .contacts-fresh-v4 .tag {
        margin: 0;
        font-size: .86rem;
        opacity: .9;
    }

    .contacts-fresh-v4 .value {
        margin: .45rem 0 .8rem;
        font-size: 1.1rem;
        font-weight: 700;
    }

    .contacts-fresh-v4 a {
        color: var(--brand-contrast);
        text-decoration: underline;
    }

    @media (max-width: 760px) {
        .contacts-fresh-v4 .grid {
            grid-template-columns:1fr;
        }
    }

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

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

.logo {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--link-hover);
}

.main-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: 0.5rem 0.75rem;
    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: none;
}

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

.search-btn,
.burger-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--fg-on-surface);
    padding: 0.5rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.search-btn:hover,
.search-btn:focus-visible,
.burger-btn:hover,
.burger-btn:focus-visible {
    background-color: var(--btn-ghost-bg-hover);
    outline: none;
}
.search-icon {
    display: block;
}

.burger-btn {
    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.active {
    display: block;
    animation: slideDown var(--anim-duration) var(--anim-ease);
}

.search-form {
    display: flex;
    gap: var(--gap);
}
.search-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-on-surface-light);
    border-radius: var(--radius-lg);
    background-color: var(--surface-light);
    color: var(--fg-on-surface-light);
    font-size: var(--font-size-base);
}
.search-input::placeholder {
    color: var(--input-placeholder);
}
.search-input:focus {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}
.search-submit {
    padding: 0.75rem 1.5rem;
    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 {
    background-color: var(--bg-primary-hover);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 767px) {
    .header-container {
        padding: calc(var(--space-y) * 0.75) var(--space-x);
    }
    .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
        border-top: 1px solid var(--border-on-surface);
        display: none;
        z-index: 99;
    }
    .main-nav.active {
        display: block;
        animation: slideDown var(--anim-duration) var(--anim-ease);
    }
    .nav-list {
        flex-direction: column;
        gap: 0.5rem;
    }
    .nav-link {
        display: block;
        padding: 0.75rem 1rem;
        border-radius: var(--radius-md);
    }
    .burger-btn {
        display: flex;
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2.5rem 1.5rem 1rem;
        font-family: 'Segoe UI', system-ui, sans-serif;
        color: #333;
        background-color: #f9f9f9;
        border-top: 1px solid #e1e1e1;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 2.5rem;
        margin-bottom: 2.5rem;
    }

    .footer-brand .logo {
        font-size: 1.8rem;
        font-weight: 700;
        letter-spacing: 1px;
        color: #222;
        margin-bottom: 0.5rem;
    }

    .footer-brand .tagline {
        font-size: 0.95rem;
        color: #666;
    }

    .footer-nav h3,
    .footer-legal h3,
    .footer-contacts h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #444;
    }

    .footer-nav ul,
    .footer-legal ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li,
    .footer-legal li {
        margin-bottom: 0.65rem;
    }

    .footer-nav a,
    .footer-legal a {
        text-decoration: none;
        color: #555;
        transition: color 0.2s ease;
        font-size: 0.95rem;
    }

    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #000;
        text-decoration: underline;
    }

    .footer-contacts p {
        margin-bottom: 0.8rem;
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .footer-contacts strong {
        color: #444;
        display: inline-block;
        min-width: 70px;
    }

    .footer-contacts a {
        color: #2a5db0;
        text-decoration: none;
    }

    .footer-contacts a:hover {
        text-decoration: underline;
    }

    .footer-disclaimer {
        padding-top: 1.5rem;
        border-top: 1px solid #ddd;
        text-align: center;
        font-size: 0.85rem;
        color: #777;
        line-height: 1.5;
    }

    .footer-disclaimer a {
        color: #2a5db0;
        text-decoration: none;
    }

    .footer-disclaimer a:hover {
        text-decoration: underline;
    }

    #currentYear {
        font-weight: 600;
    }

    @media (max-width: 768px) {
        .footer-grid {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .footer-container {
            padding: 2rem 1rem 1rem;
        }
    }

.cookie-cv5 {
        position: fixed;
        inset: auto 0 0 0;
        z-index: 1200;
        background: linear-gradient(90deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    }

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

    .cookie-cv5__inner p {
        margin: 0;
    }

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

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

    .cookie-cv5__actions button[data-choice='accept'] {
        background: var(--neutral-0);
        color: var(--fg-on-page);
    }

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

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

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

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

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

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

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

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

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

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

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

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

.logo {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--link-hover);
}

.main-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: 0.5rem 0.75rem;
    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: none;
}

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

.search-btn,
.burger-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--fg-on-surface);
    padding: 0.5rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.search-btn:hover,
.search-btn:focus-visible,
.burger-btn:hover,
.burger-btn:focus-visible {
    background-color: var(--btn-ghost-bg-hover);
    outline: none;
}
.search-icon {
    display: block;
}

.burger-btn {
    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.active {
    display: block;
    animation: slideDown var(--anim-duration) var(--anim-ease);
}

.search-form {
    display: flex;
    gap: var(--gap);
}
.search-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-on-surface-light);
    border-radius: var(--radius-lg);
    background-color: var(--surface-light);
    color: var(--fg-on-surface-light);
    font-size: var(--font-size-base);
}
.search-input::placeholder {
    color: var(--input-placeholder);
}
.search-input:focus {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}
.search-submit {
    padding: 0.75rem 1.5rem;
    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 {
    background-color: var(--bg-primary-hover);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 767px) {
    .header-container {
        padding: calc(var(--space-y) * 0.75) var(--space-x);
    }
    .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
        border-top: 1px solid var(--border-on-surface);
        display: none;
        z-index: 99;
    }
    .main-nav.active {
        display: block;
        animation: slideDown var(--anim-duration) var(--anim-ease);
    }
    .nav-list {
        flex-direction: column;
        gap: 0.5rem;
    }
    .nav-link {
        display: block;
        padding: 0.75rem 1rem;
        border-radius: var(--radius-md);
    }
    .burger-btn {
        display: flex;
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2.5rem 1.5rem 1rem;
        font-family: 'Segoe UI', system-ui, sans-serif;
        color: #333;
        background-color: #f9f9f9;
        border-top: 1px solid #e1e1e1;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 2.5rem;
        margin-bottom: 2.5rem;
    }

    .footer-brand .logo {
        font-size: 1.8rem;
        font-weight: 700;
        letter-spacing: 1px;
        color: #222;
        margin-bottom: 0.5rem;
    }

    .footer-brand .tagline {
        font-size: 0.95rem;
        color: #666;
    }

    .footer-nav h3,
    .footer-legal h3,
    .footer-contacts h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #444;
    }

    .footer-nav ul,
    .footer-legal ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li,
    .footer-legal li {
        margin-bottom: 0.65rem;
    }

    .footer-nav a,
    .footer-legal a {
        text-decoration: none;
        color: #555;
        transition: color 0.2s ease;
        font-size: 0.95rem;
    }

    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #000;
        text-decoration: underline;
    }

    .footer-contacts p {
        margin-bottom: 0.8rem;
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .footer-contacts strong {
        color: #444;
        display: inline-block;
        min-width: 70px;
    }

    .footer-contacts a {
        color: #2a5db0;
        text-decoration: none;
    }

    .footer-contacts a:hover {
        text-decoration: underline;
    }

    .footer-disclaimer {
        padding-top: 1.5rem;
        border-top: 1px solid #ddd;
        text-align: center;
        font-size: 0.85rem;
        color: #777;
        line-height: 1.5;
    }

    .footer-disclaimer a {
        color: #2a5db0;
        text-decoration: none;
    }

    .footer-disclaimer a:hover {
        text-decoration: underline;
    }

    #currentYear {
        font-weight: 600;
    }

    @media (max-width: 768px) {
        .footer-grid {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .footer-container {
            padding: 2rem 1rem 1rem;
        }
    }

.cookie-cv5 {
        position: fixed;
        inset: auto 0 0 0;
        z-index: 1200;
        background: linear-gradient(90deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    }

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

    .cookie-cv5__inner p {
        margin: 0;
    }

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

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

    .cookie-cv5__actions button[data-choice='accept'] {
        background: var(--neutral-0);
        color: var(--fg-on-page);
    }

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

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

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

.logo {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--link-hover);
}

.main-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: 0.5rem 0.75rem;
    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: none;
}

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

.search-btn,
.burger-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--fg-on-surface);
    padding: 0.5rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.search-btn:hover,
.search-btn:focus-visible,
.burger-btn:hover,
.burger-btn:focus-visible {
    background-color: var(--btn-ghost-bg-hover);
    outline: none;
}
.search-icon {
    display: block;
}

.burger-btn {
    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.active {
    display: block;
    animation: slideDown var(--anim-duration) var(--anim-ease);
}

.search-form {
    display: flex;
    gap: var(--gap);
}
.search-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-on-surface-light);
    border-radius: var(--radius-lg);
    background-color: var(--surface-light);
    color: var(--fg-on-surface-light);
    font-size: var(--font-size-base);
}
.search-input::placeholder {
    color: var(--input-placeholder);
}
.search-input:focus {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}
.search-submit {
    padding: 0.75rem 1.5rem;
    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 {
    background-color: var(--bg-primary-hover);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 767px) {
    .header-container {
        padding: calc(var(--space-y) * 0.75) var(--space-x);
    }
    .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
        border-top: 1px solid var(--border-on-surface);
        display: none;
        z-index: 99;
    }
    .main-nav.active {
        display: block;
        animation: slideDown var(--anim-duration) var(--anim-ease);
    }
    .nav-list {
        flex-direction: column;
        gap: 0.5rem;
    }
    .nav-link {
        display: block;
        padding: 0.75rem 1rem;
        border-radius: var(--radius-md);
    }
    .burger-btn {
        display: flex;
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2.5rem 1.5rem 1rem;
        font-family: 'Segoe UI', system-ui, sans-serif;
        color: #333;
        background-color: #f9f9f9;
        border-top: 1px solid #e1e1e1;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 2.5rem;
        margin-bottom: 2.5rem;
    }

    .footer-brand .logo {
        font-size: 1.8rem;
        font-weight: 700;
        letter-spacing: 1px;
        color: #222;
        margin-bottom: 0.5rem;
    }

    .footer-brand .tagline {
        font-size: 0.95rem;
        color: #666;
    }

    .footer-nav h3,
    .footer-legal h3,
    .footer-contacts h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #444;
    }

    .footer-nav ul,
    .footer-legal ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li,
    .footer-legal li {
        margin-bottom: 0.65rem;
    }

    .footer-nav a,
    .footer-legal a {
        text-decoration: none;
        color: #555;
        transition: color 0.2s ease;
        font-size: 0.95rem;
    }

    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #000;
        text-decoration: underline;
    }

    .footer-contacts p {
        margin-bottom: 0.8rem;
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .footer-contacts strong {
        color: #444;
        display: inline-block;
        min-width: 70px;
    }

    .footer-contacts a {
        color: #2a5db0;
        text-decoration: none;
    }

    .footer-contacts a:hover {
        text-decoration: underline;
    }

    .footer-disclaimer {
        padding-top: 1.5rem;
        border-top: 1px solid #ddd;
        text-align: center;
        font-size: 0.85rem;
        color: #777;
        line-height: 1.5;
    }

    .footer-disclaimer a {
        color: #2a5db0;
        text-decoration: none;
    }

    .footer-disclaimer a:hover {
        text-decoration: underline;
    }

    #currentYear {
        font-weight: 600;
    }

    @media (max-width: 768px) {
        .footer-grid {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .footer-container {
            padding: 2rem 1rem 1rem;
        }
    }

.cookie-cv5 {
        position: fixed;
        inset: auto 0 0 0;
        z-index: 1200;
        background: linear-gradient(90deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    }

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

    .cookie-cv5__inner p {
        margin: 0;
    }

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

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

    .cookie-cv5__actions button[data-choice='accept'] {
        background: var(--neutral-0);
        color: var(--fg-on-page);
    }

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

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

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

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

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

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

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

.logo {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--link-hover);
}

.main-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: 0.5rem 0.75rem;
    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: none;
}

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

.search-btn,
.burger-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--fg-on-surface);
    padding: 0.5rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.search-btn:hover,
.search-btn:focus-visible,
.burger-btn:hover,
.burger-btn:focus-visible {
    background-color: var(--btn-ghost-bg-hover);
    outline: none;
}
.search-icon {
    display: block;
}

.burger-btn {
    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.active {
    display: block;
    animation: slideDown var(--anim-duration) var(--anim-ease);
}

.search-form {
    display: flex;
    gap: var(--gap);
}
.search-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-on-surface-light);
    border-radius: var(--radius-lg);
    background-color: var(--surface-light);
    color: var(--fg-on-surface-light);
    font-size: var(--font-size-base);
}
.search-input::placeholder {
    color: var(--input-placeholder);
}
.search-input:focus {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}
.search-submit {
    padding: 0.75rem 1.5rem;
    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 {
    background-color: var(--bg-primary-hover);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 767px) {
    .header-container {
        padding: calc(var(--space-y) * 0.75) var(--space-x);
    }
    .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
        border-top: 1px solid var(--border-on-surface);
        display: none;
        z-index: 99;
    }
    .main-nav.active {
        display: block;
        animation: slideDown var(--anim-duration) var(--anim-ease);
    }
    .nav-list {
        flex-direction: column;
        gap: 0.5rem;
    }
    .nav-link {
        display: block;
        padding: 0.75rem 1rem;
        border-radius: var(--radius-md);
    }
    .burger-btn {
        display: flex;
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2.5rem 1.5rem 1rem;
        font-family: 'Segoe UI', system-ui, sans-serif;
        color: #333;
        background-color: #f9f9f9;
        border-top: 1px solid #e1e1e1;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 2.5rem;
        margin-bottom: 2.5rem;
    }

    .footer-brand .logo {
        font-size: 1.8rem;
        font-weight: 700;
        letter-spacing: 1px;
        color: #222;
        margin-bottom: 0.5rem;
    }

    .footer-brand .tagline {
        font-size: 0.95rem;
        color: #666;
    }

    .footer-nav h3,
    .footer-legal h3,
    .footer-contacts h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #444;
    }

    .footer-nav ul,
    .footer-legal ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li,
    .footer-legal li {
        margin-bottom: 0.65rem;
    }

    .footer-nav a,
    .footer-legal a {
        text-decoration: none;
        color: #555;
        transition: color 0.2s ease;
        font-size: 0.95rem;
    }

    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #000;
        text-decoration: underline;
    }

    .footer-contacts p {
        margin-bottom: 0.8rem;
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .footer-contacts strong {
        color: #444;
        display: inline-block;
        min-width: 70px;
    }

    .footer-contacts a {
        color: #2a5db0;
        text-decoration: none;
    }

    .footer-contacts a:hover {
        text-decoration: underline;
    }

    .footer-disclaimer {
        padding-top: 1.5rem;
        border-top: 1px solid #ddd;
        text-align: center;
        font-size: 0.85rem;
        color: #777;
        line-height: 1.5;
    }

    .footer-disclaimer a {
        color: #2a5db0;
        text-decoration: none;
    }

    .footer-disclaimer a:hover {
        text-decoration: underline;
    }

    #currentYear {
        font-weight: 600;
    }

    @media (max-width: 768px) {
        .footer-grid {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .footer-container {
            padding: 2rem 1rem 1rem;
        }
    }

.cookie-cv5 {
        position: fixed;
        inset: auto 0 0 0;
        z-index: 1200;
        background: linear-gradient(90deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    }

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

    .cookie-cv5__inner p {
        margin: 0;
    }

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

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

    .cookie-cv5__actions button[data-choice='accept'] {
        background: var(--neutral-0);
        color: var(--fg-on-page);
    }

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

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

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

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

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