:root {
  --font-family: "Open Sans", sans-serif;
  --font-size-base: 15.5px;
  --line-height-base: 1.73;

  --max-w: 1000px;
  --space-x: 1rem;
  --space-y: 1.5rem;
  --gap: 0.89rem;

  --radius-xl: 0.74rem;
  --radius-lg: 0.59rem;
  --radius-md: 0.38rem;
  --radius-sm: 0.28rem;

  --shadow-sm: 0 1px 1px rgba(0,0,0,0.07);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.09);
  --shadow-lg: 0 8px 28px rgba(0,0,0,0.11);

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

  --brand: #1E3A5F;
  --brand-contrast: #FFFFFF;
  --accent: #FF6B35;
  --accent-contrast: #FFFFFF;

  --neutral-0: #FFFFFF;
  --neutral-100: #F5F7FA;
  --neutral-300: #D1D5DB;
  --neutral-600: #6B7280;
  --neutral-800: #1F2937;
  --neutral-900: #111827;

  --bg-page: #FFFFFF;
  --fg-on-page: #1F2937;

  --bg-alt: #F0F4F8;
  --fg-on-alt: #374151;

  --surface-1: #FFFFFF;
  --surface-2: #F9FAFB;
  --fg-on-surface: #1F2937;
  --border-on-surface: #E5E7EB;

  --surface-light: #F9FAFB;
  --fg-on-surface-light: #374151;
  --border-on-surface-light: #E5E7EB;

  --bg-primary: #2563EB;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #1D4ED8;
  --ring: #2563EB;

  --bg-accent: #FF6B35;
  --fg-on-accent: #FFFFFF;
  --bg-accent-hover: #E55A2B;

  --link: #2563EB;
  --link-hover: #1D4ED8;

  --gradient-hero: linear-gradient(135deg, #1E3A5F 0%, #2563EB 100%);
  --gradient-accent: linear-gradient(135deg, #FF6B35 0%, #E55A2B 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;}

header {
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.08));
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-y, 0.75rem) var(--space-x, 1rem);
    gap: var(--gap, 1rem);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand, #1a73e8);
    text-decoration: none;
    white-space: nowrap;
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap, 1.5rem);
  }
  .nav-list a {
    text-decoration: none;
    color: var(--neutral-800, #333);
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
    padding: 0.25rem 0;
    border-bottom: 2px solid transparent;
  }
  .nav-list a:hover,
  .nav-list a:focus-visible {
    color: var(--brand, #1a73e8);
    border-bottom-color: var(--brand, #1a73e8);
  }
  .header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .search-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--neutral-800, #333);
    padding: 0.5rem;
    border-radius: var(--radius-sm, 4px);
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .search-toggle:hover {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm, 4px);
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--neutral-800, #333);
    border-radius: 2px;
    transition: all var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }
  .burger span + span {
    margin-top: 5px;
  }
  .burger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  @media (max-width: 767px) {
    .nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--surface-1, #ffffff);
      display: flex;
      align-items: center;
      justify-content: center;
      transform: translateX(100%);
      transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease);
      z-index: 200;
    }
    .nav.open {
      transform: translateX(0);
    }
    .nav-list {
      flex-direction: column;
      align-items: center;
      gap: 2rem;
    }
    .nav-list a {
      font-size: 1.25rem;
    }
    .burger {
      display: flex;
      z-index: 300;
    }
    .header-actions .search-toggle {
      z-index: 300;
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 1rem;
    font-family: Arial, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
  }
  .footer-left {
    flex: 1 1 250px;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .footer-brand {
    margin-bottom: 1rem;
  }
  .footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #e67e22;
    text-decoration: none;
  }
  .footer-logo:hover {
    text-decoration: underline;
  }
  .footer-copyright {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #bdc3c7;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 0.95rem;
  }
  .footer-nav a:hover {
    text-decoration: underline;
    color: #e67e22;
  }
  .footer-policy {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-policy a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .footer-policy a:hover {
    text-decoration: underline;
    color: #e67e22;
  }
  .footer-contact {
    background-color: #34495e;
    padding: 1rem;
    border-radius: 4px;
  }
  .footer-contact p {
    margin: 0.3rem 0;
    font-size: 0.9rem;
  }
  .footer-contact a {
    color: #e67e22;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #95a5a6;
    line-height: 1.4;
    margin-top: 0.5rem;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-policy {
      justify-content: center;
    }
  }

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

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

    .nfcookie-v10__text {flex: 1 1 420px;}
    .nfcookie-v10__text strong {display: block; margin-bottom: 4px; color: var(--fg-on-surface);}
    .nfcookie-v10__text p {margin: 0; color: var(--fg-on-surface-light);}

    .nfcookie-v10__actions {display: flex; flex-wrap: wrap; gap: 8px;}

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

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

.nflang-v10 {
        position: fixed;
        left: 50%;
        transform: translateX(-50%);
        bottom: clamp(14px, 2vw, 24px);
        z-index: 99999;
    }

    .nflang-v10__btn {
        border: 1px solid rgba(255, 255, 255, .28);
        border-radius: 999px;
        background: linear-gradient(145deg, #111827, #1f2937);
        color: #f9fafb;
        box-shadow: var(--shadow-lg);
        padding: 9px 14px;
        min-width: 56px;
        cursor: pointer;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: .08em;
    }

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

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

    .nflang-v10__dropdown button,
    .nflang-v10__dropdown a {
        width: 42px;
        height: 34px;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(255, 255, 255, .28);
        background: rgba(17, 24, 39, .92);
        color: #e5e7eb;
        text-decoration: none;
        font-size: 11px;
        font-weight: 700;
        display: inline-flex;
        justify-content: center;
        align-items: center;
    }

    .nflang-v10__dropdown button:hover,
    .nflang-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-pins-l4 {
        padding: clamp(3.2rem, 7vw, 5.7rem) var(--space-x);
        background: var(--neutral-100);
        color: var(--neutral-900);
    }

    .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(--neutral-100);
        border: 1px solid var(--neutral-300);
    }

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

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

body{margin:0;padding:0;font-family:var(--font-family);box-sizing:border-box;}
*{box-sizing:border-box;}
.recommendations-u9{padding:calc(var(--space-y)*2.9) var(--space-x);background:var(--bg-primary);color:var(--fg-on-primary)} .recommendations-u9 .shell{max-width:var(--max-w);margin:0 auto;display:grid;gap:var(--gap)} .recommendations-u9 h2{margin:0;font-size:clamp(1.85rem,3.6vw,2.8rem);line-height:1.1} .recommendations-u9 .sub{margin:.35rem 0 0;opacity:.9;} .recommendations-u9 article,.recommendations-u9 li{padding:.85rem;border-radius:var(--radius-sm);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);list-style:none} .recommendations-u9 p{margin:0} .recommendations-u9 a{text-decoration:none;color:inherit;font-weight:700} .recommendations-u9 .hero{padding:1rem;border-radius:var(--radius-lg);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover)} .recommendations-u9 .stack{display:grid;gap:.45rem;margin-top:.7rem} .recommendations-u9 .stack p{padding:.65rem;border-radius:var(--radius-sm);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover)} .recommendations-u9 article{transition:transform var(--anim-duration) var(--anim-ease),box-shadow var(--anim-duration) var(--anim-ease)} .recommendations-u9 article:hover{transform:translateY(-4px);box-shadow:var(--shadow-md)} @media (max-width:860px){.recommendations-u9 .split,.recommendations-u9 .media,.recommendations-u9 .grid,.recommendations-u9 .cards,.recommendations-u9 .bento,.recommendations-u9 .foot{grid-template-columns:1fr}}

.visual-column-l6 {
        padding: clamp(3.1rem, 7vw, 5.7rem) var(--space-x);
        background: linear-gradient(180deg, var(--surface-1), var(--bg-alt));
        color: var(--fg-on-page);
    }

    .visual-column-l6__wrap {
        max-width: 62rem;
        margin: 0 auto;
    }

    .visual-column-l6__head {
        margin-bottom: 1rem;
    }

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

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

    .visual-column-l6__list {
        display: grid;
        gap: .8rem;
    }

    .visual-column-l6__list article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
    }

    .visual-column-l6__meta {
        display: flex;
        justify-content: space-between;
        gap: .75rem;
        align-items: center;
        margin-bottom: .8rem;
    }

    .visual-column-l6__meta span {
        color: var(--neutral-600);
    }

    .visual-column-l6__content {
        display: grid;
        grid-template-columns: 13rem 1fr;
        gap: 1rem;
        align-items: center;
    }

    .visual-column-l6__content img {
        display: block;
        width: 100%;
        height: 10rem;
        object-fit: cover;
        border-radius: var(--radius-md);
    }

    .visual-column-l6__content small {
        color: var(--neutral-600);
    }

    .visual-column-l6__content h3 {
        margin: .45rem 0 .35rem;
    }

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

    @media (max-width: 680px) {
        .visual-column-l6__content {
            grid-template-columns: 1fr;
        }
    }

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

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

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

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

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

    .values-spine-c1__head span {
        display: block;
        margin-top: .8rem;
    }

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

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

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

    .values-spine-c1__list h3 {
        margin: 0;
    }

    .values-spine-c1__list p {
        margin: .35rem 0 0;
    }

    .values-spine-c1__list small {
        display: block;
        margin-top: .55rem;
    }

header {
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.08));
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-y, 0.75rem) var(--space-x, 1rem);
    gap: var(--gap, 1rem);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand, #1a73e8);
    text-decoration: none;
    white-space: nowrap;
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap, 1.5rem);
  }
  .nav-list a {
    text-decoration: none;
    color: var(--neutral-800, #333);
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
    padding: 0.25rem 0;
    border-bottom: 2px solid transparent;
  }
  .nav-list a:hover,
  .nav-list a:focus-visible {
    color: var(--brand, #1a73e8);
    border-bottom-color: var(--brand, #1a73e8);
  }
  .header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .search-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--neutral-800, #333);
    padding: 0.5rem;
    border-radius: var(--radius-sm, 4px);
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .search-toggle:hover {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm, 4px);
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--neutral-800, #333);
    border-radius: 2px;
    transition: all var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }
  .burger span + span {
    margin-top: 5px;
  }
  .burger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  @media (max-width: 767px) {
    .nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--surface-1, #ffffff);
      display: flex;
      align-items: center;
      justify-content: center;
      transform: translateX(100%);
      transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease);
      z-index: 200;
    }
    .nav.open {
      transform: translateX(0);
    }
    .nav-list {
      flex-direction: column;
      align-items: center;
      gap: 2rem;
    }
    .nav-list a {
      font-size: 1.25rem;
    }
    .burger {
      display: flex;
      z-index: 300;
    }
    .header-actions .search-toggle {
      z-index: 300;
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 1rem;
    font-family: Arial, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
  }
  .footer-left {
    flex: 1 1 250px;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .footer-brand {
    margin-bottom: 1rem;
  }
  .footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #e67e22;
    text-decoration: none;
  }
  .footer-logo:hover {
    text-decoration: underline;
  }
  .footer-copyright {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #bdc3c7;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 0.95rem;
  }
  .footer-nav a:hover {
    text-decoration: underline;
    color: #e67e22;
  }
  .footer-policy {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-policy a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .footer-policy a:hover {
    text-decoration: underline;
    color: #e67e22;
  }
  .footer-contact {
    background-color: #34495e;
    padding: 1rem;
    border-radius: 4px;
  }
  .footer-contact p {
    margin: 0.3rem 0;
    font-size: 0.9rem;
  }
  .footer-contact a {
    color: #e67e22;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #95a5a6;
    line-height: 1.4;
    margin-top: 0.5rem;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-policy {
      justify-content: center;
    }
  }

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

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

    .nfcookie-v10__text {flex: 1 1 420px;}
    .nfcookie-v10__text strong {display: block; margin-bottom: 4px; color: var(--fg-on-surface);}
    .nfcookie-v10__text p {margin: 0; color: var(--fg-on-surface-light);}

    .nfcookie-v10__actions {display: flex; flex-wrap: wrap; gap: 8px;}

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

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

.partners {

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

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

    .partners .partners__title {
        font-size: clamp(28px, 5vw, 48px);
        text-align: center;
        margin: 0 0 clamp(48px, 7vw, 72px);
        color: var(--fg-on-page);
    }

    .partners .partners__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: clamp(32px, 5vw, 48px);
    }

    .partners .partners__content {
        padding: clamp(32px, 5vw, 40px);
    }

    .partners .partners__card {
        background: var(--surface-1);
        border-radius: var(--radius-xl);
        border: 1px solid var(--border-on-surface);
        text-align: center;
    }

    .partners .partners__logo {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 300px;

    }

    .partners .partners__content h3 {
        font-size: clamp(20px, 3vw, 24px);
        margin: 0 0 0.75rem;
        color: var(--fg-on-surface);
    }

    .partners .partners__content p {
        font-size: clamp(15px, 2.2vw, 17px);
        line-height: 1.6;
        color: var(--neutral-600);
        margin: 0;
    }

.identity-nv12 {
        padding: clamp(50px, 7vw, 90px) clamp(16px, 4vw, 36px);
        background: var(--neutral-100);
        color: var(--neutral-900);
    }

    .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(--neutral-100);
        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(--neutral-100);
        color: var(--neutral-800);
    }

body{margin:0;padding:0;font-family:var(--font-family);box-sizing:border-box;}
*{box-sizing:border-box;}
.mission-u1{padding:calc(var(--space-y)*2.9) var(--space-x);background:var(--gradient-hero);color:var(--brand-contrast)} .mission-u1 .shell{max-width:var(--max-w);margin:0 auto;display:grid;gap:var(--gap)} .mission-u1 h2{margin:0;font-size:clamp(1.85rem,3.6vw,2.8rem);line-height:1.1} .mission-u1 .sub{margin:.35rem 0 0;opacity:.9;} .mission-u1 article,.mission-u1 li{padding:.85rem;border-radius:var(--radius-sm);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);list-style:none} .mission-u1 p{margin:0} .mission-u1 a{text-decoration:none;color:inherit;font-weight:700} .mission-u1 .bento{display:grid;grid-template-columns:repeat(12,minmax(0,1fr));gap:.55rem} .mission-u1 .bento article:nth-child(1){grid-column:span 6} .mission-u1 .bento article:nth-child(2){grid-column:span 3} .mission-u1 .bento article:nth-child(3){grid-column:span 3} .mission-u1 .bento article:nth-child(4){grid-column:span 4} .mission-u1 .bento article:nth-child(5){grid-column:span 4} .mission-u1 .bento article:nth-child(6){grid-column:span 4} @media (max-width:860px){.mission-u1 .split,.mission-u1 .media,.mission-u1 .grid,.mission-u1 .cards,.mission-u1 .bento,.mission-u1 .foot{grid-template-columns:1fr}}

header {
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.08));
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-y, 0.75rem) var(--space-x, 1rem);
    gap: var(--gap, 1rem);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand, #1a73e8);
    text-decoration: none;
    white-space: nowrap;
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap, 1.5rem);
  }
  .nav-list a {
    text-decoration: none;
    color: var(--neutral-800, #333);
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
    padding: 0.25rem 0;
    border-bottom: 2px solid transparent;
  }
  .nav-list a:hover,
  .nav-list a:focus-visible {
    color: var(--brand, #1a73e8);
    border-bottom-color: var(--brand, #1a73e8);
  }
  .header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .search-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--neutral-800, #333);
    padding: 0.5rem;
    border-radius: var(--radius-sm, 4px);
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .search-toggle:hover {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm, 4px);
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--neutral-800, #333);
    border-radius: 2px;
    transition: all var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }
  .burger span + span {
    margin-top: 5px;
  }
  .burger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  @media (max-width: 767px) {
    .nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--surface-1, #ffffff);
      display: flex;
      align-items: center;
      justify-content: center;
      transform: translateX(100%);
      transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease);
      z-index: 200;
    }
    .nav.open {
      transform: translateX(0);
    }
    .nav-list {
      flex-direction: column;
      align-items: center;
      gap: 2rem;
    }
    .nav-list a {
      font-size: 1.25rem;
    }
    .burger {
      display: flex;
      z-index: 300;
    }
    .header-actions .search-toggle {
      z-index: 300;
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 1rem;
    font-family: Arial, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
  }
  .footer-left {
    flex: 1 1 250px;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .footer-brand {
    margin-bottom: 1rem;
  }
  .footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #e67e22;
    text-decoration: none;
  }
  .footer-logo:hover {
    text-decoration: underline;
  }
  .footer-copyright {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #bdc3c7;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 0.95rem;
  }
  .footer-nav a:hover {
    text-decoration: underline;
    color: #e67e22;
  }
  .footer-policy {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-policy a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .footer-policy a:hover {
    text-decoration: underline;
    color: #e67e22;
  }
  .footer-contact {
    background-color: #34495e;
    padding: 1rem;
    border-radius: 4px;
  }
  .footer-contact p {
    margin: 0.3rem 0;
    font-size: 0.9rem;
  }
  .footer-contact a {
    color: #e67e22;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #95a5a6;
    line-height: 1.4;
    margin-top: 0.5rem;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-policy {
      justify-content: center;
    }
  }

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

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

    .nfcookie-v10__text {flex: 1 1 420px;}
    .nfcookie-v10__text strong {display: block; margin-bottom: 4px; color: var(--fg-on-surface);}
    .nfcookie-v10__text p {margin: 0; color: var(--fg-on-surface-light);}

    .nfcookie-v10__actions {display: flex; flex-wrap: wrap; gap: 8px;}

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

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

body{margin:0;padding:0;font-family:var(--font-family);box-sizing:border-box;}
*{box-sizing:border-box;}

.cap-noir-v2{padding:calc(var(--space-y)*2.6) var(--space-x);background:var(--neutral-900);color:var(--neutral-0)}
.cap-noir-v2 .shell{max-width:960px;margin:0 auto;display:grid;gap:var(--gap)}
.cap-noir-v2 h2{margin:.2rem 0 0;font-size:clamp(1.8rem,3.6vw,2.7rem)}
.cap-noir-v2 .rails{display:grid;gap:.75rem}
.cap-noir-v2 article{padding:1rem;border-radius:var(--radius-md);background:var(--chip-bg);border-left:3px solid var(--accent)}
.cap-noir-v2 .top{display:flex;justify-content:space-between;gap:var(--gap);align-items:center}
.cap-noir-v2 h3{margin:0}
.cap-noir-v2 span{font-size:.8rem;opacity:.82}
.cap-noir-v2 p{margin:.45rem 0 .5rem;opacity:.9}
.cap-noir-v2 a{color:var(--accent);font-weight:700;text-decoration:none}

.hiw-canvas-l8 {
        padding: clamp(3.2rem, 7vw, 5.8rem) var(--space-x);
        background: var(--neutral-100);
        color: var(--neutral-900);
    }

    .hiw-canvas-l8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        gap: 1.4rem;
        align-items: start;
        flex-wrap: wrap;
    }

    .hiw-canvas-l8__media {
        flex: 1 1 18rem;
        order: calc(3 - var(--random-number));
    }

    .hiw-canvas-l8__content {
        flex: 1 1 22rem;
        order: var(--random-number);
    }

    .hiw-canvas-l8__media img {
        display: block;
        width: 100%;
        border-radius: var(--radius-xl);
        border: 1px solid var(--neutral-300);
    }

    .hiw-canvas-l8__content p:first-child {
        margin: 0;
        color: var(--neutral-600);
    }

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

    .hiw-canvas-l8__stack p {
        margin: .8rem 0 0;
        color: var(--neutral-600);
    }

    .hiw-canvas-l8__notes {
        margin-top: 1rem;
        display: flex;
        gap: .65rem;
        flex-wrap: wrap;
        align-items: center;
    }

    .hiw-canvas-l8__notes strong {
        color: var(--brand);
        margin-right: .25rem;
    }

    .hiw-canvas-l8__notes span {
        display: inline-flex;
        padding: .55rem .8rem;
        border-radius: 999px;
        background: var(--neutral-100);
        border: 1px solid var(--neutral-300);
    }

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

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

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

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

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

    .values-spine-c1__head span {
        display: block;
        margin-top: .8rem;
    }

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

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

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

    .values-spine-c1__list h3 {
        margin: 0;
    }

    .values-spine-c1__list p {
        margin: .35rem 0 0;
    }

    .values-spine-c1__list small {
        display: block;
        margin-top: .55rem;
    }

.index-feedback-list {
        background: var(--neutral-100);
        color: var(--neutral-900);
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 40px);
    }

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

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

        transform: translateY(-18px);
    }

    .index-feedback-list__eyebrow {
        margin: 0 0 10px;
        text-transform: uppercase;
        letter-spacing: 0.22em;
        font-size: 12px;
        color: var(--neutral-600);
    }

    .index-feedback-list__h h2 {
        margin: 0;
        font-size: clamp(26px, 4.4vw, 44px);
        letter-spacing: -0.02em;
        color: var(--neutral-900);
    }

    .index-feedback-list__list {
        display: grid;
        gap: 12px;
    }

    .index-feedback-list__row {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--neutral-100);
        box-shadow: var(--shadow-sm);
        overflow: hidden;

        transform: translateY(24px);
    }

    .index-feedback-list__q {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        cursor: pointer;
        padding: 14px 16px;
        border: 0;
        background: transparent;
        color: var(--neutral-900);
        font: inherit;
        text-align: left;
    }

    .index-feedback-list__who {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        min-width: 0;
    }

    .index-feedback-list__avatar {
        width: 36px;
        height: 36px;
        border-radius: 12px;
        background: var(--bg-accent);
        border: 1px solid var(--border-on-surface);
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
    }

    .index-feedback-list__name {
        font-weight: 800;
        font-size: 14px;
        color: var(--neutral-900);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 18ch;
    }

    .index-feedback-list__meta {
        font-size: 12px;
        color: var(--neutral-600);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 24ch;
    }

    .index-feedback-list__rating {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        flex: 0 0 auto;
        padding: 6px 10px;
        border-radius: 999px;
        background: var(--neutral-100);
        border: 1px solid var(--border-on-surface);
    }

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

    .index-feedback-list__score {
        font-weight: 800;
        font-size: 12px;
        color: var(--neutral-900);
    }

    .index-feedback-list__a {
        display: none;
        padding: 0 16px 14px;
        color: var(--neutral-800);
        overflow: hidden;
    }

    .index-feedback-list__a p {
        margin: 0;
        font-size: 14px;
        line-height: 1.65;
        color: var(--neutral-800);
    }

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

    @media (max-width: 560px) {
        .index-feedback-list__q {
            align-items: flex-start;
        }

        .index-feedback-list__rating {
            margin-top: 2px;
        }

        .index-feedback-list__meta {
            display: none;
        }
    }

header {
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.08));
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-y, 0.75rem) var(--space-x, 1rem);
    gap: var(--gap, 1rem);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand, #1a73e8);
    text-decoration: none;
    white-space: nowrap;
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap, 1.5rem);
  }
  .nav-list a {
    text-decoration: none;
    color: var(--neutral-800, #333);
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
    padding: 0.25rem 0;
    border-bottom: 2px solid transparent;
  }
  .nav-list a:hover,
  .nav-list a:focus-visible {
    color: var(--brand, #1a73e8);
    border-bottom-color: var(--brand, #1a73e8);
  }
  .header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .search-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--neutral-800, #333);
    padding: 0.5rem;
    border-radius: var(--radius-sm, 4px);
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .search-toggle:hover {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm, 4px);
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--neutral-800, #333);
    border-radius: 2px;
    transition: all var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }
  .burger span + span {
    margin-top: 5px;
  }
  .burger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  @media (max-width: 767px) {
    .nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--surface-1, #ffffff);
      display: flex;
      align-items: center;
      justify-content: center;
      transform: translateX(100%);
      transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease);
      z-index: 200;
    }
    .nav.open {
      transform: translateX(0);
    }
    .nav-list {
      flex-direction: column;
      align-items: center;
      gap: 2rem;
    }
    .nav-list a {
      font-size: 1.25rem;
    }
    .burger {
      display: flex;
      z-index: 300;
    }
    .header-actions .search-toggle {
      z-index: 300;
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 1rem;
    font-family: Arial, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
  }
  .footer-left {
    flex: 1 1 250px;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .footer-brand {
    margin-bottom: 1rem;
  }
  .footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #e67e22;
    text-decoration: none;
  }
  .footer-logo:hover {
    text-decoration: underline;
  }
  .footer-copyright {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #bdc3c7;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 0.95rem;
  }
  .footer-nav a:hover {
    text-decoration: underline;
    color: #e67e22;
  }
  .footer-policy {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-policy a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .footer-policy a:hover {
    text-decoration: underline;
    color: #e67e22;
  }
  .footer-contact {
    background-color: #34495e;
    padding: 1rem;
    border-radius: 4px;
  }
  .footer-contact p {
    margin: 0.3rem 0;
    font-size: 0.9rem;
  }
  .footer-contact a {
    color: #e67e22;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #95a5a6;
    line-height: 1.4;
    margin-top: 0.5rem;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-policy {
      justify-content: center;
    }
  }

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

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

    .nfcookie-v10__text {flex: 1 1 420px;}
    .nfcookie-v10__text strong {display: block; margin-bottom: 4px; color: var(--fg-on-surface);}
    .nfcookie-v10__text p {margin: 0; color: var(--fg-on-surface-light);}

    .nfcookie-v10__actions {display: flex; flex-wrap: wrap; gap: 8px;}

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

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

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

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

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

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

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

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

    .support-ux8__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-ux8__grid span {
        font-size: .82rem;
        color: var(--brand);
    }

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

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

body{margin:0;padding:0;font-family:var(--font-family);font-size:var(--font-size-base);line-height:var(--line-height-base);box-sizing:border-box;background:var(--bg-page);color:var(--fg-on-page)}
*{box-sizing:border-box;}
.frm-lx2{padding:calc(var(--space-y)*2.9) var(--space-x)}
.frm-lx2 .frm-shell{max-width:var(--max-w);margin:0 auto;display:grid;grid-template-columns:.9fr 1.1fr;gap:var(--gap)}
.frm-lx2 .frm-intro{padding:1rem;border-radius:var(--radius-lg);background:var(--surface-2);border:1px solid var(--border-on-surface)}
.frm-lx2 h2{margin:0;font-size:clamp(1.85rem,3.5vw,2.65rem)}
.frm-lx2 .frm-intro p{margin:.45rem 0 0;color:var(--fg-on-surface-light)}
.frm-lx2 .frm-panel{padding:1.1rem;border:1px solid var(--border-on-surface);border-radius:var(--radius-xl);background:var(--surface-1);box-shadow:var(--shadow-md);display:grid;gap:.75rem}
.frm-lx2 .frm-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.62rem}
.frm-lx2 label{display:grid;gap:.28rem}
.frm-lx2 span{font-size:.84rem;font-weight:700;color:var(--fg-on-surface-light)}
.frm-lx2 input,.frm-lx2 textarea{width:100%;padding:.78rem .82rem;border:1px solid var(--border-on-surface-light);border-radius:var(--radius-md);background:var(--surface-1);color:var(--fg-on-surface);font:inherit;outline:none;transition:border-color var(--anim-duration) var(--anim-ease),box-shadow var(--anim-duration) var(--anim-ease)}
.frm-lx2 input:focus,.frm-lx2 textarea:focus{border-color:var(--ring);box-shadow:0 0 0 3px color-mix(in srgb,var(--ring) 20%, transparent)}
.frm-lx2 textarea{min-height:128px;resize:vertical}
.frm-lx2 button{justify-self:start;padding:.82rem 1.1rem;border:0;border-radius:var(--radius-md);background:var(--bg-primary);color:var(--fg-on-primary);font-weight:700;cursor:pointer}
.frm-lx2 button:hover{background:var(--bg-primary-hover)}
@media (max-width:920px){.frm-lx2 .frm-shell,.frm-lx2 .frm-grid{grid-template-columns:1fr}}

body{margin:0;padding:0;font-family:var(--font-family);box-sizing:border-box;}
*{box-sizing:border-box;}
.contacts-u5{padding:calc(var(--space-y)*2.9) var(--space-x);background:var(--neutral-900);color:var(--neutral-0)} .contacts-u5 .shell{max-width:var(--max-w);margin:0 auto;display:grid;gap:var(--gap)} .contacts-u5 h2{margin:0;font-size:clamp(1.85rem,3.6vw,2.8rem);line-height:1.1} .contacts-u5 .sub{margin:.35rem 0 0;opacity:.9;} .contacts-u5 article,.contacts-u5 li{padding:.85rem;border-radius:var(--radius-sm);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);list-style:none} .contacts-u5 p{margin:0} .contacts-u5 a{text-decoration:none;color:inherit;font-weight:700} .contacts-u5 .ranks{counter-reset:r;display:grid;gap:.5rem} .contacts-u5 .ranks article{position:relative;padding-left:2.2rem} .contacts-u5 .ranks article::before{counter-increment:r;content:counter(r);position:absolute;left:.7rem;top:.8rem;width:1.2rem;height:1.2rem;border-radius:50%;display:grid;place-items:center;background:var(--bg-primary);color:var(--fg-on-primary);font-size:.72rem} @media (max-width:860px){.contacts-u5 .split,.contacts-u5 .media,.contacts-u5 .grid,.contacts-u5 .cards,.contacts-u5 .bento,.contacts-u5 .foot{grid-template-columns:1fr}}

header {
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.08));
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-y, 0.75rem) var(--space-x, 1rem);
    gap: var(--gap, 1rem);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand, #1a73e8);
    text-decoration: none;
    white-space: nowrap;
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap, 1.5rem);
  }
  .nav-list a {
    text-decoration: none;
    color: var(--neutral-800, #333);
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
    padding: 0.25rem 0;
    border-bottom: 2px solid transparent;
  }
  .nav-list a:hover,
  .nav-list a:focus-visible {
    color: var(--brand, #1a73e8);
    border-bottom-color: var(--brand, #1a73e8);
  }
  .header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .search-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--neutral-800, #333);
    padding: 0.5rem;
    border-radius: var(--radius-sm, 4px);
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .search-toggle:hover {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm, 4px);
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--neutral-800, #333);
    border-radius: 2px;
    transition: all var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }
  .burger span + span {
    margin-top: 5px;
  }
  .burger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  @media (max-width: 767px) {
    .nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--surface-1, #ffffff);
      display: flex;
      align-items: center;
      justify-content: center;
      transform: translateX(100%);
      transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease);
      z-index: 200;
    }
    .nav.open {
      transform: translateX(0);
    }
    .nav-list {
      flex-direction: column;
      align-items: center;
      gap: 2rem;
    }
    .nav-list a {
      font-size: 1.25rem;
    }
    .burger {
      display: flex;
      z-index: 300;
    }
    .header-actions .search-toggle {
      z-index: 300;
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 1rem;
    font-family: Arial, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
  }
  .footer-left {
    flex: 1 1 250px;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .footer-brand {
    margin-bottom: 1rem;
  }
  .footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #e67e22;
    text-decoration: none;
  }
  .footer-logo:hover {
    text-decoration: underline;
  }
  .footer-copyright {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #bdc3c7;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 0.95rem;
  }
  .footer-nav a:hover {
    text-decoration: underline;
    color: #e67e22;
  }
  .footer-policy {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-policy a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .footer-policy a:hover {
    text-decoration: underline;
    color: #e67e22;
  }
  .footer-contact {
    background-color: #34495e;
    padding: 1rem;
    border-radius: 4px;
  }
  .footer-contact p {
    margin: 0.3rem 0;
    font-size: 0.9rem;
  }
  .footer-contact a {
    color: #e67e22;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #95a5a6;
    line-height: 1.4;
    margin-top: 0.5rem;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-policy {
      justify-content: center;
    }
  }

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

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

    .nfcookie-v10__text {flex: 1 1 420px;}
    .nfcookie-v10__text strong {display: block; margin-bottom: 4px; color: var(--fg-on-surface);}
    .nfcookie-v10__text p {margin: 0; color: var(--fg-on-surface-light);}

    .nfcookie-v10__actions {display: flex; flex-wrap: wrap; gap: 8px;}

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

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

body{margin:0;padding:0;font-family:var(--font-family);box-sizing:border-box;}
*{box-sizing:border-box;}
.policyitems-u3{padding:calc(var(--space-y)*2.9) var(--space-x);background:var(--bg-primary);color:var(--fg-on-primary)} .policyitems-u3 .shell{max-width:var(--max-w);margin:0 auto;display:grid;gap:var(--gap)} .policyitems-u3 h2{margin:0;font-size:clamp(1.85rem,3.6vw,2.8rem);line-height:1.1} .policyitems-u3 .sub{margin:.35rem 0 0;opacity:.9;} .policyitems-u3 article,.policyitems-u3 li{padding:.85rem;border-radius:var(--radius-sm);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);list-style:none} .policyitems-u3 p{margin:0} .policyitems-u3 a{text-decoration:none;color:inherit;font-weight:700} .policyitems-u3 .rail{display:flex;gap:.55rem;overflow:auto} .policyitems-u3 .rail article{min-width:240px} .policyitems-u3 article{transition:transform var(--anim-duration) var(--anim-ease),box-shadow var(--anim-duration) var(--anim-ease)} .policyitems-u3 article:hover{transform:translateY(-4px);box-shadow:var(--shadow-md)} @media (max-width:860px){.policyitems-u3 .split,.policyitems-u3 .media,.policyitems-u3 .grid,.policyitems-u3 .cards,.policyitems-u3 .bento,.policyitems-u3 .foot{grid-template-columns:1fr}}

header {
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.08));
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-y, 0.75rem) var(--space-x, 1rem);
    gap: var(--gap, 1rem);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand, #1a73e8);
    text-decoration: none;
    white-space: nowrap;
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap, 1.5rem);
  }
  .nav-list a {
    text-decoration: none;
    color: var(--neutral-800, #333);
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
    padding: 0.25rem 0;
    border-bottom: 2px solid transparent;
  }
  .nav-list a:hover,
  .nav-list a:focus-visible {
    color: var(--brand, #1a73e8);
    border-bottom-color: var(--brand, #1a73e8);
  }
  .header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .search-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--neutral-800, #333);
    padding: 0.5rem;
    border-radius: var(--radius-sm, 4px);
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .search-toggle:hover {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm, 4px);
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--neutral-800, #333);
    border-radius: 2px;
    transition: all var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }
  .burger span + span {
    margin-top: 5px;
  }
  .burger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  @media (max-width: 767px) {
    .nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--surface-1, #ffffff);
      display: flex;
      align-items: center;
      justify-content: center;
      transform: translateX(100%);
      transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease);
      z-index: 200;
    }
    .nav.open {
      transform: translateX(0);
    }
    .nav-list {
      flex-direction: column;
      align-items: center;
      gap: 2rem;
    }
    .nav-list a {
      font-size: 1.25rem;
    }
    .burger {
      display: flex;
      z-index: 300;
    }
    .header-actions .search-toggle {
      z-index: 300;
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 1rem;
    font-family: Arial, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
  }
  .footer-left {
    flex: 1 1 250px;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .footer-brand {
    margin-bottom: 1rem;
  }
  .footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #e67e22;
    text-decoration: none;
  }
  .footer-logo:hover {
    text-decoration: underline;
  }
  .footer-copyright {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #bdc3c7;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 0.95rem;
  }
  .footer-nav a:hover {
    text-decoration: underline;
    color: #e67e22;
  }
  .footer-policy {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-policy a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .footer-policy a:hover {
    text-decoration: underline;
    color: #e67e22;
  }
  .footer-contact {
    background-color: #34495e;
    padding: 1rem;
    border-radius: 4px;
  }
  .footer-contact p {
    margin: 0.3rem 0;
    font-size: 0.9rem;
  }
  .footer-contact a {
    color: #e67e22;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #95a5a6;
    line-height: 1.4;
    margin-top: 0.5rem;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-policy {
      justify-content: center;
    }
  }

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

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

    .nfcookie-v10__text {flex: 1 1 420px;}
    .nfcookie-v10__text strong {display: block; margin-bottom: 4px; color: var(--fg-on-surface);}
    .nfcookie-v10__text p {margin: 0; color: var(--fg-on-surface-light);}

    .nfcookie-v10__actions {display: flex; flex-wrap: wrap; gap: 8px;}

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

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

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

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

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

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

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

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

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

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

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

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

header {
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.08));
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-y, 0.75rem) var(--space-x, 1rem);
    gap: var(--gap, 1rem);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand, #1a73e8);
    text-decoration: none;
    white-space: nowrap;
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap, 1.5rem);
  }
  .nav-list a {
    text-decoration: none;
    color: var(--neutral-800, #333);
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
    padding: 0.25rem 0;
    border-bottom: 2px solid transparent;
  }
  .nav-list a:hover,
  .nav-list a:focus-visible {
    color: var(--brand, #1a73e8);
    border-bottom-color: var(--brand, #1a73e8);
  }
  .header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .search-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--neutral-800, #333);
    padding: 0.5rem;
    border-radius: var(--radius-sm, 4px);
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .search-toggle:hover {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm, 4px);
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--neutral-800, #333);
    border-radius: 2px;
    transition: all var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }
  .burger span + span {
    margin-top: 5px;
  }
  .burger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  @media (max-width: 767px) {
    .nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--surface-1, #ffffff);
      display: flex;
      align-items: center;
      justify-content: center;
      transform: translateX(100%);
      transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease);
      z-index: 200;
    }
    .nav.open {
      transform: translateX(0);
    }
    .nav-list {
      flex-direction: column;
      align-items: center;
      gap: 2rem;
    }
    .nav-list a {
      font-size: 1.25rem;
    }
    .burger {
      display: flex;
      z-index: 300;
    }
    .header-actions .search-toggle {
      z-index: 300;
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 1rem;
    font-family: Arial, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
  }
  .footer-left {
    flex: 1 1 250px;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .footer-brand {
    margin-bottom: 1rem;
  }
  .footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #e67e22;
    text-decoration: none;
  }
  .footer-logo:hover {
    text-decoration: underline;
  }
  .footer-copyright {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #bdc3c7;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 0.95rem;
  }
  .footer-nav a:hover {
    text-decoration: underline;
    color: #e67e22;
  }
  .footer-policy {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-policy a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .footer-policy a:hover {
    text-decoration: underline;
    color: #e67e22;
  }
  .footer-contact {
    background-color: #34495e;
    padding: 1rem;
    border-radius: 4px;
  }
  .footer-contact p {
    margin: 0.3rem 0;
    font-size: 0.9rem;
  }
  .footer-contact a {
    color: #e67e22;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #95a5a6;
    line-height: 1.4;
    margin-top: 0.5rem;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-policy {
      justify-content: center;
    }
  }

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

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

    .nfcookie-v10__text {flex: 1 1 420px;}
    .nfcookie-v10__text strong {display: block; margin-bottom: 4px; color: var(--fg-on-surface);}
    .nfcookie-v10__text p {margin: 0; color: var(--fg-on-surface-light);}

    .nfcookie-v10__actions {display: flex; flex-wrap: wrap; gap: 8px;}

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

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

body{margin:0;padding:0;font-family:var(--font-family);font-size:var(--font-size-base);line-height:var(--line-height-base);box-sizing:border-box;background:var(--bg-page);color:var(--fg-on-page)}
*{box-sizing:border-box;}
.thx-lx6{padding:calc(var(--space-y)*2.65) var(--space-x)}
.thx-lx6 .thx-grid{max-width:980px;margin:0 auto;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.62rem}
.thx-lx6 .thx-main{grid-column:1/-1;padding:1rem;border-radius:var(--radius-xl);background:var(--surface-1);border:1px solid var(--border-on-surface)}
.thx-lx6 h2{margin:0;font-size:clamp(1.78rem,3.3vw,2.52rem)}
.thx-lx6 .thx-main p{margin:.38rem 0 0;color:var(--fg-on-surface-light)}
.thx-lx6 article:not(.thx-main){padding:.88rem;border-radius:var(--radius-md);background:var(--surface-2);border:1px solid var(--border-on-surface)}
.thx-lx6 h3{margin:0 0 .22rem;font-size:1rem}
.thx-lx6 article p{margin:0;color:var(--fg-on-surface-light)}
@media (max-width:700px){.thx-lx6 .thx-grid{grid-template-columns:1fr}}

header {
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.08));
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-y, 0.75rem) var(--space-x, 1rem);
    gap: var(--gap, 1rem);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand, #1a73e8);
    text-decoration: none;
    white-space: nowrap;
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap, 1.5rem);
  }
  .nav-list a {
    text-decoration: none;
    color: var(--neutral-800, #333);
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
    padding: 0.25rem 0;
    border-bottom: 2px solid transparent;
  }
  .nav-list a:hover,
  .nav-list a:focus-visible {
    color: var(--brand, #1a73e8);
    border-bottom-color: var(--brand, #1a73e8);
  }
  .header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .search-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--neutral-800, #333);
    padding: 0.5rem;
    border-radius: var(--radius-sm, 4px);
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .search-toggle:hover {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm, 4px);
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--neutral-800, #333);
    border-radius: 2px;
    transition: all var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }
  .burger span + span {
    margin-top: 5px;
  }
  .burger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  @media (max-width: 767px) {
    .nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--surface-1, #ffffff);
      display: flex;
      align-items: center;
      justify-content: center;
      transform: translateX(100%);
      transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease);
      z-index: 200;
    }
    .nav.open {
      transform: translateX(0);
    }
    .nav-list {
      flex-direction: column;
      align-items: center;
      gap: 2rem;
    }
    .nav-list a {
      font-size: 1.25rem;
    }
    .burger {
      display: flex;
      z-index: 300;
    }
    .header-actions .search-toggle {
      z-index: 300;
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 1rem;
    font-family: Arial, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
  }
  .footer-left {
    flex: 1 1 250px;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .footer-brand {
    margin-bottom: 1rem;
  }
  .footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #e67e22;
    text-decoration: none;
  }
  .footer-logo:hover {
    text-decoration: underline;
  }
  .footer-copyright {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #bdc3c7;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 0.95rem;
  }
  .footer-nav a:hover {
    text-decoration: underline;
    color: #e67e22;
  }
  .footer-policy {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-policy a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .footer-policy a:hover {
    text-decoration: underline;
    color: #e67e22;
  }
  .footer-contact {
    background-color: #34495e;
    padding: 1rem;
    border-radius: 4px;
  }
  .footer-contact p {
    margin: 0.3rem 0;
    font-size: 0.9rem;
  }
  .footer-contact a {
    color: #e67e22;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #95a5a6;
    line-height: 1.4;
    margin-top: 0.5rem;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-policy {
      justify-content: center;
    }
  }

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

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

    .nfcookie-v10__text {flex: 1 1 420px;}
    .nfcookie-v10__text strong {display: block; margin-bottom: 4px; color: var(--fg-on-surface);}
    .nfcookie-v10__text p {margin: 0; color: var(--fg-on-surface-light);}

    .nfcookie-v10__actions {display: flex; flex-wrap: wrap; gap: 8px;}

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

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

.err-slab-d {
        padding: clamp(56px, 10vw, 114px) 20px;
        background: var(--accent);
        color: var(--neutral-0);
    }

    .err-slab-d .plate {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(30px, 4vw, 50px);
        border-radius: var(--radius-xl);
        background: linear-gradient(160deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
        border: 1px solid rgba(255, 255, 255, 0.25);
    }

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

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

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