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

  --max-w: 1320px;
  --space-x: 2.34rem;
  --space-y: 1.5rem;
  --gap: 1.7rem;

  --radius-xl: 1.16rem;
  --radius-lg: 0.97rem;
  --radius-md: 0.6rem;
  --radius-sm: 0.27rem;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.15);
  --shadow-md: 0 8px 18px rgba(0,0,0,0.2);
  --shadow-lg: 0 16px 30px rgba(0,0,0,0.24);

  --overlay: rgba(0, 0, 0, 0.4);
  --anim-duration: 270ms;
  --anim-ease: cubic-bezier(0.2,0.8,0.2,1);
  --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.85);
  --fg-on-surface-light: #212529;
  --border-on-surface-light: rgba(233, 236, 239, 0.7);

  --bg-primary: #4A6FA5;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #3A5A8C;
  --ring: #4A6FA5;

  --bg-accent: #FEF3E7;
  --fg-on-accent: #92400E;
  --bg-accent-hover: #D35400;

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

  --gradient-hero: linear-gradient(135deg, #4A6FA5 0%, #6A8BC5 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);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

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

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

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
}
.nav-link:hover,
.nav-link:focus-visible {
    color: var(--brand);
    background-color: var(--btn-ghost-bg-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

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

.search-toggle,
.menu-toggle {
    background: var(--btn-ghost-bg);
    border: 1px solid var(--border-on-surface-light);
    border-radius: var(--radius-md);
    color: var(--fg-on-surface);
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--anim-duration) var(--anim-ease);
}
.search-toggle:hover,
.search-toggle:focus-visible,
.menu-toggle:hover,
.menu-toggle:focus-visible {
    background-color: var(--btn-ghost-bg-hover);
    border-color: var(--brand);
    color: var(--brand);
    outline: none;
}
.search-toggle svg {
    display: block;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    width: 44px;
    height: 44px;
    justify-content: center;
    gap: 5px;
}
.menu-toggle-line {
    display: block;
    height: 2px;
    width: 20px;
    background-color: currentColor;
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
    .menu-toggle {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    }
    .main-nav.is-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        width: 100%;
    }
    .nav-link {
        display: block;
        text-align: center;
        padding: var(--space-y) var(--space-x);
    }
    .menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2.5rem 1rem 1.5rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2.5rem;
        padding-bottom: 1.5rem;
    }

    .footer-section {
        flex: 1;
        min-width: 200px;
    }

    .brand-section {
        flex: 1.2;
    }

    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.75rem;
        letter-spacing: -0.5px;
    }

    .copyright {
        color: #6c757d;
        margin-bottom: 1rem;
    }

    .legal-links {
        margin-top: 1rem;
    }

    .legal-links a {
        color: #495057;
        text-decoration: none;
        transition: color 0.2s;
    }

    .legal-links a:hover {
        color: #007bff;
        text-decoration: underline;
    }

    .separator {
        color: #adb5bd;
        margin: 0 0.5rem;
    }

    .footer-section h4 {
        color: #2c3e50;
        margin-bottom: 1.2rem;
        font-size: 1.1rem;
        font-weight: 600;
    }

    .footer-menu {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-menu li {
        margin-bottom: 0.7rem;
    }

    .footer-menu a {
        color: #495057;
        text-decoration: none;
        transition: color 0.2s, padding-left 0.2s;
    }

    .footer-menu a:hover {
        color: #007bff;
        padding-left: 5px;
    }

    address {
        font-style: normal;
        color: #495057;
    }

    address a {
        color: #495057;
        text-decoration: none;
        transition: color 0.2s;
    }

    address a:hover {
        color: #007bff;
        text-decoration: underline;
    }

    .footer-disclaimer {
        max-width: 1200px;
        margin: 1.5rem auto 0;
        padding-top: 1.5rem;
        border-top: 1px solid #e9ecef;
        text-align: center;
        font-size: 0.85rem;
        color: #6c757d;
        line-height: 1.5;
    }

    .footer-disclaimer a {
        color: #6c757d;
        text-decoration: underline;
    }

    .footer-disclaimer a:hover {
        color: #0056b3;
    }

    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 2rem;
        }

        .footer-section {
            width: 100%;
        }

        .brand-section {
            text-align: center;
        }

        .legal-links {
            text-align: center;
        }

        .nav-section,
        .contact-section {
            text-align: center;
        }

        .footer-menu {
            display: inline-block;
            text-align: left;
        }
    }

.cookie-lv4 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: var(--surface-2);
        border-bottom: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
    }

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

    .cookie-lv4__inner span {
        color: var(--neutral-600);
        margin-left: 6px;
    }

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

    .cookie-lv4__actions a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--link);
        padding: 6px 10px;
    }

    .cookie-lv4__actions a[data-choice='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

.wp-lang-switcher-v10 {
        position: fixed;
        left: 2rem;

        bottom: clamp(14px, 2vw, 24px);
        z-index: 99999;
    }

    .wp-lang-switcher-v10__btn {
        border: 1px solid rgba(255, 255, 255, 0.28);
        border-radius: 999px;
        background: linear-gradient(145deg, #111827, #1f2937);
        color: #f9fafb;
        box-shadow: var(--shadow-lg);
        padding: 9px 14px;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        cursor: pointer;
    }

    .wp-lang-switcher-v10__emoji {
        font-size: 16px;
        line-height: 1;
    }

    .wp-lang-switcher-v10__value {
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.08em;
    }

    .wp-lang-switcher-v10__dropdown {
        position: absolute;
        bottom: 52px;
        left: 50%;
        transform: translate(-50%, 10px);
        opacity: 0;
        pointer-events: none;
        display: flex;
        gap: 6px;
        transition: opacity var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
    }

    .wp-lang-switcher-v10__dropdown.open {
        opacity: 1;
        pointer-events: auto;
        transform: translate(-50%, 0);
    }

    .wp-lang-switcher-v10__dropdown button,
    .wp-lang-switcher-v10__dropdown a {
        width: 42px;
        height: 34px;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(17, 24, 39, 0.92);
        color: #e5e7eb;
        text-decoration: none;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.04em;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .wp-lang-switcher-v10__dropdown button:hover,
    .wp-lang-switcher-v10__dropdown a:hover {
        background: #38bdf8;
        border-color: transparent;
        color: #06263a;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.next-route-l6 {
        padding: clamp(3.1rem, 7vw, 5.6rem) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-page);
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .next-route-l6__wrap {
        max-width: 56rem;
        margin: 0 auto;
    }

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

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

    .next-route-l6__line {
        margin-top: 1rem;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
        gap: .7rem;
    }

    .next-route-l6__line a {
        display: flex;
        gap: .6rem;
        align-items: center;
        padding: .9rem;
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        border: 1px solid var(--border-on-surface-light);
        text-decoration: none;
        color: var(--fg-on-page);
    }

    .next-route-l6__line i {
        font-style: normal;
    }

    .next-route-l6__copy {
        margin: 1rem 0 0;
        color: var(--neutral-600);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.nfsocial-v7 {
        padding: clamp(20px, 3vw, 44px);
        background: var(--gradient-accent);
        color: var(--accent-contrast);
    }

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

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

    .nfsocial-v7 h2 {
        margin: 0;
        font-size: clamp(24px, 4.6vw, 44px);
    }

    .nfsocial-v7__head p {
        margin: 10px 0 0;
        max-width: 70ch;
        opacity: .92;
    }

    .nfsocial-v7__logos {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(430px, 1fr));
        gap: 10px;
    }

    .nfsocial-v7__logos div {
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, .22);
        background: rgba(255, 255, 255, .1);
        min-height: 80px;
        height: 320px;
        display: grid;
        place-items: center;
        padding: 10px;
    }

    .nfsocial-v7__logos img {
        max-width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: var(--radius-sm);
    }

    .nfsocial-v7__stats {
        margin-top: 14px;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 10px;
    }

    .nfsocial-v7__stats article {
        border-radius: var(--radius-md);
        border: 1px solid rgba(255, 255, 255, .22);
        background: rgba(255, 255, 255, .12);
        padding: 12px;
    }

    .nfsocial-v7__stats strong,
    .nfsocial-v7__stats span {
        display: block;
    }

    .nfsocial-v7__stats strong {
        font-size: 1.8rem;
    }

    .nfsocial-v7__stats span {
        margin-top: 5px;
        opacity: .92;
    }

.visual-wave-c5 {
        padding: clamp(3.5rem, 8vw, 6rem) var(--space-x);
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
    }

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

    .visual-wave-c5__head {
        text-align: center;
        margin-bottom: 1rem;
    }

    .visual-wave-c5__head p {
        margin: 0;
        color: rgba(255, 255, 255, .76);
    }

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

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

    .visual-wave-c5__grid figure {
        margin: 0;
        overflow: hidden;
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .visual-wave-c5__image {
        overflow: hidden;
    }

    .visual-wave-c5__image img {
        display: block;
        width: 100%;
        height: 14rem;
        object-fit: cover;
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .visual-wave-c5__grid figure:hover img {
        transform: scale(1.05);
    }

    .visual-wave-c5__grid figcaption {
        padding: 1rem;
    }

    .visual-wave-c5__grid small {
        color: rgba(255, 255, 255, .76);
    }

    .visual-wave-c5__grid h3 {
        margin: .45rem 0 .35rem;
    }

    .visual-wave-c5__grid p {
        margin: 0;
        color: rgba(255, 255, 255, .84);
    }

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

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

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

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
}
.nav-link:hover,
.nav-link:focus-visible {
    color: var(--brand);
    background-color: var(--btn-ghost-bg-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

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

.search-toggle,
.menu-toggle {
    background: var(--btn-ghost-bg);
    border: 1px solid var(--border-on-surface-light);
    border-radius: var(--radius-md);
    color: var(--fg-on-surface);
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--anim-duration) var(--anim-ease);
}
.search-toggle:hover,
.search-toggle:focus-visible,
.menu-toggle:hover,
.menu-toggle:focus-visible {
    background-color: var(--btn-ghost-bg-hover);
    border-color: var(--brand);
    color: var(--brand);
    outline: none;
}
.search-toggle svg {
    display: block;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    width: 44px;
    height: 44px;
    justify-content: center;
    gap: 5px;
}
.menu-toggle-line {
    display: block;
    height: 2px;
    width: 20px;
    background-color: currentColor;
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
    .menu-toggle {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    }
    .main-nav.is-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        width: 100%;
    }
    .nav-link {
        display: block;
        text-align: center;
        padding: var(--space-y) var(--space-x);
    }
    .menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2.5rem 1rem 1.5rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2.5rem;
        padding-bottom: 1.5rem;
    }

    .footer-section {
        flex: 1;
        min-width: 200px;
    }

    .brand-section {
        flex: 1.2;
    }

    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.75rem;
        letter-spacing: -0.5px;
    }

    .copyright {
        color: #6c757d;
        margin-bottom: 1rem;
    }

    .legal-links {
        margin-top: 1rem;
    }

    .legal-links a {
        color: #495057;
        text-decoration: none;
        transition: color 0.2s;
    }

    .legal-links a:hover {
        color: #007bff;
        text-decoration: underline;
    }

    .separator {
        color: #adb5bd;
        margin: 0 0.5rem;
    }

    .footer-section h4 {
        color: #2c3e50;
        margin-bottom: 1.2rem;
        font-size: 1.1rem;
        font-weight: 600;
    }

    .footer-menu {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-menu li {
        margin-bottom: 0.7rem;
    }

    .footer-menu a {
        color: #495057;
        text-decoration: none;
        transition: color 0.2s, padding-left 0.2s;
    }

    .footer-menu a:hover {
        color: #007bff;
        padding-left: 5px;
    }

    address {
        font-style: normal;
        color: #495057;
    }

    address a {
        color: #495057;
        text-decoration: none;
        transition: color 0.2s;
    }

    address a:hover {
        color: #007bff;
        text-decoration: underline;
    }

    .footer-disclaimer {
        max-width: 1200px;
        margin: 1.5rem auto 0;
        padding-top: 1.5rem;
        border-top: 1px solid #e9ecef;
        text-align: center;
        font-size: 0.85rem;
        color: #6c757d;
        line-height: 1.5;
    }

    .footer-disclaimer a {
        color: #6c757d;
        text-decoration: underline;
    }

    .footer-disclaimer a:hover {
        color: #0056b3;
    }

    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 2rem;
        }

        .footer-section {
            width: 100%;
        }

        .brand-section {
            text-align: center;
        }

        .legal-links {
            text-align: center;
        }

        .nav-section,
        .contact-section {
            text-align: center;
        }

        .footer-menu {
            display: inline-block;
            text-align: left;
        }
    }

.cookie-lv4 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: var(--surface-2);
        border-bottom: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
    }

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

    .cookie-lv4__inner span {
        color: var(--neutral-600);
        margin-left: 6px;
    }

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

    .cookie-lv4__actions a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--link);
        padding: 6px 10px;
    }

    .cookie-lv4__actions a[data-choice='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

.about-timeline {

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

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

    .about-timeline .about-timeline__zig {
        display: grid;
        gap: 16px;
    }

    .about-timeline .about-timeline__zig .item {
        list-style: none;
        background: #fff;
        color: var(--fg-on-page);
        border-radius: var(--radius-lg);
        padding: clamp(12px, 2vw, 20px);
        box-shadow: var(--shadow-sm);
    }

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

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

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

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

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

    .identity-nv12__head span {
        color: var(--neutral-600);
    }

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

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

    .identity-nv12__meta {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 8px;
    }

    .identity-nv12__meta i {
        font-style: normal;
        font-size: 1.2rem;
    }

    .identity-nv12__meta strong {
        color: var(--brand);
    }

    .identity-nv12__grid h3 {
        margin: 0;
        color: var(--neutral-900);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.gallery__strip {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(120px, 1fr);
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.gallery__thumb {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--surface-light);
    border: 1px solid var(--border-on-surface-light);
    min-width: 120px;
}

.gallery__thumb img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    display: block;
}

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

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

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

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
}
.nav-link:hover,
.nav-link:focus-visible {
    color: var(--brand);
    background-color: var(--btn-ghost-bg-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

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

.search-toggle,
.menu-toggle {
    background: var(--btn-ghost-bg);
    border: 1px solid var(--border-on-surface-light);
    border-radius: var(--radius-md);
    color: var(--fg-on-surface);
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--anim-duration) var(--anim-ease);
}
.search-toggle:hover,
.search-toggle:focus-visible,
.menu-toggle:hover,
.menu-toggle:focus-visible {
    background-color: var(--btn-ghost-bg-hover);
    border-color: var(--brand);
    color: var(--brand);
    outline: none;
}
.search-toggle svg {
    display: block;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    width: 44px;
    height: 44px;
    justify-content: center;
    gap: 5px;
}
.menu-toggle-line {
    display: block;
    height: 2px;
    width: 20px;
    background-color: currentColor;
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
    .menu-toggle {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    }
    .main-nav.is-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        width: 100%;
    }
    .nav-link {
        display: block;
        text-align: center;
        padding: var(--space-y) var(--space-x);
    }
    .menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2.5rem 1rem 1.5rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2.5rem;
        padding-bottom: 1.5rem;
    }

    .footer-section {
        flex: 1;
        min-width: 200px;
    }

    .brand-section {
        flex: 1.2;
    }

    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.75rem;
        letter-spacing: -0.5px;
    }

    .copyright {
        color: #6c757d;
        margin-bottom: 1rem;
    }

    .legal-links {
        margin-top: 1rem;
    }

    .legal-links a {
        color: #495057;
        text-decoration: none;
        transition: color 0.2s;
    }

    .legal-links a:hover {
        color: #007bff;
        text-decoration: underline;
    }

    .separator {
        color: #adb5bd;
        margin: 0 0.5rem;
    }

    .footer-section h4 {
        color: #2c3e50;
        margin-bottom: 1.2rem;
        font-size: 1.1rem;
        font-weight: 600;
    }

    .footer-menu {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-menu li {
        margin-bottom: 0.7rem;
    }

    .footer-menu a {
        color: #495057;
        text-decoration: none;
        transition: color 0.2s, padding-left 0.2s;
    }

    .footer-menu a:hover {
        color: #007bff;
        padding-left: 5px;
    }

    address {
        font-style: normal;
        color: #495057;
    }

    address a {
        color: #495057;
        text-decoration: none;
        transition: color 0.2s;
    }

    address a:hover {
        color: #007bff;
        text-decoration: underline;
    }

    .footer-disclaimer {
        max-width: 1200px;
        margin: 1.5rem auto 0;
        padding-top: 1.5rem;
        border-top: 1px solid #e9ecef;
        text-align: center;
        font-size: 0.85rem;
        color: #6c757d;
        line-height: 1.5;
    }

    .footer-disclaimer a {
        color: #6c757d;
        text-decoration: underline;
    }

    .footer-disclaimer a:hover {
        color: #0056b3;
    }

    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 2rem;
        }

        .footer-section {
            width: 100%;
        }

        .brand-section {
            text-align: center;
        }

        .legal-links {
            text-align: center;
        }

        .nav-section,
        .contact-section {
            text-align: center;
        }

        .footer-menu {
            display: inline-block;
            text-align: left;
        }
    }

.cookie-lv4 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: var(--surface-2);
        border-bottom: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
    }

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

    .cookie-lv4__inner span {
        color: var(--neutral-600);
        margin-left: 6px;
    }

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

    .cookie-lv4__actions a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--link);
        padding: 6px 10px;
    }

    .cookie-lv4__actions a[data-choice='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

.capabilities-spectrum {

        background: var(--gradient-hero);
        color: var(--fg-on-primary);
        padding: clamp(64px, 8vw, 120px) clamp(18px, 4vw, 48px);
        position: relative;
        overflow: hidden;
    }

    .capabilities-spectrum::before,
    .capabilities-spectrum::after {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.18), transparent 55%);
        
        opacity: 0.6;
    }

    .capabilities-spectrum::after {
        background: radial-gradient(circle at 80% 60%, rgba(255, 255, 255, 0.12), transparent 50%);
    }

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

    .capabilities-spectrum__h {
        text-align: center;
        margin-bottom: clamp(48px, 7vw, 88px);

        transform: translateY(-20px);
    }

    .capabilities-spectrum__eyebrow {
        font-size: clamp(14px, 2vw, 18px);
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--accent, #ff9d5c);
        margin: 0 0 0.75rem;
    }

    .capabilities-spectrum h2 {
        font-size: clamp(34px, 5vw, 60px);
        font-weight: 800;
        line-height: 1.1;
        margin: 0;
    }

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

    .capabilities-spectrum__mosaic::before {
        content: '';
        position: absolute;
        inset: 10%;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: var(--radius-xxl, 32px);
        pointer-events: none;
    }

    .capabilities-spectrum__tile {
        background: var(--surface-1, rgba(14, 16, 32, 0.8));
        backdrop-filter: blur(14px);
        border-radius: var(--radius-xl);
        padding: clamp(24px, 3vw, 36px);
        position: relative;
        overflow: hidden;
        isolation: isolate;
        border: 1px solid rgba(255, 255, 255, 0.08);

        transform: translateY(40px) scale(0.97);
    }

    .capabilities-spectrum__halo {
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at top, rgba(255, 255, 255, 0.18), transparent 65%);

        transition: opacity 0.4s ease;
        z-index: -1;
    }

    .capabilities-spectrum__tile:hover .capabilities-spectrum__halo {
        opacity: 1;
    }

    .capabilities-spectrum__meta {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 1.5rem;
    }

    .capabilities-spectrum__step {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 48px;
        height: 48px;
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.25);
        font-weight: 700;
        font-size: 18px;
        color: var(--accent-contrast, #0c0a0f);
        background: var(--accent, #ff9d5c);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
    }

    .capabilities-spectrum__icon {
        font-size: 42px;
        color: var(--fg-on-primary);
        filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.7));
    }

    .capabilities-spectrum__tile h3 {
        margin: 0 0 0.75rem;
        font-size: clamp(20px, 2.5vw, 26px);
        font-weight: 700;
        color: var(--fg-on-surface-light, #f5f5ff);
    }

    .capabilities-spectrum__tile p {
        margin: 0;
        color: var(--neutral-300, rgba(255, 255, 255, 0.78));
        line-height: var(--line-height-base, 1.6);
    }

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

.nfsocial-v7 {
        padding: clamp(20px, 3vw, 44px);
        background: var(--gradient-accent);
        color: var(--accent-contrast);
    }

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

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

    .nfsocial-v7 h2 {
        margin: 0;
        font-size: clamp(24px, 4.6vw, 44px);
    }

    .nfsocial-v7__head p {
        margin: 10px 0 0;
        max-width: 70ch;
        opacity: .92;
    }

    .nfsocial-v7__logos {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(430px, 1fr));
        gap: 10px;
    }

    .nfsocial-v7__logos div {
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, .22);
        background: rgba(255, 255, 255, .1);
        min-height: 80px;
        height: 320px;
        display: grid;
        place-items: center;
        padding: 10px;
    }

    .nfsocial-v7__logos img {
        max-width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: var(--radius-sm);
    }

    .nfsocial-v7__stats {
        margin-top: 14px;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 10px;
    }

    .nfsocial-v7__stats article {
        border-radius: var(--radius-md);
        border: 1px solid rgba(255, 255, 255, .22);
        background: rgba(255, 255, 255, .12);
        padding: 12px;
    }

    .nfsocial-v7__stats strong,
    .nfsocial-v7__stats span {
        display: block;
    }

    .nfsocial-v7__stats strong {
        font-size: 1.8rem;
    }

    .nfsocial-v7__stats span {
        margin-top: 5px;
        opacity: .92;
    }

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

    .values-board-l8__wrap {
        max-width: 62rem;
        margin: 0 auto;
    }

    .values-board-l8__head {
        text-align: center;
        margin-bottom: 1.1rem;
    }

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

    .values-board-l8__head p {
        margin: .65rem auto 0;
        max-width: 40rem;
        color: var(--neutral-600);
    }

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

    .values-board-l8__board article {
        padding: 1rem;
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
    }

    .values-board-l8__board strong {
        color: var(--brand);
    }

    .values-board-l8__board h3 {
        margin: .7rem 0 .35rem;
    }

    .values-board-l8__board 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);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

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

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

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
}
.nav-link:hover,
.nav-link:focus-visible {
    color: var(--brand);
    background-color: var(--btn-ghost-bg-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

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

.search-toggle,
.menu-toggle {
    background: var(--btn-ghost-bg);
    border: 1px solid var(--border-on-surface-light);
    border-radius: var(--radius-md);
    color: var(--fg-on-surface);
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--anim-duration) var(--anim-ease);
}
.search-toggle:hover,
.search-toggle:focus-visible,
.menu-toggle:hover,
.menu-toggle:focus-visible {
    background-color: var(--btn-ghost-bg-hover);
    border-color: var(--brand);
    color: var(--brand);
    outline: none;
}
.search-toggle svg {
    display: block;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    width: 44px;
    height: 44px;
    justify-content: center;
    gap: 5px;
}
.menu-toggle-line {
    display: block;
    height: 2px;
    width: 20px;
    background-color: currentColor;
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
    .menu-toggle {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    }
    .main-nav.is-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        width: 100%;
    }
    .nav-link {
        display: block;
        text-align: center;
        padding: var(--space-y) var(--space-x);
    }
    .menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2.5rem 1rem 1.5rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2.5rem;
        padding-bottom: 1.5rem;
    }

    .footer-section {
        flex: 1;
        min-width: 200px;
    }

    .brand-section {
        flex: 1.2;
    }

    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.75rem;
        letter-spacing: -0.5px;
    }

    .copyright {
        color: #6c757d;
        margin-bottom: 1rem;
    }

    .legal-links {
        margin-top: 1rem;
    }

    .legal-links a {
        color: #495057;
        text-decoration: none;
        transition: color 0.2s;
    }

    .legal-links a:hover {
        color: #007bff;
        text-decoration: underline;
    }

    .separator {
        color: #adb5bd;
        margin: 0 0.5rem;
    }

    .footer-section h4 {
        color: #2c3e50;
        margin-bottom: 1.2rem;
        font-size: 1.1rem;
        font-weight: 600;
    }

    .footer-menu {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-menu li {
        margin-bottom: 0.7rem;
    }

    .footer-menu a {
        color: #495057;
        text-decoration: none;
        transition: color 0.2s, padding-left 0.2s;
    }

    .footer-menu a:hover {
        color: #007bff;
        padding-left: 5px;
    }

    address {
        font-style: normal;
        color: #495057;
    }

    address a {
        color: #495057;
        text-decoration: none;
        transition: color 0.2s;
    }

    address a:hover {
        color: #007bff;
        text-decoration: underline;
    }

    .footer-disclaimer {
        max-width: 1200px;
        margin: 1.5rem auto 0;
        padding-top: 1.5rem;
        border-top: 1px solid #e9ecef;
        text-align: center;
        font-size: 0.85rem;
        color: #6c757d;
        line-height: 1.5;
    }

    .footer-disclaimer a {
        color: #6c757d;
        text-decoration: underline;
    }

    .footer-disclaimer a:hover {
        color: #0056b3;
    }

    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 2rem;
        }

        .footer-section {
            width: 100%;
        }

        .brand-section {
            text-align: center;
        }

        .legal-links {
            text-align: center;
        }

        .nav-section,
        .contact-section {
            text-align: center;
        }

        .footer-menu {
            display: inline-block;
            text-align: left;
        }
    }

.cookie-lv4 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: var(--surface-2);
        border-bottom: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
    }

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

    .cookie-lv4__inner span {
        color: var(--neutral-600);
        margin-left: 6px;
    }

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

    .cookie-lv4__actions a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--link);
        padding: 6px 10px;
    }

    .cookie-lv4__actions a[data-choice='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

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

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

    .map-cards-l2__head {
        text-align: center;
        margin-bottom: 1rem;
    }

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

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

    .map-cards-l2__frame {
        overflow: hidden;
        border-radius: var(--radius-xl);
        border: 1px solid var(--border-on-surface-light);
        box-shadow: var(--shadow-sm);
    }

    .map-cards-l2__frame iframe {
        display: block;
        width: 100%;
        height: 24rem;
    }

    .map-cards-l2__grid {
        margin-top: 1rem;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: var(--gap);
    }

    .map-cards-l2__grid article {
        padding: .95rem;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
    }

    .map-cards-l2__grid p {
        margin: .35rem 0 0;
        color: var(--neutral-600);
    }

    @media (max-width: 640px) {
        .map-cards-l2__grid {
            grid-template-columns: 1fr;
        }
    }

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

    .nfform-v7__form {
        max-width: 760px;
        margin: 0 auto;
        border: 1px solid rgba(255, 255, 255, .26);
        border-radius: var(--radius-lg);
        background: rgba(255, 255, 255, .1);
        padding: 16px;
        display: grid;
        gap: 10px;
    }

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

    .nfform-v7 p {
        margin: 0 0 2px;
        opacity: .92;
    }

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

    .nfform-v7 input:not([type='checkbox']),
    .nfform-v7 textarea {
        width: 100%;
        border: 1px solid rgba(255, 255, 255, .35);
        border-radius: var(--radius-sm);
        background: rgba(255, 255, 255, .14);
        color: var(--fg-on-primary);
        padding: 9px;
        font: inherit;
    }

    .nfform-v7__agree {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .nfform-v7 button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 10px 14px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-weight: 700;
    }

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

    .contact-layout-e .wrap {
        max-width: 980px;
        margin: 0 auto;
    }

    .contact-layout-e .section-head {
        margin-bottom: 16px;
    }

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

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

    .contact-layout-e .rail {
        display: grid;
        grid-template-columns: 260px 1fr;
        gap: 16px;
    }

    .contact-layout-e aside {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-radius: var(--radius-lg);
        padding: 16px;
    }

    .contact-layout-e aside h3 {
        margin: 0 0 10px;
    }

    .contact-layout-e aside p {
        margin: 0 0 10px;
        opacity: .9;
    }

    .contact-layout-e .social {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .contact-layout-e .social a {
        text-decoration: none;
        color: var(--fg-on-primary);
        background: rgba(255, 255, 255, .16);
        padding: 6px 10px;
        border-radius: var(--radius-sm);
    }

    .contact-layout-e .content {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        display: grid;
        gap: 10px;
    }

    .contact-layout-e .row {
        display: grid;
        gap: 3px;
        padding-bottom: 10px;
        border-bottom: 1px dashed var(--neutral-300);
    }

    .contact-layout-e .row:last-child {
        border-bottom: 0;
        padding-bottom: 0;
    }

    .contact-layout-e .row a {
        color: var(--link);
        text-decoration: none;
    }
    .contact-layout-e .row a:hover {
        color: var(--link-hover);
        text-decoration: underline;
    }

    @media (max-width: 760px) {
        .contact-layout-e .rail {
            grid-template-columns: 1fr;
        }
    }

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

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

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

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
}
.nav-link:hover,
.nav-link:focus-visible {
    color: var(--brand);
    background-color: var(--btn-ghost-bg-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

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

.search-toggle,
.menu-toggle {
    background: var(--btn-ghost-bg);
    border: 1px solid var(--border-on-surface-light);
    border-radius: var(--radius-md);
    color: var(--fg-on-surface);
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--anim-duration) var(--anim-ease);
}
.search-toggle:hover,
.search-toggle:focus-visible,
.menu-toggle:hover,
.menu-toggle:focus-visible {
    background-color: var(--btn-ghost-bg-hover);
    border-color: var(--brand);
    color: var(--brand);
    outline: none;
}
.search-toggle svg {
    display: block;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    width: 44px;
    height: 44px;
    justify-content: center;
    gap: 5px;
}
.menu-toggle-line {
    display: block;
    height: 2px;
    width: 20px;
    background-color: currentColor;
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
    .menu-toggle {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    }
    .main-nav.is-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        width: 100%;
    }
    .nav-link {
        display: block;
        text-align: center;
        padding: var(--space-y) var(--space-x);
    }
    .menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2.5rem 1rem 1.5rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2.5rem;
        padding-bottom: 1.5rem;
    }

    .footer-section {
        flex: 1;
        min-width: 200px;
    }

    .brand-section {
        flex: 1.2;
    }

    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.75rem;
        letter-spacing: -0.5px;
    }

    .copyright {
        color: #6c757d;
        margin-bottom: 1rem;
    }

    .legal-links {
        margin-top: 1rem;
    }

    .legal-links a {
        color: #495057;
        text-decoration: none;
        transition: color 0.2s;
    }

    .legal-links a:hover {
        color: #007bff;
        text-decoration: underline;
    }

    .separator {
        color: #adb5bd;
        margin: 0 0.5rem;
    }

    .footer-section h4 {
        color: #2c3e50;
        margin-bottom: 1.2rem;
        font-size: 1.1rem;
        font-weight: 600;
    }

    .footer-menu {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-menu li {
        margin-bottom: 0.7rem;
    }

    .footer-menu a {
        color: #495057;
        text-decoration: none;
        transition: color 0.2s, padding-left 0.2s;
    }

    .footer-menu a:hover {
        color: #007bff;
        padding-left: 5px;
    }

    address {
        font-style: normal;
        color: #495057;
    }

    address a {
        color: #495057;
        text-decoration: none;
        transition: color 0.2s;
    }

    address a:hover {
        color: #007bff;
        text-decoration: underline;
    }

    .footer-disclaimer {
        max-width: 1200px;
        margin: 1.5rem auto 0;
        padding-top: 1.5rem;
        border-top: 1px solid #e9ecef;
        text-align: center;
        font-size: 0.85rem;
        color: #6c757d;
        line-height: 1.5;
    }

    .footer-disclaimer a {
        color: #6c757d;
        text-decoration: underline;
    }

    .footer-disclaimer a:hover {
        color: #0056b3;
    }

    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 2rem;
        }

        .footer-section {
            width: 100%;
        }

        .brand-section {
            text-align: center;
        }

        .legal-links {
            text-align: center;
        }

        .nav-section,
        .contact-section {
            text-align: center;
        }

        .footer-menu {
            display: inline-block;
            text-align: left;
        }
    }

.cookie-lv4 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: var(--surface-2);
        border-bottom: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
    }

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

    .cookie-lv4__inner span {
        color: var(--neutral-600);
        margin-left: 6px;
    }

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

    .cookie-lv4__actions a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--link);
        padding: 6px 10px;
    }

    .cookie-lv4__actions a[data-choice='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

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

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

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

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

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

    .policy-layout-f .rows {
        display: grid;
        gap: 10px;
    }

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

    .policy-layout-f .head {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .policy-layout-f .head span {
        min-width: 30px;
        height: 30px;
        display: grid;
        place-items: center;
        border-radius: 50%;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 700;
    }

    .policy-layout-f .head h3 {
        margin: 0;
    }

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

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

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

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

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
}
.nav-link:hover,
.nav-link:focus-visible {
    color: var(--brand);
    background-color: var(--btn-ghost-bg-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

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

.search-toggle,
.menu-toggle {
    background: var(--btn-ghost-bg);
    border: 1px solid var(--border-on-surface-light);
    border-radius: var(--radius-md);
    color: var(--fg-on-surface);
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--anim-duration) var(--anim-ease);
}
.search-toggle:hover,
.search-toggle:focus-visible,
.menu-toggle:hover,
.menu-toggle:focus-visible {
    background-color: var(--btn-ghost-bg-hover);
    border-color: var(--brand);
    color: var(--brand);
    outline: none;
}
.search-toggle svg {
    display: block;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    width: 44px;
    height: 44px;
    justify-content: center;
    gap: 5px;
}
.menu-toggle-line {
    display: block;
    height: 2px;
    width: 20px;
    background-color: currentColor;
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
    .menu-toggle {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    }
    .main-nav.is-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        width: 100%;
    }
    .nav-link {
        display: block;
        text-align: center;
        padding: var(--space-y) var(--space-x);
    }
    .menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2.5rem 1rem 1.5rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2.5rem;
        padding-bottom: 1.5rem;
    }

    .footer-section {
        flex: 1;
        min-width: 200px;
    }

    .brand-section {
        flex: 1.2;
    }

    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.75rem;
        letter-spacing: -0.5px;
    }

    .copyright {
        color: #6c757d;
        margin-bottom: 1rem;
    }

    .legal-links {
        margin-top: 1rem;
    }

    .legal-links a {
        color: #495057;
        text-decoration: none;
        transition: color 0.2s;
    }

    .legal-links a:hover {
        color: #007bff;
        text-decoration: underline;
    }

    .separator {
        color: #adb5bd;
        margin: 0 0.5rem;
    }

    .footer-section h4 {
        color: #2c3e50;
        margin-bottom: 1.2rem;
        font-size: 1.1rem;
        font-weight: 600;
    }

    .footer-menu {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-menu li {
        margin-bottom: 0.7rem;
    }

    .footer-menu a {
        color: #495057;
        text-decoration: none;
        transition: color 0.2s, padding-left 0.2s;
    }

    .footer-menu a:hover {
        color: #007bff;
        padding-left: 5px;
    }

    address {
        font-style: normal;
        color: #495057;
    }

    address a {
        color: #495057;
        text-decoration: none;
        transition: color 0.2s;
    }

    address a:hover {
        color: #007bff;
        text-decoration: underline;
    }

    .footer-disclaimer {
        max-width: 1200px;
        margin: 1.5rem auto 0;
        padding-top: 1.5rem;
        border-top: 1px solid #e9ecef;
        text-align: center;
        font-size: 0.85rem;
        color: #6c757d;
        line-height: 1.5;
    }

    .footer-disclaimer a {
        color: #6c757d;
        text-decoration: underline;
    }

    .footer-disclaimer a:hover {
        color: #0056b3;
    }

    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 2rem;
        }

        .footer-section {
            width: 100%;
        }

        .brand-section {
            text-align: center;
        }

        .legal-links {
            text-align: center;
        }

        .nav-section,
        .contact-section {
            text-align: center;
        }

        .footer-menu {
            display: inline-block;
            text-align: left;
        }
    }

.cookie-lv4 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: var(--surface-2);
        border-bottom: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
    }

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

    .cookie-lv4__inner span {
        color: var(--neutral-600);
        margin-left: 6px;
    }

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

    .cookie-lv4__actions a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--link);
        padding: 6px 10px;
    }

    .cookie-lv4__actions a[data-choice='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
}
.nav-link:hover,
.nav-link:focus-visible {
    color: var(--brand);
    background-color: var(--btn-ghost-bg-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

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

.search-toggle,
.menu-toggle {
    background: var(--btn-ghost-bg);
    border: 1px solid var(--border-on-surface-light);
    border-radius: var(--radius-md);
    color: var(--fg-on-surface);
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--anim-duration) var(--anim-ease);
}
.search-toggle:hover,
.search-toggle:focus-visible,
.menu-toggle:hover,
.menu-toggle:focus-visible {
    background-color: var(--btn-ghost-bg-hover);
    border-color: var(--brand);
    color: var(--brand);
    outline: none;
}
.search-toggle svg {
    display: block;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    width: 44px;
    height: 44px;
    justify-content: center;
    gap: 5px;
}
.menu-toggle-line {
    display: block;
    height: 2px;
    width: 20px;
    background-color: currentColor;
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
    .menu-toggle {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    }
    .main-nav.is-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        width: 100%;
    }
    .nav-link {
        display: block;
        text-align: center;
        padding: var(--space-y) var(--space-x);
    }
    .menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2.5rem 1rem 1.5rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2.5rem;
        padding-bottom: 1.5rem;
    }

    .footer-section {
        flex: 1;
        min-width: 200px;
    }

    .brand-section {
        flex: 1.2;
    }

    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.75rem;
        letter-spacing: -0.5px;
    }

    .copyright {
        color: #6c757d;
        margin-bottom: 1rem;
    }

    .legal-links {
        margin-top: 1rem;
    }

    .legal-links a {
        color: #495057;
        text-decoration: none;
        transition: color 0.2s;
    }

    .legal-links a:hover {
        color: #007bff;
        text-decoration: underline;
    }

    .separator {
        color: #adb5bd;
        margin: 0 0.5rem;
    }

    .footer-section h4 {
        color: #2c3e50;
        margin-bottom: 1.2rem;
        font-size: 1.1rem;
        font-weight: 600;
    }

    .footer-menu {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-menu li {
        margin-bottom: 0.7rem;
    }

    .footer-menu a {
        color: #495057;
        text-decoration: none;
        transition: color 0.2s, padding-left 0.2s;
    }

    .footer-menu a:hover {
        color: #007bff;
        padding-left: 5px;
    }

    address {
        font-style: normal;
        color: #495057;
    }

    address a {
        color: #495057;
        text-decoration: none;
        transition: color 0.2s;
    }

    address a:hover {
        color: #007bff;
        text-decoration: underline;
    }

    .footer-disclaimer {
        max-width: 1200px;
        margin: 1.5rem auto 0;
        padding-top: 1.5rem;
        border-top: 1px solid #e9ecef;
        text-align: center;
        font-size: 0.85rem;
        color: #6c757d;
        line-height: 1.5;
    }

    .footer-disclaimer a {
        color: #6c757d;
        text-decoration: underline;
    }

    .footer-disclaimer a:hover {
        color: #0056b3;
    }

    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 2rem;
        }

        .footer-section {
            width: 100%;
        }

        .brand-section {
            text-align: center;
        }

        .legal-links {
            text-align: center;
        }

        .nav-section,
        .contact-section {
            text-align: center;
        }

        .footer-menu {
            display: inline-block;
            text-align: left;
        }
    }

.cookie-lv4 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: var(--surface-2);
        border-bottom: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
    }

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

    .cookie-lv4__inner span {
        color: var(--neutral-600);
        margin-left: 6px;
    }

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

    .cookie-lv4__actions a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--link);
        padding: 6px 10px;
    }

    .cookie-lv4__actions a[data-choice='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

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

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

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

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

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

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

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

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

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

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

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
}
.nav-link:hover,
.nav-link:focus-visible {
    color: var(--brand);
    background-color: var(--btn-ghost-bg-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

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

.search-toggle,
.menu-toggle {
    background: var(--btn-ghost-bg);
    border: 1px solid var(--border-on-surface-light);
    border-radius: var(--radius-md);
    color: var(--fg-on-surface);
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--anim-duration) var(--anim-ease);
}
.search-toggle:hover,
.search-toggle:focus-visible,
.menu-toggle:hover,
.menu-toggle:focus-visible {
    background-color: var(--btn-ghost-bg-hover);
    border-color: var(--brand);
    color: var(--brand);
    outline: none;
}
.search-toggle svg {
    display: block;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    width: 44px;
    height: 44px;
    justify-content: center;
    gap: 5px;
}
.menu-toggle-line {
    display: block;
    height: 2px;
    width: 20px;
    background-color: currentColor;
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
    .menu-toggle {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    }
    .main-nav.is-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        width: 100%;
    }
    .nav-link {
        display: block;
        text-align: center;
        padding: var(--space-y) var(--space-x);
    }
    .menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #dee2e6;
        padding: 2.5rem 1rem 1.5rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2.5rem;
        padding-bottom: 1.5rem;
    }

    .footer-section {
        flex: 1;
        min-width: 200px;
    }

    .brand-section {
        flex: 1.2;
    }

    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.75rem;
        letter-spacing: -0.5px;
    }

    .copyright {
        color: #6c757d;
        margin-bottom: 1rem;
    }

    .legal-links {
        margin-top: 1rem;
    }

    .legal-links a {
        color: #495057;
        text-decoration: none;
        transition: color 0.2s;
    }

    .legal-links a:hover {
        color: #007bff;
        text-decoration: underline;
    }

    .separator {
        color: #adb5bd;
        margin: 0 0.5rem;
    }

    .footer-section h4 {
        color: #2c3e50;
        margin-bottom: 1.2rem;
        font-size: 1.1rem;
        font-weight: 600;
    }

    .footer-menu {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-menu li {
        margin-bottom: 0.7rem;
    }

    .footer-menu a {
        color: #495057;
        text-decoration: none;
        transition: color 0.2s, padding-left 0.2s;
    }

    .footer-menu a:hover {
        color: #007bff;
        padding-left: 5px;
    }

    address {
        font-style: normal;
        color: #495057;
    }

    address a {
        color: #495057;
        text-decoration: none;
        transition: color 0.2s;
    }

    address a:hover {
        color: #007bff;
        text-decoration: underline;
    }

    .footer-disclaimer {
        max-width: 1200px;
        margin: 1.5rem auto 0;
        padding-top: 1.5rem;
        border-top: 1px solid #e9ecef;
        text-align: center;
        font-size: 0.85rem;
        color: #6c757d;
        line-height: 1.5;
    }

    .footer-disclaimer a {
        color: #6c757d;
        text-decoration: underline;
    }

    .footer-disclaimer a:hover {
        color: #0056b3;
    }

    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 2rem;
        }

        .footer-section {
            width: 100%;
        }

        .brand-section {
            text-align: center;
        }

        .legal-links {
            text-align: center;
        }

        .nav-section,
        .contact-section {
            text-align: center;
        }

        .footer-menu {
            display: inline-block;
            text-align: left;
        }
    }

.cookie-lv4 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: var(--surface-2);
        border-bottom: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
    }

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

    .cookie-lv4__inner span {
        color: var(--neutral-600);
        margin-left: 6px;
    }

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

    .cookie-lv4__actions a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--link);
        padding: 6px 10px;
    }

    .cookie-lv4__actions a[data-choice='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

.nf404-v7 {
        padding: clamp(56px, 10vw, 112px) 20px;
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

    .nf404-v7__box {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
    }

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

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

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