:root {
  --font-family: "DM Sans", sans-serif;
  --font-size-base: 15px;
  --line-height-base: 1.65;

  --max-w: 900px;
  --space-x: 1.06rem;
  --space-y: 1.5rem;
  --gap: 0.83rem;

  --radius-xl: 0.73rem;
  --radius-lg: 0.61rem;
  --radius-md: 0.33rem;
  --radius-sm: 0.21rem;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.07);
  --shadow-md: 0 3px 14px rgba(0,0,0,0.09);
  --shadow-lg: 0 10px 20px rgba(0,0,0,0.11);

  --overlay: rgba(0, 0, 0, 0.45);
  --anim-duration: 310ms;
  --anim-ease: cubic-bezier(0.4,0,0.2,1);
  --random-number: 2;

  --brand: #0056B3;
  --brand-contrast: #FFFFFF;
  --accent: #E63946;
  --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: #495057;

  --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(0, 0, 0, 0.08);

  --bg-primary: #0056B3;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #004494;
  --ring: rgba(0, 86, 179, 0.4);

  --bg-accent: #FFE5E7;
  --fg-on-accent: #7A1C26;
  --bg-accent-hover: #FF4D5A;

  --link: #0056B3;
  --link-hover: #004494;

  --gradient-hero: linear-gradient(135deg, #0056B3 0%, #0077CC 100%);
  --gradient-accent: linear-gradient(135deg, #E63946 0%, #FF6B6B 100%);

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

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}
.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}
.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--link-hover);
}
.main-nav {
    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 {
    color: var(--brand);
    background-color: var(--btn-ghost-bg-hover);
}
.header-actions {
    display: flex;
    align-items: center;
    gap: var(--gap);
}
.btn-search,
.btn-menu {
    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) / 1.5) calc(var(--space-x) / 1.5);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--anim-duration) var(--anim-ease);
}
.btn-search:hover,
.btn-menu:hover {
    background-color: var(--btn-ghost-bg-hover);
    border-color: var(--brand);
    color: var(--brand);
}
.btn-menu {
    display: none;
}
.menu-icon {
    display: block;
    width: 22px;
    height: 2px;
    background-color: currentColor;
    position: relative;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.menu-icon::before,
.menu-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: currentColor;
    left: 0;
    transition: transform var(--anim-duration) var(--anim-ease);
}
.menu-icon::before {
    top: -6px;
}
.menu-icon::after {
    bottom: -6px;
}
.btn-menu[aria-expanded="true"] .menu-icon {
    background-color: transparent;
}
.btn-menu[aria-expanded="true"] .menu-icon::before {
    transform: rotate(45deg) translate(4px, 5px);
}
.btn-menu[aria-expanded="true"] .menu-icon::after {
    transform: rotate(-45deg) translate(4px, -5px);
}

@media (max-width: 767px) {
    .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--surface-1);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-md);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--anim-duration) var(--anim-ease);
        z-index: 999;
    }
    .main-nav.is-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        align-items: center;
    }
    .btn-menu {
        display: flex;
    }
    .header-container {
        flex-wrap: wrap;
    }
}

.site-footer {
    background-color: #f8f9fa;
    border-top: 1px solid #eaeaea;
    padding: 2.5rem 1rem;
    font-family: system-ui, -apple-system, sans-serif;
    color: #333;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2.5rem;
  }
  .footer-brand {
    flex: 1;
    min-width: 250px;
  }
  .footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 1rem;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    line-height: 1.4;
    color: #666;
    margin-bottom: 1.5rem;
    max-width: 90%;
  }
  .footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
  }
  .footer-legal-links a {
    color: #4a5568;
    text-decoration: none;
  }
  .footer-legal-links a:hover {
    text-decoration: underline;
    color: #1a365d;
  }
  .footer-nav {
    flex: 0 0 auto;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  .footer-nav a {
    color: #4a5568;
    text-decoration: none;
    font-size: 0.95rem;
    white-space: nowrap;
  }
  .footer-nav a:hover {
    color: #1a365d;
    text-decoration: underline;
  }
  .footer-contact {
    flex: 1;
    min-width: 250px;
    text-align: right;
  }
  .footer-contact address {
    font-style: normal;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }
  .contact-line {
    margin-bottom: 0.4rem;
    color: #4a5568;
  }
  .footer-contact a {
    color: #4a5568;
    text-decoration: none;
  }
  .footer-contact a:hover {
    color: #1a365d;
    text-decoration: underline;
  }
  .footer-copyright {
    font-size: 0.85rem;
    color: #718096;
    margin-top: 1rem;
  }

  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      gap: 2rem;
    }
    .footer-contact {
      text-align: left;
    }
    .footer-disclaimer {
      max-width: 100%;
    }
  }

.nfcookie-v9 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .nfcookie-v9__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, var(--bg-primary), var(--neutral-900));
        color: var(--fg-on-primary);
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .nfcookie-v9__stack strong {display: block; margin-bottom: 6px;}
    .nfcookie-v9__stack p {margin: 0; opacity: .9;}

    .nfcookie-v9__actions {margin-top: 12px; display: flex; flex-wrap: wrap; gap: 10px;}

    .nfcookie-v9__actions button {
        border: 1px solid rgba(255, 255, 255, .4);
        background: transparent;
        color: var(--fg-on-primary);
        border-radius: 999px;
        padding: 7px 12px;
        cursor: pointer;
    }

    .nfcookie-v9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        border-color: transparent;
        color: var(--fg-on-accent);
        font-weight: 700;
    }

.wp-lang-switcher-v6 {
        position: fixed;
        right: clamp(16px, 2vw, var(--space-x, 24px));
        bottom: clamp(16px, 2vw, var(--space-y, 20px));
        z-index: 99999;

        --local-random: var(--random-number, 1);
    }

    .wp-lang-switcher-v6__btn {
        background: var(--surface-1, #fff);
        color: var(--fg-on-surface, #111827);
        padding: calc(9px + var(--local-random) * 1px) calc(14px + var(--local-random) * 2px);
        border: 1px solid var(--border-on-surface, #e5e7eb);
        border-radius: calc(var(--radius-sm, 8px) + var(--local-random) * 1px);
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        box-shadow: var(--shadow-sm, 0 2px 4px rgba(0, 0, 0, 0.05));
        transition: all var(--anim-duration, 0.3s) var(--anim-ease, ease-in-out);

        font-size: 14px;
        font-weight: 400;
        position: relative;
    }

    .wp-lang-switcher-v6__btn::after {
        content: '';
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
        width: 0;
        height: 0;
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-top: 5px solid var(--neutral-600, #4b5563);
        transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease-in-out);
    }

    .wp-lang-switcher-v6__btn:hover {
        background: var(--surface-2, #f9fafb);
        border-color: var(--neutral-300, #d1d5db);
    }

    .wp-lang-switcher-v6__dropdown.open ~ .wp-lang-switcher-v6__btn::after,
    .wp-lang-switcher-v6__btn:has(~ .wp-lang-switcher-v6__dropdown.open)::after {
        transform: translateY(-50%) rotate(180deg);
    }

    .wp-lang-switcher-v6__flag {
        font-size: 18px;
        line-height: 1;
    }

    .wp-lang-switcher-v6__text {
        padding-right: calc(12px + var(--local-random) * 2px);
    }

    .wp-lang-switcher-v6__dropdown {
        display: none;
        position: absolute;
        right: 0;
        bottom: calc(100% + 4px);
        background: var(--surface-1, #fff);
        border: 1px solid var(--border-on-surface, #e5e7eb);
        border-radius: calc(var(--radius-sm, 8px) + var(--local-random) * 1px);
        box-shadow: var(--shadow-md, 0 4px 12px rgba(0, 0, 0, 0.08));
        min-width: calc(180px + var(--local-random) * 10px);
        overflow: hidden;

        transform: translateY(6px);
        transition: all var(--anim-duration, 0.3s) var(--anim-ease, ease-in-out);
    }

    .wp-lang-switcher-v6__dropdown.open {
        display: block;
        opacity: 1;
        transform: translateY(0);
    }

    .wp-lang-switcher-v6__dropdown button,
    .wp-lang-switcher-v6__dropdown a {
        width: 100%;
        text-align: left;
        padding: calc(9px + var(--local-random) * 1px) calc(12px + var(--local-random) * 2px);
        border: 0;
        background: var(--surface-1, #fff);
        color: var(--fg-on-surface, #111827);
        cursor: pointer;

        font-size: 14px;
        display: flex;
        align-items: center;
        gap: 10px;
        transition: background var(--anim-duration, 0.3s) var(--anim-ease, ease-in-out);
        text-decoration: none;
    }

    .wp-lang-switcher-v6__dropdown button:hover,
    .wp-lang-switcher-v6__dropdown a:hover {
        background: var(--bg-alt, #f9fafb);
    }

    .wp-lang-switcher-v6__dropdown button:active,
    .wp-lang-switcher-v6__dropdown a:active {
        background: var(--neutral-100, #f3f4f6);
    }

.intro-band {
        padding: clamp(60px, 9vw, 120px) clamp(16px, 3vw, 40px);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    .intro-band .wrap {
        max-width: 980px;
        margin: 0 auto;
    }

    .intro-band .eyebrow {
        margin: 0 0 8px;
        opacity: 0.9;
    }

    .intro-band h1 {
        margin: 0 0 10px;
        font-size: clamp(34px, 5.6vw, 60px);
    }

    .intro-band .lead {
        margin: 0 0 16px;
        max-width: 70ch;
        opacity: 0.9;
    }

    .intro-band .row {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 10px;
    }

    .intro-band .fact {
        border: 1px solid var(--chip-bg);
        border-radius: var(--radius-md);
        background: var(--chip-bg);
        padding: 12px;
    }

    .intro-band .label {
        margin: 0;
        opacity: 0.85;
    }

    .intro-band .number {
        margin: 6px 0 0;
        font-size: clamp(24px, 4vw, 36px);
        font-weight: 600;
    }

    .intro-band .actions {
        margin-top: 16px;
    }

    .intro-band .actions a {
        text-decoration: none;
        padding: 10px 16px;
        border-radius: var(--radius-md);
        background: var(--accent);
        color: var(--accent-contrast);
    }

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

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

    .next-pins-l4__head {
        margin-bottom: 1.1rem;
    }

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

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

    .next-pins-l4__head span {
        display: block;
        margin-top: .8rem;
        color: var(--neutral-600);
        max-width: 38rem;
    }

    .next-pins-l4__pins {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
        gap: var(--gap);
    }

    .next-pins-l4__pins article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
    }

    .next-pins-l4__pins div {
        display: inline-flex;
        width: 2.4rem;
        height: 2.4rem;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: var(--surface-2);
    }

    .next-pins-l4__pins h3 {
        margin: .75rem 0 .35rem;
    }

    .next-pins-l4__pins a {
        color: var(--link);
        text-decoration: none;
    }

    .next-pins-l4__button {
        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-v5 {
        padding: calc(var(--space-y) * 2) var(--space-x);
        background: var(--gradient-accent);
        color: var(--accent-contrast)
    }

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

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

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

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

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

    .education-struct-v5 .grid a, .education-struct-v5 .tiers a, .education-struct-v5 .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-v5 .path {
        display: grid;
        gap: .65rem
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .values-grid-l2__grid i {
        font-style: normal;
    }

    .values-grid-l2__grid h3 {
        margin: .75rem 0 .35rem;
    }

    .values-grid-l2__grid p {
        margin: 0;
        color: var(--neutral-600);
    }

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

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}
.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}
.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--link-hover);
}
.main-nav {
    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 {
    color: var(--brand);
    background-color: var(--btn-ghost-bg-hover);
}
.header-actions {
    display: flex;
    align-items: center;
    gap: var(--gap);
}
.btn-search,
.btn-menu {
    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) / 1.5) calc(var(--space-x) / 1.5);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--anim-duration) var(--anim-ease);
}
.btn-search:hover,
.btn-menu:hover {
    background-color: var(--btn-ghost-bg-hover);
    border-color: var(--brand);
    color: var(--brand);
}
.btn-menu {
    display: none;
}
.menu-icon {
    display: block;
    width: 22px;
    height: 2px;
    background-color: currentColor;
    position: relative;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.menu-icon::before,
.menu-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: currentColor;
    left: 0;
    transition: transform var(--anim-duration) var(--anim-ease);
}
.menu-icon::before {
    top: -6px;
}
.menu-icon::after {
    bottom: -6px;
}
.btn-menu[aria-expanded="true"] .menu-icon {
    background-color: transparent;
}
.btn-menu[aria-expanded="true"] .menu-icon::before {
    transform: rotate(45deg) translate(4px, 5px);
}
.btn-menu[aria-expanded="true"] .menu-icon::after {
    transform: rotate(-45deg) translate(4px, -5px);
}

@media (max-width: 767px) {
    .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--surface-1);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-md);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--anim-duration) var(--anim-ease);
        z-index: 999;
    }
    .main-nav.is-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        align-items: center;
    }
    .btn-menu {
        display: flex;
    }
    .header-container {
        flex-wrap: wrap;
    }
}

.site-footer {
    background-color: #f8f9fa;
    border-top: 1px solid #eaeaea;
    padding: 2.5rem 1rem;
    font-family: system-ui, -apple-system, sans-serif;
    color: #333;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2.5rem;
  }
  .footer-brand {
    flex: 1;
    min-width: 250px;
  }
  .footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 1rem;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    line-height: 1.4;
    color: #666;
    margin-bottom: 1.5rem;
    max-width: 90%;
  }
  .footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
  }
  .footer-legal-links a {
    color: #4a5568;
    text-decoration: none;
  }
  .footer-legal-links a:hover {
    text-decoration: underline;
    color: #1a365d;
  }
  .footer-nav {
    flex: 0 0 auto;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  .footer-nav a {
    color: #4a5568;
    text-decoration: none;
    font-size: 0.95rem;
    white-space: nowrap;
  }
  .footer-nav a:hover {
    color: #1a365d;
    text-decoration: underline;
  }
  .footer-contact {
    flex: 1;
    min-width: 250px;
    text-align: right;
  }
  .footer-contact address {
    font-style: normal;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }
  .contact-line {
    margin-bottom: 0.4rem;
    color: #4a5568;
  }
  .footer-contact a {
    color: #4a5568;
    text-decoration: none;
  }
  .footer-contact a:hover {
    color: #1a365d;
    text-decoration: underline;
  }
  .footer-copyright {
    font-size: 0.85rem;
    color: #718096;
    margin-top: 1rem;
  }

  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      gap: 2rem;
    }
    .footer-contact {
      text-align: left;
    }
    .footer-disclaimer {
      max-width: 100%;
    }
  }

.nfcookie-v9 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .nfcookie-v9__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, var(--bg-primary), var(--neutral-900));
        color: var(--fg-on-primary);
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .nfcookie-v9__stack strong {display: block; margin-bottom: 6px;}
    .nfcookie-v9__stack p {margin: 0; opacity: .9;}

    .nfcookie-v9__actions {margin-top: 12px; display: flex; flex-wrap: wrap; gap: 10px;}

    .nfcookie-v9__actions button {
        border: 1px solid rgba(255, 255, 255, .4);
        background: transparent;
        color: var(--fg-on-primary);
        border-radius: 999px;
        padding: 7px 12px;
        cursor: pointer;
    }

    .nfcookie-v9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        border-color: transparent;
        color: var(--fg-on-accent);
        font-weight: 700;
    }

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

    .story-edge-c5__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        gap: 1.4rem;
        flex-wrap: wrap;
        align-items: center;
    }

    .story-edge-c5__image {
        flex: 1 1 18rem;
        order: var(--random-number);
    }

    .story-edge-c5__content {
        flex: 1 1 22rem;
        order: calc(3 - var(--random-number));
    }

    .story-edge-c5__image img {
        display: block;
        width: 100%;
        border-radius: var(--radius-xl);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .story-edge-c5__content p:first-child {
        margin: 0;
        color: rgba(255, 255, 255, .76);
        text-transform: uppercase;
        letter-spacing: .1em;
        font-size: .82rem;
    }

    .story-edge-c5__content h2 {
        margin: .55rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .story-edge-c5__content span {
        display: block;
        margin-top: .8rem;
    }

    .story-edge-c5__content p {

    }

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

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

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

    .identity-lv4__head {
        margin-bottom: 15px;
    }

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

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

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

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

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

    .identity-lv4__line {
        display: flex;
        align-items: baseline;
        gap: 8px;
        flex-wrap: wrap;
    }

    .identity-lv4__line i {
        font-style: normal;
        color: var(--link);
    }

    .identity-lv4__line h3 {
        margin: 0;
    }

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

    .identity-lv4__stack small {
        color: var(--neutral-800);
        font-weight: 600;
    }

.mission--colored-v5 {
    padding: 64px 20px;
    background: radial-gradient(circle at top left, rgba(16,185,129,0.35), transparent),
                radial-gradient(circle at bottom right, rgba(59,130,246,0.4), transparent),
                var(--neutral-900);
    color: var(--neutral-0);
}

.mission__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
    gap: 24px;
    align-items: start;
}

.mission__eyebrow {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(209,250,229,0.9);
    margin: 0 0 0.5rem;
}

.mission__title {
    margin: 0 0 8px;
    font-size: clamp(24px,4vw,32px);
    color: var(--brand-contrast);
}

.mission__text {
    margin: 0;
    color: var(--neutral-200);
    font-size: 0.95rem;
    line-height: 1.7;
}

.mission__pillars {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.mission__pillar {
    border-radius: var(--radius-lg);
    padding: 10px 12px;
    border: 1px solid rgba(148,163,184,0.6);
    background: rgba(15,23,42,0.96);
}

.mission__pillar--impact {
    border-color: var(--accent);
}

.mission__pillar--safety {
    border-color: var(--accent);
}

.mission__pillar--focus {
    border-color: var(--bg-primary);
}

.mission__pillar h3 {
    margin: 0 0 4px;
    font-size: 0.95rem;
    color: var(--brand-contrast);
}

.mission__pillar p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--neutral-200);
}

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

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}
.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}
.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--link-hover);
}
.main-nav {
    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 {
    color: var(--brand);
    background-color: var(--btn-ghost-bg-hover);
}
.header-actions {
    display: flex;
    align-items: center;
    gap: var(--gap);
}
.btn-search,
.btn-menu {
    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) / 1.5) calc(var(--space-x) / 1.5);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--anim-duration) var(--anim-ease);
}
.btn-search:hover,
.btn-menu:hover {
    background-color: var(--btn-ghost-bg-hover);
    border-color: var(--brand);
    color: var(--brand);
}
.btn-menu {
    display: none;
}
.menu-icon {
    display: block;
    width: 22px;
    height: 2px;
    background-color: currentColor;
    position: relative;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.menu-icon::before,
.menu-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: currentColor;
    left: 0;
    transition: transform var(--anim-duration) var(--anim-ease);
}
.menu-icon::before {
    top: -6px;
}
.menu-icon::after {
    bottom: -6px;
}
.btn-menu[aria-expanded="true"] .menu-icon {
    background-color: transparent;
}
.btn-menu[aria-expanded="true"] .menu-icon::before {
    transform: rotate(45deg) translate(4px, 5px);
}
.btn-menu[aria-expanded="true"] .menu-icon::after {
    transform: rotate(-45deg) translate(4px, -5px);
}

@media (max-width: 767px) {
    .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--surface-1);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-md);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--anim-duration) var(--anim-ease);
        z-index: 999;
    }
    .main-nav.is-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        align-items: center;
    }
    .btn-menu {
        display: flex;
    }
    .header-container {
        flex-wrap: wrap;
    }
}

.site-footer {
    background-color: #f8f9fa;
    border-top: 1px solid #eaeaea;
    padding: 2.5rem 1rem;
    font-family: system-ui, -apple-system, sans-serif;
    color: #333;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2.5rem;
  }
  .footer-brand {
    flex: 1;
    min-width: 250px;
  }
  .footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 1rem;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    line-height: 1.4;
    color: #666;
    margin-bottom: 1.5rem;
    max-width: 90%;
  }
  .footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
  }
  .footer-legal-links a {
    color: #4a5568;
    text-decoration: none;
  }
  .footer-legal-links a:hover {
    text-decoration: underline;
    color: #1a365d;
  }
  .footer-nav {
    flex: 0 0 auto;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  .footer-nav a {
    color: #4a5568;
    text-decoration: none;
    font-size: 0.95rem;
    white-space: nowrap;
  }
  .footer-nav a:hover {
    color: #1a365d;
    text-decoration: underline;
  }
  .footer-contact {
    flex: 1;
    min-width: 250px;
    text-align: right;
  }
  .footer-contact address {
    font-style: normal;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }
  .contact-line {
    margin-bottom: 0.4rem;
    color: #4a5568;
  }
  .footer-contact a {
    color: #4a5568;
    text-decoration: none;
  }
  .footer-contact a:hover {
    color: #1a365d;
    text-decoration: underline;
  }
  .footer-copyright {
    font-size: 0.85rem;
    color: #718096;
    margin-top: 1rem;
  }

  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      gap: 2rem;
    }
    .footer-contact {
      text-align: left;
    }
    .footer-disclaimer {
      max-width: 100%;
    }
  }

.nfcookie-v9 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .nfcookie-v9__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, var(--bg-primary), var(--neutral-900));
        color: var(--fg-on-primary);
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .nfcookie-v9__stack strong {display: block; margin-bottom: 6px;}
    .nfcookie-v9__stack p {margin: 0; opacity: .9;}

    .nfcookie-v9__actions {margin-top: 12px; display: flex; flex-wrap: wrap; gap: 10px;}

    .nfcookie-v9__actions button {
        border: 1px solid rgba(255, 255, 255, .4);
        background: transparent;
        color: var(--fg-on-primary);
        border-radius: 999px;
        padding: 7px 12px;
        cursor: pointer;
    }

    .nfcookie-v9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        border-color: transparent;
        color: var(--fg-on-accent);
        font-weight: 700;
    }

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

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

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

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

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

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

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

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

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

    .plans-cv2__line h3 {
        margin: 0;
    }

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

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

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

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

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

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

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

        transform: translateY(-18px);
    }

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

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

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

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

        transform: translateY(28px);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .features-struct-v6 details {
        padding: .75rem;
        border-radius: var(--radius-md);
        background: var(--neutral-800);
        border: 1px solid var(--border-on-surface);
        margin-bottom: 1rem;
    }

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

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

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

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

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}
.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}
.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--link-hover);
}
.main-nav {
    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 {
    color: var(--brand);
    background-color: var(--btn-ghost-bg-hover);
}
.header-actions {
    display: flex;
    align-items: center;
    gap: var(--gap);
}
.btn-search,
.btn-menu {
    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) / 1.5) calc(var(--space-x) / 1.5);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--anim-duration) var(--anim-ease);
}
.btn-search:hover,
.btn-menu:hover {
    background-color: var(--btn-ghost-bg-hover);
    border-color: var(--brand);
    color: var(--brand);
}
.btn-menu {
    display: none;
}
.menu-icon {
    display: block;
    width: 22px;
    height: 2px;
    background-color: currentColor;
    position: relative;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.menu-icon::before,
.menu-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: currentColor;
    left: 0;
    transition: transform var(--anim-duration) var(--anim-ease);
}
.menu-icon::before {
    top: -6px;
}
.menu-icon::after {
    bottom: -6px;
}
.btn-menu[aria-expanded="true"] .menu-icon {
    background-color: transparent;
}
.btn-menu[aria-expanded="true"] .menu-icon::before {
    transform: rotate(45deg) translate(4px, 5px);
}
.btn-menu[aria-expanded="true"] .menu-icon::after {
    transform: rotate(-45deg) translate(4px, -5px);
}

@media (max-width: 767px) {
    .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--surface-1);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-md);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--anim-duration) var(--anim-ease);
        z-index: 999;
    }
    .main-nav.is-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        align-items: center;
    }
    .btn-menu {
        display: flex;
    }
    .header-container {
        flex-wrap: wrap;
    }
}

.site-footer {
    background-color: #f8f9fa;
    border-top: 1px solid #eaeaea;
    padding: 2.5rem 1rem;
    font-family: system-ui, -apple-system, sans-serif;
    color: #333;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2.5rem;
  }
  .footer-brand {
    flex: 1;
    min-width: 250px;
  }
  .footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 1rem;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    line-height: 1.4;
    color: #666;
    margin-bottom: 1.5rem;
    max-width: 90%;
  }
  .footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
  }
  .footer-legal-links a {
    color: #4a5568;
    text-decoration: none;
  }
  .footer-legal-links a:hover {
    text-decoration: underline;
    color: #1a365d;
  }
  .footer-nav {
    flex: 0 0 auto;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  .footer-nav a {
    color: #4a5568;
    text-decoration: none;
    font-size: 0.95rem;
    white-space: nowrap;
  }
  .footer-nav a:hover {
    color: #1a365d;
    text-decoration: underline;
  }
  .footer-contact {
    flex: 1;
    min-width: 250px;
    text-align: right;
  }
  .footer-contact address {
    font-style: normal;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }
  .contact-line {
    margin-bottom: 0.4rem;
    color: #4a5568;
  }
  .footer-contact a {
    color: #4a5568;
    text-decoration: none;
  }
  .footer-contact a:hover {
    color: #1a365d;
    text-decoration: underline;
  }
  .footer-copyright {
    font-size: 0.85rem;
    color: #718096;
    margin-top: 1rem;
  }

  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      gap: 2rem;
    }
    .footer-contact {
      text-align: left;
    }
    .footer-disclaimer {
      max-width: 100%;
    }
  }

.nfcookie-v9 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .nfcookie-v9__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, var(--bg-primary), var(--neutral-900));
        color: var(--fg-on-primary);
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .nfcookie-v9__stack strong {display: block; margin-bottom: 6px;}
    .nfcookie-v9__stack p {margin: 0; opacity: .9;}

    .nfcookie-v9__actions {margin-top: 12px; display: flex; flex-wrap: wrap; gap: 10px;}

    .nfcookie-v9__actions button {
        border: 1px solid rgba(255, 255, 255, .4);
        background: transparent;
        color: var(--fg-on-primary);
        border-radius: 999px;
        padding: 7px 12px;
        cursor: pointer;
    }

    .nfcookie-v9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        border-color: transparent;
        color: var(--fg-on-accent);
        font-weight: 700;
    }

.nftouch-v11 {
        padding: clamp(56px, 8vw, 96px) 16px;
        background: linear-gradient(145deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
    }

    .nftouch-v11__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        text-align: center;
    }

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

    .nftouch-v11__lead {
        margin: 10px auto 14px;
        opacity: .92;
        max-width: 800px;
    }

    .nftouch-v11__lane {
        display: flex;
        gap: 10px;
        overflow-x: auto;
        padding-bottom: 6px;
        justify-content: center;
        margin-top: 30px;
    }

    .nftouch-v11__lane article {
        min-width: 250px;
        border: 1px solid rgba(255, 255, 255, .28);
        border-radius: var(--radius-lg);
        background: rgba(255, 255, 255, .1);
        padding: 20px;
        text-align: left;
        backdrop-filter: blur(10px);
    }

    .nftouch-v11__lane h3 {
        margin: 0 0 12px;
        font-size: 1.2rem;
    }

    .nftouch-v11__lane p {
        margin: 0 0 12px;
        font-size: 0.95rem;
        opacity: 0.9;
    }

    .nftouch-v11__lane a {
        color: var(--fg-on-primary);
        text-decoration: underline;
        font-weight: 500;
    }

    .nftouch-v11__main {
        display: inline-block;
        margin-top: 12px;
        text-decoration: none;
        padding: 10px 14px;
        border-radius: 10px;
        background: var(--fg-on-primary);
        color: var(--fg-on-accent);
    }
    .nftouch-v11__main-form input::placeholder {
        color: var(--input-placeholder);
    }

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

    .contacts-fresh-v1 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: calc(var(--gap) * 1.4);
    }

    .contacts-fresh-v1 .intro h2 {
        margin: .3rem 0;
        font-size: clamp(1.8rem, 3.6vw, 2.8rem);
    }

    .contacts-fresh-v1 .intro p {
        max-width: 56ch;
        color: var(--fg-on-surface-light);
    }

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

    .contacts-fresh-v1 article {
        padding: 1.1rem;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        box-shadow: var(--shadow-sm);
    }

    .contacts-fresh-v1 h3 {
        margin: 0 0 .6rem;
    }

    .contacts-fresh-v1 .value {
        margin: 0;
        font-weight: 700;
    }

    .contacts-fresh-v1 .hint {
        margin: .3rem 0 .8rem;
        color: var(--fg-on-surface-light);
    }

    .contacts-fresh-v1 a {
        text-decoration: none;
        color: var(--link);
        font-weight: 700;
    }

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

.support-cv5 {
        padding: clamp(54px, 7vw, 94px) clamp(16px, 4vw, 36px);
        background: var(--gradient-accent);
        color: var(--accent-contrast);
    }

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

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

    .support-cv5__head p {
        margin: 0;
        font-weight: 700;
        opacity: .9;
    }

    .support-cv5__head h2 {
        margin: 7px 0 0;
        font-size: clamp(30px, 5vw, 46px);
    }

    .support-cv5__grid {
        display: grid;
        gap: var(--gap);
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }

    .support-cv5__grid article {
        border-radius: var(--radius-lg);
        border: 1px solid rgba(0, 0, 0, 0.12);
        background: rgba(255, 255, 255, 0.32);
        color: var(--fg-on-page);
        padding: 13px;
        box-shadow: var(--shadow-sm);
    }

    .support-cv5__grid span {
        font-size: .82rem;
        color: var(--brand);
    }

    .support-cv5__grid h3 {
        margin: var(--space-x) 0;
    }

    .support-cv5__grid p {
        margin: 0;
        color: var(--neutral-700, var(--neutral-600));
    }

.form-fresh-v6 {
        padding: calc(var(--space-y) * 2.9) var(--space-x);
        background: var(--surface-2);
        color: var(--fg-on-surface);
    }

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

    .form-fresh-v6 h2 {
        margin: 0;
        font-size: clamp(1.8rem, 3.2vw, 2.4rem);
    }

    .form-fresh-v6 form {
        display: grid;
        gap: .85rem;
    }

    .form-fresh-v6 .rows {
        display: grid;
        gap: .6rem;
    }

    .form-fresh-v6 label {
        display: grid;
        grid-template-columns:180px 1fr;
        gap: .8rem;
        align-items: center;
        padding: .6rem .8rem;
        border-radius: var(--radius-sm);
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
    }

    .form-fresh-v6 b {
        font-size: .9rem;
    }

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

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

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

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}
.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}
.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--link-hover);
}
.main-nav {
    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 {
    color: var(--brand);
    background-color: var(--btn-ghost-bg-hover);
}
.header-actions {
    display: flex;
    align-items: center;
    gap: var(--gap);
}
.btn-search,
.btn-menu {
    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) / 1.5) calc(var(--space-x) / 1.5);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--anim-duration) var(--anim-ease);
}
.btn-search:hover,
.btn-menu:hover {
    background-color: var(--btn-ghost-bg-hover);
    border-color: var(--brand);
    color: var(--brand);
}
.btn-menu {
    display: none;
}
.menu-icon {
    display: block;
    width: 22px;
    height: 2px;
    background-color: currentColor;
    position: relative;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.menu-icon::before,
.menu-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: currentColor;
    left: 0;
    transition: transform var(--anim-duration) var(--anim-ease);
}
.menu-icon::before {
    top: -6px;
}
.menu-icon::after {
    bottom: -6px;
}
.btn-menu[aria-expanded="true"] .menu-icon {
    background-color: transparent;
}
.btn-menu[aria-expanded="true"] .menu-icon::before {
    transform: rotate(45deg) translate(4px, 5px);
}
.btn-menu[aria-expanded="true"] .menu-icon::after {
    transform: rotate(-45deg) translate(4px, -5px);
}

@media (max-width: 767px) {
    .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--surface-1);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-md);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--anim-duration) var(--anim-ease);
        z-index: 999;
    }
    .main-nav.is-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        align-items: center;
    }
    .btn-menu {
        display: flex;
    }
    .header-container {
        flex-wrap: wrap;
    }
}

.site-footer {
    background-color: #f8f9fa;
    border-top: 1px solid #eaeaea;
    padding: 2.5rem 1rem;
    font-family: system-ui, -apple-system, sans-serif;
    color: #333;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2.5rem;
  }
  .footer-brand {
    flex: 1;
    min-width: 250px;
  }
  .footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 1rem;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    line-height: 1.4;
    color: #666;
    margin-bottom: 1.5rem;
    max-width: 90%;
  }
  .footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
  }
  .footer-legal-links a {
    color: #4a5568;
    text-decoration: none;
  }
  .footer-legal-links a:hover {
    text-decoration: underline;
    color: #1a365d;
  }
  .footer-nav {
    flex: 0 0 auto;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  .footer-nav a {
    color: #4a5568;
    text-decoration: none;
    font-size: 0.95rem;
    white-space: nowrap;
  }
  .footer-nav a:hover {
    color: #1a365d;
    text-decoration: underline;
  }
  .footer-contact {
    flex: 1;
    min-width: 250px;
    text-align: right;
  }
  .footer-contact address {
    font-style: normal;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }
  .contact-line {
    margin-bottom: 0.4rem;
    color: #4a5568;
  }
  .footer-contact a {
    color: #4a5568;
    text-decoration: none;
  }
  .footer-contact a:hover {
    color: #1a365d;
    text-decoration: underline;
  }
  .footer-copyright {
    font-size: 0.85rem;
    color: #718096;
    margin-top: 1rem;
  }

  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      gap: 2rem;
    }
    .footer-contact {
      text-align: left;
    }
    .footer-disclaimer {
      max-width: 100%;
    }
  }

.nfcookie-v9 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .nfcookie-v9__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, var(--bg-primary), var(--neutral-900));
        color: var(--fg-on-primary);
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .nfcookie-v9__stack strong {display: block; margin-bottom: 6px;}
    .nfcookie-v9__stack p {margin: 0; opacity: .9;}

    .nfcookie-v9__actions {margin-top: 12px; display: flex; flex-wrap: wrap; gap: 10px;}

    .nfcookie-v9__actions button {
        border: 1px solid rgba(255, 255, 255, .4);
        background: transparent;
        color: var(--fg-on-primary);
        border-radius: 999px;
        padding: 7px 12px;
        cursor: pointer;
    }

    .nfcookie-v9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        border-color: transparent;
        color: var(--fg-on-accent);
        font-weight: 700;
    }

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

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

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

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

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

    .terms-layout-a article {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        padding: var(--space-y) var(--space-x);
        margin-bottom: 12px;
    }

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

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

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}
.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}
.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--link-hover);
}
.main-nav {
    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 {
    color: var(--brand);
    background-color: var(--btn-ghost-bg-hover);
}
.header-actions {
    display: flex;
    align-items: center;
    gap: var(--gap);
}
.btn-search,
.btn-menu {
    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) / 1.5) calc(var(--space-x) / 1.5);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--anim-duration) var(--anim-ease);
}
.btn-search:hover,
.btn-menu:hover {
    background-color: var(--btn-ghost-bg-hover);
    border-color: var(--brand);
    color: var(--brand);
}
.btn-menu {
    display: none;
}
.menu-icon {
    display: block;
    width: 22px;
    height: 2px;
    background-color: currentColor;
    position: relative;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.menu-icon::before,
.menu-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: currentColor;
    left: 0;
    transition: transform var(--anim-duration) var(--anim-ease);
}
.menu-icon::before {
    top: -6px;
}
.menu-icon::after {
    bottom: -6px;
}
.btn-menu[aria-expanded="true"] .menu-icon {
    background-color: transparent;
}
.btn-menu[aria-expanded="true"] .menu-icon::before {
    transform: rotate(45deg) translate(4px, 5px);
}
.btn-menu[aria-expanded="true"] .menu-icon::after {
    transform: rotate(-45deg) translate(4px, -5px);
}

@media (max-width: 767px) {
    .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--surface-1);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-md);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--anim-duration) var(--anim-ease);
        z-index: 999;
    }
    .main-nav.is-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        align-items: center;
    }
    .btn-menu {
        display: flex;
    }
    .header-container {
        flex-wrap: wrap;
    }
}

.site-footer {
    background-color: #f8f9fa;
    border-top: 1px solid #eaeaea;
    padding: 2.5rem 1rem;
    font-family: system-ui, -apple-system, sans-serif;
    color: #333;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2.5rem;
  }
  .footer-brand {
    flex: 1;
    min-width: 250px;
  }
  .footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 1rem;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    line-height: 1.4;
    color: #666;
    margin-bottom: 1.5rem;
    max-width: 90%;
  }
  .footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
  }
  .footer-legal-links a {
    color: #4a5568;
    text-decoration: none;
  }
  .footer-legal-links a:hover {
    text-decoration: underline;
    color: #1a365d;
  }
  .footer-nav {
    flex: 0 0 auto;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  .footer-nav a {
    color: #4a5568;
    text-decoration: none;
    font-size: 0.95rem;
    white-space: nowrap;
  }
  .footer-nav a:hover {
    color: #1a365d;
    text-decoration: underline;
  }
  .footer-contact {
    flex: 1;
    min-width: 250px;
    text-align: right;
  }
  .footer-contact address {
    font-style: normal;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }
  .contact-line {
    margin-bottom: 0.4rem;
    color: #4a5568;
  }
  .footer-contact a {
    color: #4a5568;
    text-decoration: none;
  }
  .footer-contact a:hover {
    color: #1a365d;
    text-decoration: underline;
  }
  .footer-copyright {
    font-size: 0.85rem;
    color: #718096;
    margin-top: 1rem;
  }

  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      gap: 2rem;
    }
    .footer-contact {
      text-align: left;
    }
    .footer-disclaimer {
      max-width: 100%;
    }
  }

.nfcookie-v9 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .nfcookie-v9__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, var(--bg-primary), var(--neutral-900));
        color: var(--fg-on-primary);
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .nfcookie-v9__stack strong {display: block; margin-bottom: 6px;}
    .nfcookie-v9__stack p {margin: 0; opacity: .9;}

    .nfcookie-v9__actions {margin-top: 12px; display: flex; flex-wrap: wrap; gap: 10px;}

    .nfcookie-v9__actions button {
        border: 1px solid rgba(255, 255, 255, .4);
        background: transparent;
        color: var(--fg-on-primary);
        border-radius: 999px;
        padding: 7px 12px;
        cursor: pointer;
    }

    .nfcookie-v9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        border-color: transparent;
        color: var(--fg-on-accent);
        font-weight: 700;
    }

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

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

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

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

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

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

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

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

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

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

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}
.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}
.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--link-hover);
}
.main-nav {
    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 {
    color: var(--brand);
    background-color: var(--btn-ghost-bg-hover);
}
.header-actions {
    display: flex;
    align-items: center;
    gap: var(--gap);
}
.btn-search,
.btn-menu {
    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) / 1.5) calc(var(--space-x) / 1.5);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--anim-duration) var(--anim-ease);
}
.btn-search:hover,
.btn-menu:hover {
    background-color: var(--btn-ghost-bg-hover);
    border-color: var(--brand);
    color: var(--brand);
}
.btn-menu {
    display: none;
}
.menu-icon {
    display: block;
    width: 22px;
    height: 2px;
    background-color: currentColor;
    position: relative;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.menu-icon::before,
.menu-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: currentColor;
    left: 0;
    transition: transform var(--anim-duration) var(--anim-ease);
}
.menu-icon::before {
    top: -6px;
}
.menu-icon::after {
    bottom: -6px;
}
.btn-menu[aria-expanded="true"] .menu-icon {
    background-color: transparent;
}
.btn-menu[aria-expanded="true"] .menu-icon::before {
    transform: rotate(45deg) translate(4px, 5px);
}
.btn-menu[aria-expanded="true"] .menu-icon::after {
    transform: rotate(-45deg) translate(4px, -5px);
}

@media (max-width: 767px) {
    .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--surface-1);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-md);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--anim-duration) var(--anim-ease);
        z-index: 999;
    }
    .main-nav.is-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        align-items: center;
    }
    .btn-menu {
        display: flex;
    }
    .header-container {
        flex-wrap: wrap;
    }
}

.site-footer {
    background-color: #f8f9fa;
    border-top: 1px solid #eaeaea;
    padding: 2.5rem 1rem;
    font-family: system-ui, -apple-system, sans-serif;
    color: #333;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2.5rem;
  }
  .footer-brand {
    flex: 1;
    min-width: 250px;
  }
  .footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 1rem;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    line-height: 1.4;
    color: #666;
    margin-bottom: 1.5rem;
    max-width: 90%;
  }
  .footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
  }
  .footer-legal-links a {
    color: #4a5568;
    text-decoration: none;
  }
  .footer-legal-links a:hover {
    text-decoration: underline;
    color: #1a365d;
  }
  .footer-nav {
    flex: 0 0 auto;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  .footer-nav a {
    color: #4a5568;
    text-decoration: none;
    font-size: 0.95rem;
    white-space: nowrap;
  }
  .footer-nav a:hover {
    color: #1a365d;
    text-decoration: underline;
  }
  .footer-contact {
    flex: 1;
    min-width: 250px;
    text-align: right;
  }
  .footer-contact address {
    font-style: normal;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }
  .contact-line {
    margin-bottom: 0.4rem;
    color: #4a5568;
  }
  .footer-contact a {
    color: #4a5568;
    text-decoration: none;
  }
  .footer-contact a:hover {
    color: #1a365d;
    text-decoration: underline;
  }
  .footer-copyright {
    font-size: 0.85rem;
    color: #718096;
    margin-top: 1rem;
  }

  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      gap: 2rem;
    }
    .footer-contact {
      text-align: left;
    }
    .footer-disclaimer {
      max-width: 100%;
    }
  }

.nfcookie-v9 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .nfcookie-v9__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, var(--bg-primary), var(--neutral-900));
        color: var(--fg-on-primary);
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .nfcookie-v9__stack strong {display: block; margin-bottom: 6px;}
    .nfcookie-v9__stack p {margin: 0; opacity: .9;}

    .nfcookie-v9__actions {margin-top: 12px; display: flex; flex-wrap: wrap; gap: 10px;}

    .nfcookie-v9__actions button {
        border: 1px solid rgba(255, 255, 255, .4);
        background: transparent;
        color: var(--fg-on-primary);
        border-radius: 999px;
        padding: 7px 12px;
        cursor: pointer;
    }

    .nfcookie-v9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        border-color: transparent;
        color: var(--fg-on-accent);
        font-weight: 700;
    }

.thank-mode-c {
        padding: clamp(56px, 10vw, 112px) 18px;
        background: linear-gradient(180deg, var(--fg-on-page), var(--bg-page));
        color: var(--fg-on-page);
    }

    .thank-mode-c .panel {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(30px, 4vw, 44px);
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
    }

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

    .thank-mode-c p {
        margin: 12px 0 0;
        color: var(--neutral-800);
    }

    .thank-mode-c a {
        display: inline-block;
        margin-top: 17px;
        color: var(--link);
        text-decoration: none;
        border-bottom: 2px solid var(--link);
        padding-bottom: 2px;
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}
.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}
.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--link-hover);
}
.main-nav {
    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 {
    color: var(--brand);
    background-color: var(--btn-ghost-bg-hover);
}
.header-actions {
    display: flex;
    align-items: center;
    gap: var(--gap);
}
.btn-search,
.btn-menu {
    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) / 1.5) calc(var(--space-x) / 1.5);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--anim-duration) var(--anim-ease);
}
.btn-search:hover,
.btn-menu:hover {
    background-color: var(--btn-ghost-bg-hover);
    border-color: var(--brand);
    color: var(--brand);
}
.btn-menu {
    display: none;
}
.menu-icon {
    display: block;
    width: 22px;
    height: 2px;
    background-color: currentColor;
    position: relative;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.menu-icon::before,
.menu-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: currentColor;
    left: 0;
    transition: transform var(--anim-duration) var(--anim-ease);
}
.menu-icon::before {
    top: -6px;
}
.menu-icon::after {
    bottom: -6px;
}
.btn-menu[aria-expanded="true"] .menu-icon {
    background-color: transparent;
}
.btn-menu[aria-expanded="true"] .menu-icon::before {
    transform: rotate(45deg) translate(4px, 5px);
}
.btn-menu[aria-expanded="true"] .menu-icon::after {
    transform: rotate(-45deg) translate(4px, -5px);
}

@media (max-width: 767px) {
    .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--surface-1);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-md);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--anim-duration) var(--anim-ease);
        z-index: 999;
    }
    .main-nav.is-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        align-items: center;
    }
    .btn-menu {
        display: flex;
    }
    .header-container {
        flex-wrap: wrap;
    }
}

.site-footer {
    background-color: #f8f9fa;
    border-top: 1px solid #eaeaea;
    padding: 2.5rem 1rem;
    font-family: system-ui, -apple-system, sans-serif;
    color: #333;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2.5rem;
  }
  .footer-brand {
    flex: 1;
    min-width: 250px;
  }
  .footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 1rem;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    line-height: 1.4;
    color: #666;
    margin-bottom: 1.5rem;
    max-width: 90%;
  }
  .footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
  }
  .footer-legal-links a {
    color: #4a5568;
    text-decoration: none;
  }
  .footer-legal-links a:hover {
    text-decoration: underline;
    color: #1a365d;
  }
  .footer-nav {
    flex: 0 0 auto;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  .footer-nav a {
    color: #4a5568;
    text-decoration: none;
    font-size: 0.95rem;
    white-space: nowrap;
  }
  .footer-nav a:hover {
    color: #1a365d;
    text-decoration: underline;
  }
  .footer-contact {
    flex: 1;
    min-width: 250px;
    text-align: right;
  }
  .footer-contact address {
    font-style: normal;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }
  .contact-line {
    margin-bottom: 0.4rem;
    color: #4a5568;
  }
  .footer-contact a {
    color: #4a5568;
    text-decoration: none;
  }
  .footer-contact a:hover {
    color: #1a365d;
    text-decoration: underline;
  }
  .footer-copyright {
    font-size: 0.85rem;
    color: #718096;
    margin-top: 1rem;
  }

  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      gap: 2rem;
    }
    .footer-contact {
      text-align: left;
    }
    .footer-disclaimer {
      max-width: 100%;
    }
  }

.nfcookie-v9 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .nfcookie-v9__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, var(--bg-primary), var(--neutral-900));
        color: var(--fg-on-primary);
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .nfcookie-v9__stack strong {display: block; margin-bottom: 6px;}
    .nfcookie-v9__stack p {margin: 0; opacity: .9;}

    .nfcookie-v9__actions {margin-top: 12px; display: flex; flex-wrap: wrap; gap: 10px;}

    .nfcookie-v9__actions button {
        border: 1px solid rgba(255, 255, 255, .4);
        background: transparent;
        color: var(--fg-on-primary);
        border-radius: 999px;
        padding: 7px 12px;
        cursor: pointer;
    }

    .nfcookie-v9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        border-color: transparent;
        color: var(--fg-on-accent);
        font-weight: 700;
    }

.nf404-v11 {
        padding: clamp(56px, 10vw, 112px) 20px;
        background: linear-gradient(150deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
    }

    .nf404-v11__shell {
        max-width: 700px;
        margin: 0 auto;
        text-align: center;
        border-radius: var(--radius-xl);
        padding: clamp(28px, 4vw, 44px);
        background: rgba(15, 23, 42, .24);
        border: 1px solid rgba(255, 255, 255, .24);
    }

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

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

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