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

  --max-w: 920px;
  --space-x: 0.86rem;
  --space-y: 0.9rem;
  --gap: 0.76rem;

  --radius-xl: 0.9rem;
  --radius-lg: 0.54rem;
  --radius-md: 0.33rem;
  --radius-sm: 0.17rem;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.09);
  --shadow-md: 0 3px 12px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.14);

  --overlay: rgba(255, 255, 255, 0.85);
  --anim-duration: 90ms;
  --anim-ease: cubic-bezier(0.22,1,0.36,1);
  --random-number: 2;

  --brand: #3A86FF;
  --brand-contrast: #FFFFFF;
  --accent: #FF6B6B;
  --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(233, 236, 239, 0.7);

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

  --bg-accent: #FFE8E8;
  --fg-on-accent: #B33E3E;
  --bg-accent-hover: #FF5252;

  --link: #3A86FF;
  --link-hover: #2674FF;

  --gradient-hero: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
  --gradient-accent: linear-gradient(135deg, #3A86FF 0%, #6A9EFF 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);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    max-width: var(--max-w);
    margin: 0 auto;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-y) var(--space-x);
}

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
}

.contact-cta {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.25);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
}

.contact-cta:hover,
.contact-cta:focus {
    background-color: var(--bg-accent-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

.header-bottom {
    padding: 0 var(--space-x) var(--space-y);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-nav {
    flex-grow: 1;
}

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

.nav-link {
    color: var(--link);
    text-decoration: none;
    padding: calc(var(--space-y) * 0.5) calc(var(--space-x) * 0.75);
    border-radius: var(--radius-sm);
    transition: color var(--anim-duration) var(--anim-ease), background-color var(--anim-duration) var(--anim-ease);
}

.nav-link:hover,
.nav-link:focus {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
    outline: none;
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) * 0.5);
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
}

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

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

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
        padding: var(--space-y) var(--space-x);
        z-index: 1000;
        display: none;
    }

    .main-nav.active {
        display: block;
    }

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

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
    }

    .header-bottom {
        position: relative;
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #eaeaea;
        padding: 2.5rem 1rem;
        font-family: system-ui, -apple-system, sans-serif;
        font-size: 0.9rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
    }
    .footer-section {
        flex: 1;
        min-width: 250px;
    }
    .brand-section {
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
    }
    .footer-logo {
        font-size: 1.5rem;
        font-weight: 700;
        color: #222;
        letter-spacing: -0.5px;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #555;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #000;
    }
    .footer-legal-links {
        color: #888;
    }
    .footer-legal-links a {
        color: #666;
        text-decoration: none;
    }
    .footer-legal-links a:hover {
        text-decoration: underline;
    }
    .footer-legal-links span {
        margin: 0 0.5rem;
    }
    .contact-section {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 1.5rem;
        text-align: right;
    }
    .footer-contact {
        font-style: normal;
        line-height: 1.6;
    }
    .footer-contact div {
        margin-bottom: 0.25rem;
    }
    .footer-contact a {
        color: #333;
        text-decoration: none;
    }
    .footer-contact a:hover {
        text-decoration: underline;
    }
    .footer-disclaimer {
        color: #777;
        line-height: 1.5;
        font-size: 0.85rem;
        border-top: 1px solid #eee;
        padding-top: 1rem;
    }
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 2.5rem;
        }
        .contact-section {
            text-align: left;
        }
        .footer-nav ul {
            gap: 1rem;
        }
    }

.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-buttons-c7 { padding: clamp(3.9rem,9vw,7rem) var(--space-x); background: radial-gradient(circle at 20% 20%, rgba(255,255,255,.18), transparent 25%), var(--gradient-accent); color: var(--fg-on-primary); }
.intro-buttons-c7__wrap { max-width: 58rem; margin: 0 auto; text-align: center; }
.intro-buttons-c7__copy p { margin: 0; color: rgba(255,255,255,.75); text-transform: uppercase; letter-spacing: .1em; font-size: .82rem; }
.intro-buttons-c7__copy h1 { margin: .6rem 0 0; font-size: clamp(2.5rem,5vw,4.6rem); line-height: 1; }
.intro-buttons-c7__copy span { display: block; margin-top: .9rem; color: rgba(255,255,255,.88); }
.intro-buttons-c7__actions { margin-top: 1.2rem; display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap; }
.intro-buttons-c7__btn { display: inline-flex; min-height: 2.85rem; align-items: center; justify-content: center; padding: 0 1rem; border-radius: 999px; text-decoration: none; background: rgba(255,255,255,.14); color: var(--fg-on-primary); border: 1px solid rgba(255,255,255,.18); }
.intro-buttons-c7__btn--primary { background: var(--surface-1); color: var(--fg-on-page); }

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

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

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

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

    .cta-struct-v2 .center, .cta-struct-v2 .banner, .cta-struct-v2 .stack, .cta-struct-v2 .bar, .cta-struct-v2 .split, .cta-struct-v2 .duo article {
        padding: .9rem;
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface)
    }

    .cta-struct-v2 .center {
        display: grid;
        gap: .5rem;
        justify-items: center;
        text-align: center
    }

    .cta-struct-v2 .split {
        display: grid;
        grid-template-columns:1fr auto;
        gap: var(--gap);
        align-items: center
    }

    .cta-struct-v2 .actions {
        display: flex;
        gap: .45rem;
        flex-wrap: wrap
    }

    .cta-struct-v2 .actions a, .cta-struct-v2 .center a, .cta-struct-v2 .banner > a, .cta-struct-v2 .duo a {
        display: inline-flex;
        min-height: 2.35rem;
        padding: 0 .85rem;
        align-items: center;
        border-radius: var(--radius-sm);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border: 1px solid var(--ring)
    }

    .cta-struct-v2 .banner {
        display: grid;
        gap: .6rem
    }

    .cta-struct-v2 .numbers {
        display: grid;
        grid-template-columns:repeat(3, minmax(0, 1fr));
        gap: .5rem
    }

    .cta-struct-v2 .numbers div {
        padding: .6rem;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light)
    }

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

    .cta-struct-v2 .duo article {
        display: grid;
        gap: .45rem
    }

    .cta-struct-v2 .stack {
        display: grid;
        gap: .6rem;
        justify-items: start
    }

    .cta-struct-v2 .chips {
        display: flex;
        gap: .35rem;
        flex-wrap: wrap
    }

    .cta-struct-v2 .chips span {
        padding: .28rem .5rem;
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light)
    }

    .cta-struct-v2 .bar {
        display: grid;
        grid-template-columns:1fr auto;
        gap: var(--gap);
        align-items: center
    }

    @media (max-width: 820px) {
        .cta-struct-v2 .split, .cta-struct-v2 .bar, .cta-struct-v2 .duo {
            grid-template-columns:1fr
        }

        .cta-struct-v2 .numbers {
            grid-template-columns:1fr 1fr
        }
    }

    @media (max-width: 620px) {
        .cta-struct-v2 .numbers {
            grid-template-columns:1fr
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .visual-ledger-l2__head {
        margin-bottom: 1rem;
        text-align: center;
    }

    .visual-ledger-l2__head p {
        margin: 0;
        color: var(--neutral-600);
        font-size: .82rem;
        text-transform: uppercase;
        letter-spacing: .1em;
    }

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

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

    .visual-ledger-l2__deck figure {
        margin: 0;
        overflow: hidden;
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
    }

    .visual-ledger-l2__deck img {
        display: block;
        width: 100%;
        height: 14rem;
        object-fit: cover;
    }

    .visual-ledger-l2__deck figcaption {
        padding: 1rem;
    }

    .visual-ledger-l2__deck strong {
        color: var(--brand);
    }

    .visual-ledger-l2__deck h3 {
        margin: .5rem 0 .35rem;
    }

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

.values-spine-c1 {
        padding: clamp(3.5rem, 8vw, 6.2rem) var(--space-x);
        background: var(--gradient-hero);
        color: var(--fg-on-page);
    }

    .values-spine-c1__wrap {
        max-width: 58rem;
        margin: 0 auto;
    }

    .values-spine-c1__head {
        text-align: center;
        margin-bottom: 1.2rem;
    }

    .values-spine-c1__head p {
        margin: 0;
        color: var(--neutral-600);
        text-transform: uppercase;
        letter-spacing: .1em;
        font-size: .82rem;
    }

    .values-spine-c1__head h2 {
        margin: .55rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
        color: var(--neutral-900);
    }

    .values-spine-c1__head span {
        display: block;
        margin-top: .8rem;
        color: var(--neutral-600);
    }

    .values-spine-c1__list {
        display: grid;
        gap: .8rem;
    }

    .values-spine-c1__list article {
        display: grid;
        grid-template-columns: 3rem 1fr;
        gap: .9rem;
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
    }

    .values-spine-c1__list strong {
        display: grid;
        place-items: center;
        width: 3rem;
        height: 3rem;
        border-radius: var(--radius-md);
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-weight: bold;
    }

    .values-spine-c1__list h3 {
        margin: 0;
        color: var(--neutral-900);
    }

    .values-spine-c1__list p {
        margin: .35rem 0 0;
        color: var(--neutral-800);
    }

    .values-spine-c1__list small {
        display: block;
        margin-top: .55rem;
        color: var(--neutral-600);
        font-style: italic;
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    max-width: var(--max-w);
    margin: 0 auto;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-y) var(--space-x);
}

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
}

.contact-cta {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.25);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
}

.contact-cta:hover,
.contact-cta:focus {
    background-color: var(--bg-accent-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

.header-bottom {
    padding: 0 var(--space-x) var(--space-y);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-nav {
    flex-grow: 1;
}

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

.nav-link {
    color: var(--link);
    text-decoration: none;
    padding: calc(var(--space-y) * 0.5) calc(var(--space-x) * 0.75);
    border-radius: var(--radius-sm);
    transition: color var(--anim-duration) var(--anim-ease), background-color var(--anim-duration) var(--anim-ease);
}

.nav-link:hover,
.nav-link:focus {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
    outline: none;
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) * 0.5);
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
}

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

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

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
        padding: var(--space-y) var(--space-x);
        z-index: 1000;
        display: none;
    }

    .main-nav.active {
        display: block;
    }

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

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
    }

    .header-bottom {
        position: relative;
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #eaeaea;
        padding: 2.5rem 1rem;
        font-family: system-ui, -apple-system, sans-serif;
        font-size: 0.9rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
    }
    .footer-section {
        flex: 1;
        min-width: 250px;
    }
    .brand-section {
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
    }
    .footer-logo {
        font-size: 1.5rem;
        font-weight: 700;
        color: #222;
        letter-spacing: -0.5px;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #555;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #000;
    }
    .footer-legal-links {
        color: #888;
    }
    .footer-legal-links a {
        color: #666;
        text-decoration: none;
    }
    .footer-legal-links a:hover {
        text-decoration: underline;
    }
    .footer-legal-links span {
        margin: 0 0.5rem;
    }
    .contact-section {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 1.5rem;
        text-align: right;
    }
    .footer-contact {
        font-style: normal;
        line-height: 1.6;
    }
    .footer-contact div {
        margin-bottom: 0.25rem;
    }
    .footer-contact a {
        color: #333;
        text-decoration: none;
    }
    .footer-contact a:hover {
        text-decoration: underline;
    }
    .footer-disclaimer {
        color: #777;
        line-height: 1.5;
        font-size: 0.85rem;
        border-top: 1px solid #eee;
        padding-top: 1rem;
    }
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 2.5rem;
        }
        .contact-section {
            text-align: left;
        }
        .footer-nav ul {
            gap: 1rem;
        }
    }

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

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

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

    .identity-lv2__head {
        text-align: center;
        margin-bottom: 16px;
    }

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

    .identity-lv2__head h2 {
        margin: 7px 0 0;
        font-size: clamp(28px, 4vw, 44px);
    }

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

    .identity-lv2__grid article {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        padding: var(--space-y) var(--space-x);
    }

    .identity-lv2__grid h3 {
        margin: 0;
    }

    .identity-lv2__grid strong {
        display: block;
        margin: 6px 0;
        color: var(--brand);
    }

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

    .identity-lv2__grid blockquote {
        margin: 0;
        padding: 8px 10px;
        border-left: 3px solid var(--brand);
        background: var(--surface-2);
        color: var(--neutral-800);
    }

.about-mission {

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

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

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

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

.about-timeline {

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

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

    .about-timeline .about-timeline__tbl {
        width: 100%;
        border-collapse: collapse;
    }

    .about-timeline .about-timeline__tbl td {
        border-bottom: 1px solid var(--ring);
        padding: .7rem .8rem;
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    max-width: var(--max-w);
    margin: 0 auto;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-y) var(--space-x);
}

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
}

.contact-cta {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.25);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
}

.contact-cta:hover,
.contact-cta:focus {
    background-color: var(--bg-accent-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

.header-bottom {
    padding: 0 var(--space-x) var(--space-y);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-nav {
    flex-grow: 1;
}

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

.nav-link {
    color: var(--link);
    text-decoration: none;
    padding: calc(var(--space-y) * 0.5) calc(var(--space-x) * 0.75);
    border-radius: var(--radius-sm);
    transition: color var(--anim-duration) var(--anim-ease), background-color var(--anim-duration) var(--anim-ease);
}

.nav-link:hover,
.nav-link:focus {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
    outline: none;
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) * 0.5);
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
}

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

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

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
        padding: var(--space-y) var(--space-x);
        z-index: 1000;
        display: none;
    }

    .main-nav.active {
        display: block;
    }

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

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
    }

    .header-bottom {
        position: relative;
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #eaeaea;
        padding: 2.5rem 1rem;
        font-family: system-ui, -apple-system, sans-serif;
        font-size: 0.9rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
    }
    .footer-section {
        flex: 1;
        min-width: 250px;
    }
    .brand-section {
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
    }
    .footer-logo {
        font-size: 1.5rem;
        font-weight: 700;
        color: #222;
        letter-spacing: -0.5px;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #555;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #000;
    }
    .footer-legal-links {
        color: #888;
    }
    .footer-legal-links a {
        color: #666;
        text-decoration: none;
    }
    .footer-legal-links a:hover {
        text-decoration: underline;
    }
    .footer-legal-links span {
        margin: 0 0.5rem;
    }
    .contact-section {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 1.5rem;
        text-align: right;
    }
    .footer-contact {
        font-style: normal;
        line-height: 1.6;
    }
    .footer-contact div {
        margin-bottom: 0.25rem;
    }
    .footer-contact a {
        color: #333;
        text-decoration: none;
    }
    .footer-contact a:hover {
        text-decoration: underline;
    }
    .footer-disclaimer {
        color: #777;
        line-height: 1.5;
        font-size: 0.85rem;
        border-top: 1px solid #eee;
        padding-top: 1rem;
    }
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 2.5rem;
        }
        .contact-section {
            text-align: left;
        }
        .footer-nav ul {
            gap: 1rem;
        }
    }

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

.hiw-ledger-l2 {
        padding: clamp(3.2rem, 7vw, 5.8rem) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    .hiw-ledger-l2__wrap {
        max-width: 60rem;
        margin: 0 auto;
    }

    .hiw-ledger-l2__head {
        text-align: center;
        margin-bottom: 1.2rem;
    }

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

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

    .hiw-ledger-l2__rows {
        display: grid;
        gap: .8rem;
    }

    .hiw-ledger-l2__rows article {
        display: grid;
        grid-template-columns: 3rem 1fr;
        gap: .9rem;
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--bg-alt);
        border: 1px solid var(--border-on-surface-light);
    }

    .hiw-ledger-l2__rows strong {
        display: grid;
        place-items: center;
        width: 3rem;
        height: 3rem;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        color: var(--brand);
        box-shadow: var(--shadow-sm);
    }

    .hiw-ledger-l2__rows h3 {
        margin: 0;
    }

    .hiw-ledger-l2__rows p {
        margin: .35rem 0 0;
        color: var(--neutral-600);
    }

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

.social-l2 {

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

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

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

    .social-l2__title {
        margin: 0;
        font-size: clamp(24px, 4.2vw, 40px);
        letter-spacing: -.02em;
        line-height: 1.1;
    }

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

    .social-l2__wrap {
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-lg);
        overflow: hidden;
    }

    .social-l2__quoteBox {
        padding: 18px;
        border-bottom: 1px solid var(--border-on-surface);
        position: relative;
    }

    .social-l2__quote {
        display: none;
    }

    .social-l2__quote.is-on {
        display: block;
    }

    .social-l2__q {
        font-size: clamp(16px, 2.2vw, 20px);
        line-height: 1.7;
        color: var(--fg-on-page);
        letter-spacing: -.01em;
    }

    .social-l2__m {
        margin-top: 12px;
        color: var(--neutral-600);
        font-weight: 800;
    }

    .social-l2__badges {
        overflow: hidden;
        background: var(--bg-alt);
    }

    .social-l2__badgeTrack {
        display: flex;
        gap: 10px;
        padding: 12px;
        width: max-content;
        animation: socialL2Badges 16s linear infinite;
    }

    @keyframes socialL2Badges {
        0% {
            transform: translateX(0)
        }
        100% {
            transform: translateX(-50%)
        }
    }

    .social-l2__badge {
        display: inline-flex;
        align-items: center;
        padding: 8px 12px;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border: 1px solid rgba(0, 0, 0, 0.06);
        font-weight: 900;
        white-space: nowrap;
    }

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

.capabilities-alt {

        background: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: clamp(60px, 8vw, 100px) clamp(16px, 3vw, 40px);
        position: relative;
        overflow: hidden;
    }

    .capabilities-alt::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 200px;
        background: linear-gradient(180deg, var(--accent) 0%, transparent 100%);
        opacity: 0.1;
    }

    .capabilities-alt .capabilities-alt__c {
        max-width: var(--max-w);
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    .capabilities-alt .capabilities-alt__h {
        text-align: center;
        margin-bottom: clamp(48px, 7vw, 80px);

    }

    .capabilities-alt h2 {
        font-size: clamp(32px, 5vw, 48px);
        font-weight: 800;
        margin: 0 0 1rem;
    }

    .capabilities-alt .capabilities-alt__subtitle {
        font-size: clamp(16px, 2vw, 20px);
        margin: 0;
        opacity: 0.9;
    }

    .capabilities-alt .capabilities-alt__flow {
        display: flex;
        flex-direction: column;
        gap: clamp(40px, 5vw, 64px);
        position: relative;
    }

    .capabilities-alt .capabilities-alt__item {
        display: flex;
        align-items: center;
        gap: clamp(24px, 4vw, 48px);

        transform: translateX(-50px);
    }

    .capabilities-alt .capabilities-alt__item:nth-child(even) {
        flex-direction: row-reverse;
        transform: translateX(50px);
    }

    .capabilities-alt .capabilities-alt__connector {
        flex-shrink: 0;
        width: 60px;
        height: 60px;
        background: var(--accent);
        border-radius: 50%;
        position: relative;
        box-shadow: 0 0 0 8px rgba(255, 107, 53, 0.2);
        animation: pulse 2s ease-in-out infinite;
    }

    @keyframes pulse {
        0%, 100% {
            box-shadow: 0 0 0 8px rgba(255, 107, 53, 0.2);
        }
        50% {
            box-shadow: 0 0 0 16px rgba(255, 107, 53, 0.1);
        }
    }

    .capabilities-alt .capabilities-alt__connector::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 24px;
        height: 24px;
        background: var(--fg-on-primary);
        border-radius: 50%;
    }

    .capabilities-alt .capabilities-alt__bubble {
        flex: 1;
        background: var(--surface-light);
        padding: clamp(24px, 3vw, 36px);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        position: relative;
    }

    .capabilities-alt .capabilities-alt__bubble::before {
        content: '';
        position: absolute;
        top: 50%;
        width: 20px;
        height: 20px;
        background: var(--surface-light);
        transform: translateY(-50%) rotate(45deg);
    }

    .capabilities-alt .capabilities-alt__item:nth-child(odd) .capabilities-alt__bubble::before {
        left: -10px;
    }

    .capabilities-alt .capabilities-alt__item:nth-child(even) .capabilities-alt__bubble::before {
        right: -10px;
    }

    .capabilities-alt .capabilities-alt__icon {
        color: var(--fg-on-surface-light);
        font-size: 36px;
        margin-bottom: 1rem;
    }

    .capabilities-alt .capabilities-alt__bubble h3 {
        font-size: clamp(20px, 2.5vw, 26px);
        font-weight: 700;
        margin: 0 0 0.75rem;
        color: var(--brand);
    }

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

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    max-width: var(--max-w);
    margin: 0 auto;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-y) var(--space-x);
}

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
}

.contact-cta {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.25);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
}

.contact-cta:hover,
.contact-cta:focus {
    background-color: var(--bg-accent-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

.header-bottom {
    padding: 0 var(--space-x) var(--space-y);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-nav {
    flex-grow: 1;
}

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

.nav-link {
    color: var(--link);
    text-decoration: none;
    padding: calc(var(--space-y) * 0.5) calc(var(--space-x) * 0.75);
    border-radius: var(--radius-sm);
    transition: color var(--anim-duration) var(--anim-ease), background-color var(--anim-duration) var(--anim-ease);
}

.nav-link:hover,
.nav-link:focus {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
    outline: none;
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) * 0.5);
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
}

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

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

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
        padding: var(--space-y) var(--space-x);
        z-index: 1000;
        display: none;
    }

    .main-nav.active {
        display: block;
    }

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

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
    }

    .header-bottom {
        position: relative;
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #eaeaea;
        padding: 2.5rem 1rem;
        font-family: system-ui, -apple-system, sans-serif;
        font-size: 0.9rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
    }
    .footer-section {
        flex: 1;
        min-width: 250px;
    }
    .brand-section {
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
    }
    .footer-logo {
        font-size: 1.5rem;
        font-weight: 700;
        color: #222;
        letter-spacing: -0.5px;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #555;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #000;
    }
    .footer-legal-links {
        color: #888;
    }
    .footer-legal-links a {
        color: #666;
        text-decoration: none;
    }
    .footer-legal-links a:hover {
        text-decoration: underline;
    }
    .footer-legal-links span {
        margin: 0 0.5rem;
    }
    .contact-section {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 1.5rem;
        text-align: right;
    }
    .footer-contact {
        font-style: normal;
        line-height: 1.6;
    }
    .footer-contact div {
        margin-bottom: 0.25rem;
    }
    .footer-contact a {
        color: #333;
        text-decoration: none;
    }
    .footer-contact a:hover {
        text-decoration: underline;
    }
    .footer-disclaimer {
        color: #777;
        line-height: 1.5;
        font-size: 0.85rem;
        border-top: 1px solid #eee;
        padding-top: 1rem;
    }
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 2.5rem;
        }
        .contact-section {
            text-align: left;
        }
        .footer-nav ul {
            gap: 1rem;
        }
    }

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

.contacts-fresh-v3 {
        padding: calc(var(--space-y) * 3) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-surface);
    }

    .contacts-fresh-v3 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns:.9fr 1.1fr;
        gap: calc(var(--gap) * 2);
    }

    .contacts-fresh-v3 .left h2 {
        margin: .3rem 0;
        font-size: clamp(1.9rem, 3.8vw, 2.9rem);
    }

    .contacts-fresh-v3 .left p {
        max-width: 46ch;
        color: var(--fg-on-surface-light);
    }

    .contacts-fresh-v3 .right {
        display: grid;
        gap: var(--gap);
    }

    .contacts-fresh-v3 .row {
        padding: 1rem 1.1rem;
        border-left: 4px solid var(--bg-primary);
        background: var(--surface-2);
        border-radius: var(--radius-sm);
    }

    .contacts-fresh-v3 h3 {
        margin: 0 0 .3rem;
    }

    .contacts-fresh-v3 p {
        margin: 0;
        font-weight: 700;
    }

    .contacts-fresh-v3 small {
        color: var(--fg-on-surface-light);
    }

    .contacts-fresh-v3 a {
        color: var(--link);
        text-decoration: none;
    }
    .contacts-fresh-v3 a:hover {
        color: var(--link-hover);
        text-decoration: underline;
    }

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

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

    .form-layout-a .wrap {
        max-width: 820px;
        margin: 0 auto;
    }

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

    .form-layout-a h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 40px);
        color: var(--fg-on-surface);
    }

    .form-layout-a .section-head p {
        margin: 10px auto 0;
        max-width: 66ch;
        opacity: .92;
        color: var(--fg-on-surface);
    }

    .form-layout-a .card {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        padding: 16px;
        background: var(--surface-light);
    }

    .form-layout-a label {
        display: grid;
        gap: 6px;
        margin-bottom: 10px;
        color: var(--fg-on-surface);
    }

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

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

    .form-layout-a .agree {
        display: flex;
        gap: 8px;
        align-items: center;
        color: var(--fg-on-surface);
    }

    .form-layout-a .agree a {
        color: var(--link);
        text-decoration: none;
    }

    .form-layout-a .agree a:hover {
        color: var(--link-hover);
        text-decoration: underline;
    }

    .form-layout-a button {
        margin-top: 8px;
        border: 0;
        border-radius: var(--radius-sm);
        padding: 10px 14px;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font: inherit;
        cursor: pointer;
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

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

.connect--light-v6 {
        padding: 40px 20px;
        background: var(--surface-light);
        color: var(--fg-on-surface-light);
    }

    .connect__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
        gap: 20px;
        align-items: center;
    }

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

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

    .connect__chips {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: flex-end;
    }

    .connect__chip {
        padding: 6px 12px;
        border-radius: 999px;
        background: var(--bg-page);
        border: 1px solid var(--border-on-surface-light);
        text-decoration: none;
        font-size: 0.85rem;
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }

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

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

    @media (max-width: 768px) {
        .connect__inner {
            grid-template-columns: minmax(0, 1fr);
        }

        .connect__chips {
            justify-content: flex-start;
        }
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    max-width: var(--max-w);
    margin: 0 auto;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-y) var(--space-x);
}

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
}

.contact-cta {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.25);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
}

.contact-cta:hover,
.contact-cta:focus {
    background-color: var(--bg-accent-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

.header-bottom {
    padding: 0 var(--space-x) var(--space-y);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-nav {
    flex-grow: 1;
}

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

.nav-link {
    color: var(--link);
    text-decoration: none;
    padding: calc(var(--space-y) * 0.5) calc(var(--space-x) * 0.75);
    border-radius: var(--radius-sm);
    transition: color var(--anim-duration) var(--anim-ease), background-color var(--anim-duration) var(--anim-ease);
}

.nav-link:hover,
.nav-link:focus {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
    outline: none;
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) * 0.5);
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
}

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

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

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
        padding: var(--space-y) var(--space-x);
        z-index: 1000;
        display: none;
    }

    .main-nav.active {
        display: block;
    }

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

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
    }

    .header-bottom {
        position: relative;
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #eaeaea;
        padding: 2.5rem 1rem;
        font-family: system-ui, -apple-system, sans-serif;
        font-size: 0.9rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
    }
    .footer-section {
        flex: 1;
        min-width: 250px;
    }
    .brand-section {
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
    }
    .footer-logo {
        font-size: 1.5rem;
        font-weight: 700;
        color: #222;
        letter-spacing: -0.5px;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #555;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #000;
    }
    .footer-legal-links {
        color: #888;
    }
    .footer-legal-links a {
        color: #666;
        text-decoration: none;
    }
    .footer-legal-links a:hover {
        text-decoration: underline;
    }
    .footer-legal-links span {
        margin: 0 0.5rem;
    }
    .contact-section {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 1.5rem;
        text-align: right;
    }
    .footer-contact {
        font-style: normal;
        line-height: 1.6;
    }
    .footer-contact div {
        margin-bottom: 0.25rem;
    }
    .footer-contact a {
        color: #333;
        text-decoration: none;
    }
    .footer-contact a:hover {
        text-decoration: underline;
    }
    .footer-disclaimer {
        color: #777;
        line-height: 1.5;
        font-size: 0.85rem;
        border-top: 1px solid #eee;
        padding-top: 1rem;
    }
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 2.5rem;
        }
        .contact-section {
            text-align: left;
        }
        .footer-nav ul {
            gap: 1rem;
        }
    }

.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);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    max-width: var(--max-w);
    margin: 0 auto;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-y) var(--space-x);
}

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
}

.contact-cta {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.25);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
}

.contact-cta:hover,
.contact-cta:focus {
    background-color: var(--bg-accent-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

.header-bottom {
    padding: 0 var(--space-x) var(--space-y);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-nav {
    flex-grow: 1;
}

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

.nav-link {
    color: var(--link);
    text-decoration: none;
    padding: calc(var(--space-y) * 0.5) calc(var(--space-x) * 0.75);
    border-radius: var(--radius-sm);
    transition: color var(--anim-duration) var(--anim-ease), background-color var(--anim-duration) var(--anim-ease);
}

.nav-link:hover,
.nav-link:focus {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
    outline: none;
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) * 0.5);
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
}

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

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

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
        padding: var(--space-y) var(--space-x);
        z-index: 1000;
        display: none;
    }

    .main-nav.active {
        display: block;
    }

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

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
    }

    .header-bottom {
        position: relative;
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #eaeaea;
        padding: 2.5rem 1rem;
        font-family: system-ui, -apple-system, sans-serif;
        font-size: 0.9rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
    }
    .footer-section {
        flex: 1;
        min-width: 250px;
    }
    .brand-section {
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
    }
    .footer-logo {
        font-size: 1.5rem;
        font-weight: 700;
        color: #222;
        letter-spacing: -0.5px;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #555;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #000;
    }
    .footer-legal-links {
        color: #888;
    }
    .footer-legal-links a {
        color: #666;
        text-decoration: none;
    }
    .footer-legal-links a:hover {
        text-decoration: underline;
    }
    .footer-legal-links span {
        margin: 0 0.5rem;
    }
    .contact-section {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 1.5rem;
        text-align: right;
    }
    .footer-contact {
        font-style: normal;
        line-height: 1.6;
    }
    .footer-contact div {
        margin-bottom: 0.25rem;
    }
    .footer-contact a {
        color: #333;
        text-decoration: none;
    }
    .footer-contact a:hover {
        text-decoration: underline;
    }
    .footer-disclaimer {
        color: #777;
        line-height: 1.5;
        font-size: 0.85rem;
        border-top: 1px solid #eee;
        padding-top: 1rem;
    }
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 2.5rem;
        }
        .contact-section {
            text-align: left;
        }
        .footer-nav ul {
            gap: 1rem;
        }
    }

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

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

    .policy-layout-d .wrap {
        max-width: 900px;
        margin: 0 auto;
    }

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

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

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

    .policy-layout-d .timeline {
        border-left: 3px solid var(--brand);
        padding-left: 14px;
        display: grid;
        gap: 12px;
    }

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

    .policy-layout-d .meta {
        margin: 0;
        color: var(--brand);
        font-size: .9rem;
        font-weight: 600;
    }

    .policy-layout-d h3 {
        margin: 7px 0;
    }

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

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    max-width: var(--max-w);
    margin: 0 auto;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-y) var(--space-x);
}

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
}

.contact-cta {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.25);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
}

.contact-cta:hover,
.contact-cta:focus {
    background-color: var(--bg-accent-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

.header-bottom {
    padding: 0 var(--space-x) var(--space-y);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-nav {
    flex-grow: 1;
}

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

.nav-link {
    color: var(--link);
    text-decoration: none;
    padding: calc(var(--space-y) * 0.5) calc(var(--space-x) * 0.75);
    border-radius: var(--radius-sm);
    transition: color var(--anim-duration) var(--anim-ease), background-color var(--anim-duration) var(--anim-ease);
}

.nav-link:hover,
.nav-link:focus {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
    outline: none;
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) * 0.5);
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
}

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

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

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
        padding: var(--space-y) var(--space-x);
        z-index: 1000;
        display: none;
    }

    .main-nav.active {
        display: block;
    }

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

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
    }

    .header-bottom {
        position: relative;
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #eaeaea;
        padding: 2.5rem 1rem;
        font-family: system-ui, -apple-system, sans-serif;
        font-size: 0.9rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
    }
    .footer-section {
        flex: 1;
        min-width: 250px;
    }
    .brand-section {
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
    }
    .footer-logo {
        font-size: 1.5rem;
        font-weight: 700;
        color: #222;
        letter-spacing: -0.5px;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #555;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #000;
    }
    .footer-legal-links {
        color: #888;
    }
    .footer-legal-links a {
        color: #666;
        text-decoration: none;
    }
    .footer-legal-links a:hover {
        text-decoration: underline;
    }
    .footer-legal-links span {
        margin: 0 0.5rem;
    }
    .contact-section {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 1.5rem;
        text-align: right;
    }
    .footer-contact {
        font-style: normal;
        line-height: 1.6;
    }
    .footer-contact div {
        margin-bottom: 0.25rem;
    }
    .footer-contact a {
        color: #333;
        text-decoration: none;
    }
    .footer-contact a:hover {
        text-decoration: underline;
    }
    .footer-disclaimer {
        color: #777;
        line-height: 1.5;
        font-size: 0.85rem;
        border-top: 1px solid #eee;
        padding-top: 1rem;
    }
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 2.5rem;
        }
        .contact-section {
            text-align: left;
        }
        .footer-nav ul {
            gap: 1rem;
        }
    }

.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-d {
        padding: clamp(56px, 10vw, 114px) 18px;
        background: var(--accent);
        color: var(--accent-contrast);
    }

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

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

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

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

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    max-width: var(--max-w);
    margin: 0 auto;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-y) var(--space-x);
}

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
}

.contact-cta {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.25);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
}

.contact-cta:hover,
.contact-cta:focus {
    background-color: var(--bg-accent-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

.header-bottom {
    padding: 0 var(--space-x) var(--space-y);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-nav {
    flex-grow: 1;
}

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

.nav-link {
    color: var(--link);
    text-decoration: none;
    padding: calc(var(--space-y) * 0.5) calc(var(--space-x) * 0.75);
    border-radius: var(--radius-sm);
    transition: color var(--anim-duration) var(--anim-ease), background-color var(--anim-duration) var(--anim-ease);
}

.nav-link:hover,
.nav-link:focus {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
    outline: none;
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) * 0.5);
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
}

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

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

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
        padding: var(--space-y) var(--space-x);
        z-index: 1000;
        display: none;
    }

    .main-nav.active {
        display: block;
    }

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

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
    }

    .header-bottom {
        position: relative;
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #eaeaea;
        padding: 2.5rem 1rem;
        font-family: system-ui, -apple-system, sans-serif;
        font-size: 0.9rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
    }
    .footer-section {
        flex: 1;
        min-width: 250px;
    }
    .brand-section {
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
    }
    .footer-logo {
        font-size: 1.5rem;
        font-weight: 700;
        color: #222;
        letter-spacing: -0.5px;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #555;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #000;
    }
    .footer-legal-links {
        color: #888;
    }
    .footer-legal-links a {
        color: #666;
        text-decoration: none;
    }
    .footer-legal-links a:hover {
        text-decoration: underline;
    }
    .footer-legal-links span {
        margin: 0 0.5rem;
    }
    .contact-section {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 1.5rem;
        text-align: right;
    }
    .footer-contact {
        font-style: normal;
        line-height: 1.6;
    }
    .footer-contact div {
        margin-bottom: 0.25rem;
    }
    .footer-contact a {
        color: #333;
        text-decoration: none;
    }
    .footer-contact a:hover {
        text-decoration: underline;
    }
    .footer-disclaimer {
        color: #777;
        line-height: 1.5;
        font-size: 0.85rem;
        border-top: 1px solid #eee;
        padding-top: 1rem;
    }
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 2.5rem;
        }
        .contact-section {
            text-align: left;
        }
        .footer-nav ul {
            gap: 1rem;
        }
    }

.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-f {
        padding: clamp(56px, 10vw, 112px) 20px;
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    .err-slab-f .chip {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(28px, 4vw, 46px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface-light);
        box-shadow: var(--shadow-sm);
        position: relative;
    }

    .err-slab-f .chip::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 6px;
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        background: var(--gradient-accent);
    }

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

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

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