:root {
  --font-family: "Archivo", sans-serif;
  --font-size-base: 19px;
  --line-height-base: 1.6;

  --max-w: 1340px;
  --space-x: 1.59rem;
  --space-y: 1.5rem;
  --gap: 1.99rem;

  --radius-xl: 1.19rem;
  --radius-lg: 0.96rem;
  --radius-md: 0.54rem;
  --radius-sm: 0.24rem;

  --shadow-sm: 0 2px 4px rgba(0,0,0,0.15);
  --shadow-md: 0 10px 20px rgba(0,0,0,0.2);
  --shadow-lg: 0 24px 54px rgba(0,0,0,0.24);

  --overlay: rgba(0, 0, 0, 0.4);
  --anim-duration: 260ms;
  --anim-ease: ease;
  --random-number: 2;

  --brand: #4A6FA5;
  --brand-contrast: #FFFFFF;
  --accent: #E67E22;
  --accent-contrast: #FFFFFF;

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

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

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

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

  --surface-light: rgba(255, 255, 255, 0.95);
  --fg-on-surface-light: #343A40;
  --border-on-surface-light: rgba(222, 226, 230, 0.6);

  --bg-primary: #4A6FA5;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #3A5A8C;
  --ring: rgba(74, 111, 165, 0.3);

  --bg-accent: #FEF6EC;
  --fg-on-accent: #8C4A0C;
  --bg-accent-hover: #D35400;

  --link: #4A6FA5;
  --link-hover: #3A5A8C;

  --gradient-hero: linear-gradient(135deg, #4A6FA5 0%, #6A8FC5 100%);
  --gradient-accent: linear-gradient(135deg, #E67E22 0%, #F39C12 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);
    padding: var(--space-y) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}
.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}
.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--link-hover);
}
.main-nav {
    display: flex;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(var(--gap) * 1.5);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}
.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}
.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-color: var(--overlay);
        backdrop-filter: blur(8px);
        z-index: 999;
        justify-content: center;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    }
    .main-nav.active {
        opacity: 1;
        visibility: visible;
    }
    .nav-list {
        flex-direction: column;
        align-items: center;
        background-color: var(--surface-1);
        padding: calc(var(--space-y) * 2);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
        max-width: 90%;
        width: 20rem;
    }
    .nav-link {
        padding: var(--space-y) var(--space-x);
        width: 100%;
        text-align: center;
    }
    .burger-btn.active .burger-line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }
    .burger-btn.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-btn.active .burger-line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2rem 1rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 1.5rem;
        margin-bottom: 1.5rem;
        border-bottom: 1px solid #e9ecef;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
    }
    .footer-nav ul {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: 1.5rem;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
    }
    .footer-contact-info address {
        font-style: normal;
        line-height: 1.6;
    }
    .footer-contact-info strong {
        color: #2c3e50;
    }
    .footer-contact-info a {
        color: #0066cc;
        text-decoration: none;
    }
    .footer-contact-info a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        flex: 1;
        min-width: 300px;
    }
    .footer-disclaimer {
        font-size: 0.85rem;
        color: #6c757d;
        line-height: 1.5;
        margin-bottom: 1rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid #e9ecef;
    }
    .footer-links-copyright {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
    }
    .footer-links-copyright > p {
        margin: 0;
        color: #495057;
    }
    .footer-legal-links {
        display: flex;
        gap: 1.5rem;
    }
    .footer-legal-links a {
        color: #6c757d;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .footer-legal-links a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            gap: 1rem;
            text-align: center;
        }
        .footer-nav ul {
            justify-content: center;
        }
        .footer-bottom {
            flex-direction: column;
            text-align: center;
        }
        .footer-links-copyright {
            flex-direction: column;
            gap: 0.5rem;
        }
    }

.cookie-lv14 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .cookie-lv14__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * 0.8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .cookie-lv14__text {
        flex: 1 1 420px;
    }

    .cookie-lv14__badge {
        display: inline-flex;
        align-items: center;
        padding: 3px 8px;
        border-radius: 999px;
        font-size: 12px;
        font-weight: 700;
        margin-bottom: 6px;
        background: var(--surface-2);
        color: var(--fg-muted);
    }

    .cookie-lv14__text strong {
        display: block;
        margin-bottom: 4px;
        color: var(--fg-on-surface);
    }

    .cookie-lv14__text p {
        margin: 0;
        color: var(--fg-muted);
    }

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

    .cookie-lv14__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-lv14__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

.intro-stack-l12 {
        padding: clamp(3.6rem, 8vw, 6.5rem) var(--space-x);
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

    .intro-stack-l12__wrap {
        max-width: 58rem;
        margin: 0 auto;
    }

    .intro-stack-l12__hero {
        text-align: center;
    }

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

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

    .intro-stack-l12__hero strong {
        display: block;
        margin-top: .7rem;
    }

    .intro-stack-l12__panels {
        margin-top: 1.15rem;
        display: grid;
        gap: .8rem;
    }

    .intro-stack-l12__panels article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
        color: var(--neutral-600);
    }

.next-signal-c7 {
        padding: clamp(3.7rem, 8vw, 6.3rem) var(--space-x);
        background: linear-gradient(145deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
    }

    .next-signal-c7__wrap {
        max-width: 60rem;
        margin: 0 auto;
        display: grid;
        grid-template-columns: .95fr 1.05fr;
        gap: 1rem;
        align-items: center;
    }

    .next-signal-c7__copy p {
        margin: 0;
        color: rgba(255, 255, 255, .78);
    }

    .next-signal-c7__copy h2 {
        margin: .5rem 0 0;
        font-size: clamp(2rem, 4vw, 3.1rem);
    }

    .next-signal-c7__copy span {
        display: block;
        margin-top: .85rem;

    }

    .next-signal-c7__stack {
        display: grid;
        gap: .7rem;
    }

    .next-signal-c7__stack a {
        display: flex;
        justify-content: space-between;
        gap: .75rem;
        align-items: center;
        padding: .9rem 1rem;
        border-radius: var(--radius-lg);
        text-decoration: none;
        color: var(--fg-on-primary);
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .next-signal-c7__stack span {
        color: rgba(255, 255, 255, .8);
    }

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

    @media (max-width: 820px) {
        .next-signal-c7__wrap {
            grid-template-columns: 1fr;
        }
    }

.education-struct-v1 {
        padding: calc(var(--space-y) * 2) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-surface)
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.values-beads-c3 {
        padding: clamp(3.5rem, 8vw, 6.1rem) var(--space-x);
        background: var(--gradient-accent);
        color: var(--fg-on-primary);
    }

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

    .values-beads-c3__head {
        margin-bottom: 1.1rem;
    }

    .values-beads-c3__head p {
        margin: 0;
        color: rgba(255, 255, 255, .76);
        text-transform: uppercase;
        letter-spacing: .1em;
        font-size: .82rem;
    }

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

    .values-beads-c3__head span {
        display: block;
        margin-top: .8rem;

    }

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

    .values-beads-c3__grid article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: rgba(255, 255, 255, .14);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .values-beads-c3__top {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .values-beads-c3__top i {
        font-style: normal;
    }

    .values-beads-c3__top strong {
        color: var(--bg-accent);
    }

    .values-beads-c3__grid h3 {
        margin: .75rem 0 .35rem;
    }

    .values-beads-c3__grid p {
        margin: 0;

    }

    .values-beads-c3__grid small {
        display: block;
        margin-top: .55rem;
        color: rgba(255, 255, 255, .76);
    }

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

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

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

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

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

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

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

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

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

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

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

    .touch-orbit .main-form input::placeholder {
        color: var(--input-placeholder);
    }

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

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}
.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}
.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--link-hover);
}
.main-nav {
    display: flex;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(var(--gap) * 1.5);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}
.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}
.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-color: var(--overlay);
        backdrop-filter: blur(8px);
        z-index: 999;
        justify-content: center;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    }
    .main-nav.active {
        opacity: 1;
        visibility: visible;
    }
    .nav-list {
        flex-direction: column;
        align-items: center;
        background-color: var(--surface-1);
        padding: calc(var(--space-y) * 2);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
        max-width: 90%;
        width: 20rem;
    }
    .nav-link {
        padding: var(--space-y) var(--space-x);
        width: 100%;
        text-align: center;
    }
    .burger-btn.active .burger-line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }
    .burger-btn.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-btn.active .burger-line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2rem 1rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 1.5rem;
        margin-bottom: 1.5rem;
        border-bottom: 1px solid #e9ecef;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
    }
    .footer-nav ul {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: 1.5rem;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
    }
    .footer-contact-info address {
        font-style: normal;
        line-height: 1.6;
    }
    .footer-contact-info strong {
        color: #2c3e50;
    }
    .footer-contact-info a {
        color: #0066cc;
        text-decoration: none;
    }
    .footer-contact-info a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        flex: 1;
        min-width: 300px;
    }
    .footer-disclaimer {
        font-size: 0.85rem;
        color: #6c757d;
        line-height: 1.5;
        margin-bottom: 1rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid #e9ecef;
    }
    .footer-links-copyright {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
    }
    .footer-links-copyright > p {
        margin: 0;
        color: #495057;
    }
    .footer-legal-links {
        display: flex;
        gap: 1.5rem;
    }
    .footer-legal-links a {
        color: #6c757d;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .footer-legal-links a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            gap: 1rem;
            text-align: center;
        }
        .footer-nav ul {
            justify-content: center;
        }
        .footer-bottom {
            flex-direction: column;
            text-align: center;
        }
        .footer-links-copyright {
            flex-direction: column;
            gap: 0.5rem;
        }
    }

.cookie-lv14 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .cookie-lv14__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * 0.8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .cookie-lv14__text {
        flex: 1 1 420px;
    }

    .cookie-lv14__badge {
        display: inline-flex;
        align-items: center;
        padding: 3px 8px;
        border-radius: 999px;
        font-size: 12px;
        font-weight: 700;
        margin-bottom: 6px;
        background: var(--surface-2);
        color: var(--fg-muted);
    }

    .cookie-lv14__text strong {
        display: block;
        margin-bottom: 4px;
        color: var(--fg-on-surface);
    }

    .cookie-lv14__text p {
        margin: 0;
        color: var(--fg-muted);
    }

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

    .cookie-lv14__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-lv14__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

.team-fresh-v5 {
        padding: calc(var(--space-y) * 2.5) var(--space-x);
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    .team-fresh-v5 .shell {
        max-width: 980px;
        margin: 0 auto;
        display: grid;
        gap: var(--gap);
    }

    .team-fresh-v5 .cards {
        display: grid;
        grid-template-columns:repeat(2, minmax(0, 1fr));
        gap: .8rem;
    }

    .team-fresh-v5 article {
        display: grid;
        grid-template-columns:110px 1fr;
        gap: .8rem;
        padding: .8rem;
        border-radius: var(--radius-md);
        background: var(--chip-bg);
        border: 1px solid var(--btn-ghost-bg-hover);
    }

    .team-fresh-v5 .photo img {
        width: 100%;
        aspect-ratio: 1/1;
        object-fit: cover;
        border-radius: var(--radius-sm);
    }

    .team-fresh-v5 h3 {
        margin: 0 0 .2rem;
    }

    .team-fresh-v5 .role {
        margin: 0;
        color: var(--accent);
        font-weight: 700;
    }

    .team-fresh-v5 .bio {
        margin: .3rem 0 0;
        opacity: .88;
    }

    @media (max-width: 840px) {
        .team-fresh-v5 .cards {
            grid-template-columns:1fr;
        }
    }

    @media (max-width: 520px) {
        .team-fresh-v5 article {
            grid-template-columns:1fr;
        }
    }

.about-mission {

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

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

    .about-mission .about-mission__grid {
        display: grid;
        gap: var(--space-x);
        grid-template-columns: 1fr 1fr;
    }

    .about-mission p {
        color: var(--neutral-600);
    }

    @media (max-width: 767px) {
        .about-mission .about-mission__grid {
            grid-template-columns: 1fr;
        }
    }

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

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

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

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

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

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

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

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

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

    .identity-cv1__grid h3 {
        margin: 0;
    }

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

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

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}
.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}
.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--link-hover);
}
.main-nav {
    display: flex;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(var(--gap) * 1.5);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}
.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}
.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-color: var(--overlay);
        backdrop-filter: blur(8px);
        z-index: 999;
        justify-content: center;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    }
    .main-nav.active {
        opacity: 1;
        visibility: visible;
    }
    .nav-list {
        flex-direction: column;
        align-items: center;
        background-color: var(--surface-1);
        padding: calc(var(--space-y) * 2);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
        max-width: 90%;
        width: 20rem;
    }
    .nav-link {
        padding: var(--space-y) var(--space-x);
        width: 100%;
        text-align: center;
    }
    .burger-btn.active .burger-line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }
    .burger-btn.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-btn.active .burger-line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2rem 1rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 1.5rem;
        margin-bottom: 1.5rem;
        border-bottom: 1px solid #e9ecef;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
    }
    .footer-nav ul {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: 1.5rem;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
    }
    .footer-contact-info address {
        font-style: normal;
        line-height: 1.6;
    }
    .footer-contact-info strong {
        color: #2c3e50;
    }
    .footer-contact-info a {
        color: #0066cc;
        text-decoration: none;
    }
    .footer-contact-info a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        flex: 1;
        min-width: 300px;
    }
    .footer-disclaimer {
        font-size: 0.85rem;
        color: #6c757d;
        line-height: 1.5;
        margin-bottom: 1rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid #e9ecef;
    }
    .footer-links-copyright {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
    }
    .footer-links-copyright > p {
        margin: 0;
        color: #495057;
    }
    .footer-legal-links {
        display: flex;
        gap: 1.5rem;
    }
    .footer-legal-links a {
        color: #6c757d;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .footer-legal-links a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            gap: 1rem;
            text-align: center;
        }
        .footer-nav ul {
            justify-content: center;
        }
        .footer-bottom {
            flex-direction: column;
            text-align: center;
        }
        .footer-links-copyright {
            flex-direction: column;
            gap: 0.5rem;
        }
    }

.cookie-lv14 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .cookie-lv14__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * 0.8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .cookie-lv14__text {
        flex: 1 1 420px;
    }

    .cookie-lv14__badge {
        display: inline-flex;
        align-items: center;
        padding: 3px 8px;
        border-radius: 999px;
        font-size: 12px;
        font-weight: 700;
        margin-bottom: 6px;
        background: var(--surface-2);
        color: var(--fg-muted);
    }

    .cookie-lv14__text strong {
        display: block;
        margin-bottom: 4px;
        color: var(--fg-on-surface);
    }

    .cookie-lv14__text p {
        margin: 0;
        color: var(--fg-muted);
    }

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

    .cookie-lv14__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-lv14__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

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

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

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

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

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

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

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

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

    .plans-lv4__line h3 {
        margin: 0;
    }

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

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

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

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

.index-feedback {
        background: radial-gradient(circle at 20% 25%, rgba(255, 255, 255, 0.7), transparent 60%),
        radial-gradient(circle at 85% 65%, rgba(212, 165, 165, 0.35), transparent 55%),
        var(--gradient-accent);
        color: var(--fg-on-primary);
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 40px);
        overflow: hidden;
    }

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

    .index-feedback__h {
        text-align: center;
        margin-bottom: clamp(28px, 6vw, 60px);

        transform: translateY(-18px);
    }

    .index-feedback__eyebrow {
        margin: 0 0 10px;
        text-transform: uppercase;
        letter-spacing: 0.22em;
        font-size: 12px;
        color: rgba(58, 46, 61, 0.75);
    }

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

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

    .index-feedback__card {
        border-radius: var(--radius-xl);
        border: 1px solid rgba(58, 46, 61, 0.12);
        background: rgba(255, 255, 255, 0.6);
        box-shadow: var(--shadow-lg);
        padding: clamp(18px, 3vw, 26px);
        backdrop-filter: blur(10px);

        transform: translateY(28px);
        position: relative;
        overflow: hidden;
    }

    .index-feedback__card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.6), transparent 55%);
        opacity: 0.6;
        pointer-events: none;
    }

    .index-feedback__top {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 14px;
        position: relative;
        z-index: 1;
    }

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

    .index-feedback__name {
        margin: 0;
        font-size: 16px;
        font-weight: 700;
        color: var(--fg-on-page);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 18ch;
    }

    .index-feedback__meta {
        margin: 2px 0 0;
        font-size: 13px;
        color: rgba(58, 46, 61, 0.7);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 22ch;
    }

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

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

    .index-feedback__score {
        font-size: 12px;
        font-weight: 700;
        color: var(--fg-on-page);
    }

    .index-feedback__quote {
        margin: 14px 0 0;
        position: relative;
        z-index: 1;
        color: rgba(58, 46, 61, 0.88);
        font-size: 14px;
        line-height: 1.65;
    }

    .index-feedback__badge {
        display: inline-flex;
        margin-top: 12px;
        position: relative;
        z-index: 1;
        padding: 6px 10px;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border: 1px solid var(--border-on-surface-light);
        font-size: 11px;
        letter-spacing: 0.14em;
        text-transform: uppercase;
    }

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

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

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

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

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

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

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

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

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

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

.features-struct-v5 {
        padding: calc(var(--space-y) * 2) var(--space-x);
        background: var(--gradient-accent);
        color: var(--accent-contrast)
    }

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

    .features-struct-v5 h2, .features-struct-v5 h3, .features-struct-v5 p {
        margin: 0
    }

    .features-struct-v5 .head {
        display: grid;
        gap: calc(var(--gap) * .35)
    }

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

    .features-struct-v5 article {
        background: var(--chip-bg);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        padding: .9rem;
        display: grid;
        gap: .5rem
    }

    .features-struct-v5 .icon {
        min-height: 2rem;
        min-width: 2rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: var(--surface-1);
        border-radius: var(--radius-sm)
    }

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

    .features-struct-v5 .layout {
        display: grid;
        grid-template-columns:.9fr 1.1fr;
        gap: var(--gap)
    }

    .features-struct-v5 .chips {
        display: flex;
        flex-wrap: wrap;
        gap: .4rem
    }

    .features-struct-v5 .chips span {
        padding: .3rem .55rem;
        border-radius: var(--radius-sm);
        background: var(--chip-bg);
        border: 1px solid var(--border-on-surface)
    }

    .features-struct-v5 .list {
        display: grid;
        gap: .6rem
    }

    .features-struct-v5 .list div {
        padding: .75rem;
        border-radius: var(--radius-md);
        background: var(--chip-bg);
        border: 1px solid var(--border-on-surface)
    }

    .features-struct-v5 .timeline {
        display: grid;
        gap: .7rem
    }

    .features-struct-v5 .timeline article {
        position: relative;
        padding-left: 1.2rem
    }

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

    .features-struct-v5 .side img, .features-struct-v5 .media img {
        display: block;
        width: 100%;
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-md)
    }

    .features-struct-v5 .table {
        display: grid;
        gap: .45rem
    }

    .features-struct-v5 .row {
        display: grid;
        grid-template-columns:1fr 1fr 1fr;
        gap: .5rem;
        padding: .65rem;
        border-radius: var(--radius-md);
        background: var(--chip-bg);
        border: 1px solid var(--border-on-surface)
    }

    .features-struct-v5 .cards {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: var(--gap)
    }

    .features-struct-v5 .cta {
        display: flex;
        justify-content: flex-start
    }

    .features-struct-v5 .split {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: var(--gap)
    }

    .features-struct-v5 details {
        padding: .75rem;
        border-radius: var(--radius-md);
        background: var(--chip-bg);
        border: 1px solid var(--border-on-surface)
    }

    @media (max-width: 900px) {
        .features-struct-v5 .grid, .features-struct-v5 .cards {
            grid-template-columns:1fr 1fr
        }

        .features-struct-v5 .layout, .features-struct-v5 .split {
            grid-template-columns:1fr
        }
    }

    @media (max-width: 680px) {
        .features-struct-v5 .grid, .features-struct-v5 .cards, .features-struct-v5 .row {
            grid-template-columns:1fr
        }
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}
.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}
.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--link-hover);
}
.main-nav {
    display: flex;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(var(--gap) * 1.5);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}
.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}
.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-color: var(--overlay);
        backdrop-filter: blur(8px);
        z-index: 999;
        justify-content: center;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    }
    .main-nav.active {
        opacity: 1;
        visibility: visible;
    }
    .nav-list {
        flex-direction: column;
        align-items: center;
        background-color: var(--surface-1);
        padding: calc(var(--space-y) * 2);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
        max-width: 90%;
        width: 20rem;
    }
    .nav-link {
        padding: var(--space-y) var(--space-x);
        width: 100%;
        text-align: center;
    }
    .burger-btn.active .burger-line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }
    .burger-btn.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-btn.active .burger-line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2rem 1rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 1.5rem;
        margin-bottom: 1.5rem;
        border-bottom: 1px solid #e9ecef;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
    }
    .footer-nav ul {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: 1.5rem;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
    }
    .footer-contact-info address {
        font-style: normal;
        line-height: 1.6;
    }
    .footer-contact-info strong {
        color: #2c3e50;
    }
    .footer-contact-info a {
        color: #0066cc;
        text-decoration: none;
    }
    .footer-contact-info a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        flex: 1;
        min-width: 300px;
    }
    .footer-disclaimer {
        font-size: 0.85rem;
        color: #6c757d;
        line-height: 1.5;
        margin-bottom: 1rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid #e9ecef;
    }
    .footer-links-copyright {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
    }
    .footer-links-copyright > p {
        margin: 0;
        color: #495057;
    }
    .footer-legal-links {
        display: flex;
        gap: 1.5rem;
    }
    .footer-legal-links a {
        color: #6c757d;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .footer-legal-links a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            gap: 1rem;
            text-align: center;
        }
        .footer-nav ul {
            justify-content: center;
        }
        .footer-bottom {
            flex-direction: column;
            text-align: center;
        }
        .footer-links-copyright {
            flex-direction: column;
            gap: 0.5rem;
        }
    }

.cookie-lv14 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .cookie-lv14__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * 0.8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .cookie-lv14__text {
        flex: 1 1 420px;
    }

    .cookie-lv14__badge {
        display: inline-flex;
        align-items: center;
        padding: 3px 8px;
        border-radius: 999px;
        font-size: 12px;
        font-weight: 700;
        margin-bottom: 6px;
        background: var(--surface-2);
        color: var(--fg-muted);
    }

    .cookie-lv14__text strong {
        display: block;
        margin-bottom: 4px;
        color: var(--fg-on-surface);
    }

    .cookie-lv14__text p {
        margin: 0;
        color: var(--fg-muted);
    }

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

    .cookie-lv14__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-lv14__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

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

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

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

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

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

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

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

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

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

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

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

    .touch-orbit .main-form input::placeholder {
        color: var(--input-placeholder);
    }

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

.clarifications-l2 {

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

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

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

    .clarifications-l2__title {
        margin: 0;
        font-size: clamp(24px, 4.2vw, 40px);
        letter-spacing: -.02em;
        line-height: 1.1;
        color: var(--fg-on-alt);
    }

    .clarifications-l2__sub {
        margin: 10px 0 0;
        max-width: 72ch;
        color: var(--neutral-600);
    }

    .clarifications-l2__panel {
        position: relative;
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-lg);
        overflow: hidden;
    }

    /* постоянный скан */
    .clarifications-l2__scan {
        position: absolute;
        left: 0;
        top: -40%;
        width: 100%;
        height: 42%;
        background: linear-gradient(180deg, transparent, rgba(0, 86, 179, 0.08), transparent);
        animation: l2Scan 4.8s linear infinite;
        pointer-events: none;
    }

    @keyframes l2Scan {
        0% {
            transform: translateY(0%)
        }
        100% {
            transform: translateY(240%)
        }
    }

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

    .clarifications-l2__row {
        display: grid;
        grid-template-columns: 110px 1fr;
        gap: 12px;
        padding: 12px 14px;
        text-align: left;
        border-radius: var(--radius-lg);
        background: var(--surface-2);
        border: 1px solid var(--border-on-surface);
        cursor: pointer;
        transition: transform var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
    }

    .clarifications-l2__row:hover {
        transform: translateY(-2px);
        border-color: rgba(0, 86, 179, 0.35);
    }

    .clarifications-l2__k {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        height: 34px;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border: 1px solid rgba(0, 0, 0, 0.06);
        font-weight: 900;
    }

    .clarifications-l2__q {
        display: block;
        font-weight: 900;
        color: var(--fg-on-page);
        letter-spacing: -.01em;
        margin-bottom: 6px;
    }

    .clarifications-l2__a {
        display: block;
        color: var(--neutral-600);
        line-height: var(--line-height-base);
    }

    /* JS добавит “плавающее” выделение активного ряда */
    .clarifications-l2__row.is-focus {
        border-color: rgba(255, 107, 53, 0.45);
        box-shadow: 0 0 0 6px rgba(255, 107, 53, 0.08);
    }

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

        .clarifications-l2__k {
            justify-self: start;
            padding: 0 12px
        }
    }

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

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

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

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

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

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

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

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

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

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

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

.form-fresh-v1 {
        padding: calc(var(--space-y) * 2.8) var(--space-x);
        background: var(--bg-page);
        color: var(--fg-on-page);
    }

    .form-fresh-v1 .shell {
        max-width: 1000px;
        margin: 0 auto;
        display: grid;
        grid-template-columns:.9fr 1.1fr;
        gap: calc(var(--gap) * 1.4);
    }

    .form-fresh-v1 .intro h2 {
        margin: .3rem 0;
        font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    }

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

    .form-fresh-v1 .form {
        display: grid;
        gap: .75rem;
        padding: 1.1rem;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
    }

    .form-fresh-v1 label {
        display: grid;
        gap: .3rem;
    }

    .form-fresh-v1 span {
        font-size: .85rem;
        color: var(--fg-on-surface-light);
    }

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

    .form-fresh-v1 button {
        padding: .75rem 1rem;
        border: 0;
        border-radius: var(--radius-sm);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 700;
        cursor: pointer;
    }

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

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}
.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}
.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--link-hover);
}
.main-nav {
    display: flex;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(var(--gap) * 1.5);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}
.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}
.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-color: var(--overlay);
        backdrop-filter: blur(8px);
        z-index: 999;
        justify-content: center;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    }
    .main-nav.active {
        opacity: 1;
        visibility: visible;
    }
    .nav-list {
        flex-direction: column;
        align-items: center;
        background-color: var(--surface-1);
        padding: calc(var(--space-y) * 2);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
        max-width: 90%;
        width: 20rem;
    }
    .nav-link {
        padding: var(--space-y) var(--space-x);
        width: 100%;
        text-align: center;
    }
    .burger-btn.active .burger-line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }
    .burger-btn.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-btn.active .burger-line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2rem 1rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 1.5rem;
        margin-bottom: 1.5rem;
        border-bottom: 1px solid #e9ecef;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
    }
    .footer-nav ul {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: 1.5rem;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
    }
    .footer-contact-info address {
        font-style: normal;
        line-height: 1.6;
    }
    .footer-contact-info strong {
        color: #2c3e50;
    }
    .footer-contact-info a {
        color: #0066cc;
        text-decoration: none;
    }
    .footer-contact-info a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        flex: 1;
        min-width: 300px;
    }
    .footer-disclaimer {
        font-size: 0.85rem;
        color: #6c757d;
        line-height: 1.5;
        margin-bottom: 1rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid #e9ecef;
    }
    .footer-links-copyright {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
    }
    .footer-links-copyright > p {
        margin: 0;
        color: #495057;
    }
    .footer-legal-links {
        display: flex;
        gap: 1.5rem;
    }
    .footer-legal-links a {
        color: #6c757d;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .footer-legal-links a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            gap: 1rem;
            text-align: center;
        }
        .footer-nav ul {
            justify-content: center;
        }
        .footer-bottom {
            flex-direction: column;
            text-align: center;
        }
        .footer-links-copyright {
            flex-direction: column;
            gap: 0.5rem;
        }
    }

.cookie-lv14 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .cookie-lv14__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * 0.8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .cookie-lv14__text {
        flex: 1 1 420px;
    }

    .cookie-lv14__badge {
        display: inline-flex;
        align-items: center;
        padding: 3px 8px;
        border-radius: 999px;
        font-size: 12px;
        font-weight: 700;
        margin-bottom: 6px;
        background: var(--surface-2);
        color: var(--fg-muted);
    }

    .cookie-lv14__text strong {
        display: block;
        margin-bottom: 4px;
        color: var(--fg-on-surface);
    }

    .cookie-lv14__text p {
        margin: 0;
        color: var(--fg-muted);
    }

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

    .cookie-lv14__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-lv14__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

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

    .terms-layout-e .wrap {
        max-width: 900px;
        margin: 0 auto;
    }

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

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

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

    .terms-layout-e .rows {
        display: grid;
        gap: 10px;
    }

    .terms-layout-e article {
        border-left: 4px solid var(--brand);
        background: var(--surface-1);
        border-radius: var(--radius-sm);
        padding: 12px 12px 12px 14px;
        box-shadow: var(--shadow-sm);
    }

    .terms-layout-e .head h3 {
        margin: 0 0 8px;
    }

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

    .terms-layout-e p, .terms-layout-e 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);
    padding: var(--space-y) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}
.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}
.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--link-hover);
}
.main-nav {
    display: flex;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(var(--gap) * 1.5);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}
.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}
.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-color: var(--overlay);
        backdrop-filter: blur(8px);
        z-index: 999;
        justify-content: center;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    }
    .main-nav.active {
        opacity: 1;
        visibility: visible;
    }
    .nav-list {
        flex-direction: column;
        align-items: center;
        background-color: var(--surface-1);
        padding: calc(var(--space-y) * 2);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
        max-width: 90%;
        width: 20rem;
    }
    .nav-link {
        padding: var(--space-y) var(--space-x);
        width: 100%;
        text-align: center;
    }
    .burger-btn.active .burger-line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }
    .burger-btn.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-btn.active .burger-line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2rem 1rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 1.5rem;
        margin-bottom: 1.5rem;
        border-bottom: 1px solid #e9ecef;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
    }
    .footer-nav ul {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: 1.5rem;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
    }
    .footer-contact-info address {
        font-style: normal;
        line-height: 1.6;
    }
    .footer-contact-info strong {
        color: #2c3e50;
    }
    .footer-contact-info a {
        color: #0066cc;
        text-decoration: none;
    }
    .footer-contact-info a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        flex: 1;
        min-width: 300px;
    }
    .footer-disclaimer {
        font-size: 0.85rem;
        color: #6c757d;
        line-height: 1.5;
        margin-bottom: 1rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid #e9ecef;
    }
    .footer-links-copyright {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
    }
    .footer-links-copyright > p {
        margin: 0;
        color: #495057;
    }
    .footer-legal-links {
        display: flex;
        gap: 1.5rem;
    }
    .footer-legal-links a {
        color: #6c757d;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .footer-legal-links a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            gap: 1rem;
            text-align: center;
        }
        .footer-nav ul {
            justify-content: center;
        }
        .footer-bottom {
            flex-direction: column;
            text-align: center;
        }
        .footer-links-copyright {
            flex-direction: column;
            gap: 0.5rem;
        }
    }

.cookie-lv14 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .cookie-lv14__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * 0.8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .cookie-lv14__text {
        flex: 1 1 420px;
    }

    .cookie-lv14__badge {
        display: inline-flex;
        align-items: center;
        padding: 3px 8px;
        border-radius: 999px;
        font-size: 12px;
        font-weight: 700;
        margin-bottom: 6px;
        background: var(--surface-2);
        color: var(--fg-muted);
    }

    .cookie-lv14__text strong {
        display: block;
        margin-bottom: 4px;
        color: var(--fg-on-surface);
    }

    .cookie-lv14__text p {
        margin: 0;
        color: var(--fg-muted);
    }

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

    .cookie-lv14__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-lv14__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

.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);
    padding: var(--space-y) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}
.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}
.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--link-hover);
}
.main-nav {
    display: flex;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(var(--gap) * 1.5);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}
.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}
.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-color: var(--overlay);
        backdrop-filter: blur(8px);
        z-index: 999;
        justify-content: center;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    }
    .main-nav.active {
        opacity: 1;
        visibility: visible;
    }
    .nav-list {
        flex-direction: column;
        align-items: center;
        background-color: var(--surface-1);
        padding: calc(var(--space-y) * 2);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
        max-width: 90%;
        width: 20rem;
    }
    .nav-link {
        padding: var(--space-y) var(--space-x);
        width: 100%;
        text-align: center;
    }
    .burger-btn.active .burger-line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }
    .burger-btn.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-btn.active .burger-line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2rem 1rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 1.5rem;
        margin-bottom: 1.5rem;
        border-bottom: 1px solid #e9ecef;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
    }
    .footer-nav ul {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: 1.5rem;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
    }
    .footer-contact-info address {
        font-style: normal;
        line-height: 1.6;
    }
    .footer-contact-info strong {
        color: #2c3e50;
    }
    .footer-contact-info a {
        color: #0066cc;
        text-decoration: none;
    }
    .footer-contact-info a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        flex: 1;
        min-width: 300px;
    }
    .footer-disclaimer {
        font-size: 0.85rem;
        color: #6c757d;
        line-height: 1.5;
        margin-bottom: 1rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid #e9ecef;
    }
    .footer-links-copyright {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
    }
    .footer-links-copyright > p {
        margin: 0;
        color: #495057;
    }
    .footer-legal-links {
        display: flex;
        gap: 1.5rem;
    }
    .footer-legal-links a {
        color: #6c757d;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .footer-legal-links a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            gap: 1rem;
            text-align: center;
        }
        .footer-nav ul {
            justify-content: center;
        }
        .footer-bottom {
            flex-direction: column;
            text-align: center;
        }
        .footer-links-copyright {
            flex-direction: column;
            gap: 0.5rem;
        }
    }

.cookie-lv14 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .cookie-lv14__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * 0.8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .cookie-lv14__text {
        flex: 1 1 420px;
    }

    .cookie-lv14__badge {
        display: inline-flex;
        align-items: center;
        padding: 3px 8px;
        border-radius: 999px;
        font-size: 12px;
        font-weight: 700;
        margin-bottom: 6px;
        background: var(--surface-2);
        color: var(--fg-muted);
    }

    .cookie-lv14__text strong {
        display: block;
        margin-bottom: 4px;
        color: var(--fg-on-surface);
    }

    .cookie-lv14__text p {
        margin: 0;
        color: var(--fg-muted);
    }

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

    .cookie-lv14__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-lv14__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

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

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

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

    .thank-mode-a p {
        margin: 12px 0 0;
        opacity: .92;
    }

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

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}
.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}
.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--link-hover);
}
.main-nav {
    display: flex;
}
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(var(--gap) * 1.5);
}
.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}
.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}
.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-color: var(--overlay);
        backdrop-filter: blur(8px);
        z-index: 999;
        justify-content: center;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    }
    .main-nav.active {
        opacity: 1;
        visibility: visible;
    }
    .nav-list {
        flex-direction: column;
        align-items: center;
        background-color: var(--surface-1);
        padding: calc(var(--space-y) * 2);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
        max-width: 90%;
        width: 20rem;
    }
    .nav-link {
        padding: var(--space-y) var(--space-x);
        width: 100%;
        text-align: center;
    }
    .burger-btn.active .burger-line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }
    .burger-btn.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-btn.active .burger-line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2rem 1rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 1.5rem;
        margin-bottom: 1.5rem;
        border-bottom: 1px solid #e9ecef;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
    }
    .footer-nav ul {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: 1.5rem;
    }
    .footer-nav a {
        color: #495057;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
    }
    .footer-contact-info address {
        font-style: normal;
        line-height: 1.6;
    }
    .footer-contact-info strong {
        color: #2c3e50;
    }
    .footer-contact-info a {
        color: #0066cc;
        text-decoration: none;
    }
    .footer-contact-info a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        flex: 1;
        min-width: 300px;
    }
    .footer-disclaimer {
        font-size: 0.85rem;
        color: #6c757d;
        line-height: 1.5;
        margin-bottom: 1rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid #e9ecef;
    }
    .footer-links-copyright {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
    }
    .footer-links-copyright > p {
        margin: 0;
        color: #495057;
    }
    .footer-legal-links {
        display: flex;
        gap: 1.5rem;
    }
    .footer-legal-links a {
        color: #6c757d;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .footer-legal-links a:hover {
        color: #007bff;
        text-decoration: underline;
    }
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            gap: 1rem;
            text-align: center;
        }
        .footer-nav ul {
            justify-content: center;
        }
        .footer-bottom {
            flex-direction: column;
            text-align: center;
        }
        .footer-links-copyright {
            flex-direction: column;
            gap: 0.5rem;
        }
    }

.cookie-lv14 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .cookie-lv14__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * 0.8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .cookie-lv14__text {
        flex: 1 1 420px;
    }

    .cookie-lv14__badge {
        display: inline-flex;
        align-items: center;
        padding: 3px 8px;
        border-radius: 999px;
        font-size: 12px;
        font-weight: 700;
        margin-bottom: 6px;
        background: var(--surface-2);
        color: var(--fg-muted);
    }

    .cookie-lv14__text strong {
        display: block;
        margin-bottom: 4px;
        color: var(--fg-on-surface);
    }

    .cookie-lv14__text p {
        margin: 0;
        color: var(--fg-muted);
    }

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

    .cookie-lv14__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-lv14__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

.err-slab-e {
        padding: clamp(56px, 10vw, 112px) 20px;
        background: repeating-linear-gradient(45deg, var(--bg-alt), var(--bg-alt) 14px, var(--neutral-0) 14px, var(--neutral-0) 28px);
        color: var(--fg-on-page);
    }

    .err-slab-e .inner {
        max-width: 700px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(26px, 4vw, 42px);
        background: var(--surface-1);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-md);
    }

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

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

    .err-slab-e a {
        display: inline-block;
        margin-top: 16px;
        color: var(--link);
        text-decoration: none;
        border-bottom: 2px solid var(--link);
        padding-bottom: 2px;
    }