:root {
  --font-family: "Rubik", sans-serif;
  --font-size-base: 16.1px;
  --line-height-base: 1.57;

  --max-w: 1100px;
  --space-x: 1.15rem;
  --space-y: 1.24rem;
  --gap: 0.91rem;

  --radius-xl: 1.13rem;
  --radius-lg: 0.65rem;
  --radius-md: 0.51rem;
  --radius-sm: 0.22rem;

  --shadow-sm: 0 1px 6px rgba(0,0,0,0.13);
  --shadow-md: 0 6px 14px rgba(0,0,0,0.16);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.2);

  --overlay: rgba(15, 23, 42, 0.7);
  --anim-duration: 230ms;
  --anim-ease: cubic-bezier(0.2,0.8,0.2,1);
  --random-number: 2;

  --brand: #1e293b;
  --brand-contrast: #ffffff;
  --accent: #2563eb;
  --accent-contrast: #ffffff;

  --neutral-0: #ffffff;
  --neutral-100: #f1f5f9;
  --neutral-300: #cbd5e1;
  --neutral-600: #64748b;
  --neutral-800: #1e293b;
  --neutral-900: #0f172a;

  --bg-page: #ffffff;
  --fg-on-page: #1e293b;

  --bg-alt: #f8fafc;
  --fg-on-alt: #334155;

  --surface-1: #ffffff;
  --surface-2: #f1f5f9;
  --fg-on-surface: #1e293b;
  --border-on-surface: #e2e8f0;

  --surface-light: #f8fafc;
  --fg-on-surface-light: #475569;
  --border-on-surface-light: #e2e8f0;

  --bg-primary: #2563eb;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #1d4ed8;
  --ring: #2563eb;

  --bg-accent: #2563eb;
  --fg-on-accent: #ffffff;
  --bg-accent-hover: #1d4ed8;

  --link: #2563eb;
  --link-hover: #1d4ed8;

  --gradient-hero: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
  --gradient-accent: linear-gradient(135deg, #2563eb 0%, #1d4ed8 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);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.25);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }
  .nav a {
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav a:hover {
    background: var(--surface-2);
    color: var(--brand);
  }
  .nav a.active {
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    box-shadow: var(--shadow-sm);
  }
  .cta-secondary {
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-xl);
    text-decoration: none;
    font-size: var(--font-size-base);
    font-weight: 600;
    white-space: nowrap;
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .cta-secondary:hover {
    background: var(--bg-accent-hover);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 0;
  }
  .burger span {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  @media (max-width: 767px) {
    .burger {
      display: flex;
    }
    .nav {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1);
      box-shadow: var(--shadow-md);
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease);
    }
    .nav.open {
      max-height: 300px;
    }
    .nav ul {
      flex-direction: column;
      padding: var(--space-y) var(--space-x);
      gap: 0.5rem;
    }
    .nav a {
      display: block;
      padding: 0.75rem 1rem;
    }
    .cta-secondary {
      display: none;
    }
  }

footer {
      background-color: #1a1a2e;
      color: #e0e0e0;
      padding: 40px 20px 20px;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: flex-start;
    }
    .footer-brand {
      flex: 1 1 100%;
      max-width: 300px;
      margin-bottom: 30px;
    }
    .logo {
      font-size: 28px;
      font-weight: 700;
      color: #f5a623;
      letter-spacing: 1px;
    }
    .footer-right {
      flex: 1 1 100%;
      max-width: 400px;
      display: flex;
      flex-direction: column;
      gap: 20px;
      margin-bottom: 30px;
    }
    .footer-nav ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
    }
    .footer-nav a {
      color: #e0e0e0;
      text-decoration: none;
      font-size: 16px;
      transition: color 0.3s;
    }
    .footer-nav a:hover {
      color: #f5a623;
    }
    .footer-legal {
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
    }
    .footer-legal a {
      color: #b0b0b0;
      text-decoration: none;
      font-size: 14px;
      transition: color 0.3s;
    }
    .footer-legal a:hover {
      color: #f5a623;
    }
    .footer-contact {
      flex: 1 1 100%;
      border-top: 1px solid #333;
      padding-top: 20px;
      text-align: center;
    }
    .contact-info {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-bottom: 15px;
      font-size: 14px;
    }
    .contact-info address {
      font-style: normal;
    }
    .contact-info a {
      color: #f5a623;
      text-decoration: none;
    }
    .contact-info a:hover {
      text-decoration: underline;
    }
    .disclaimer {
      font-size: 12px;
      color: #999;
      line-height: 1.5;
      margin: 10px 0;
    }
    .copyright {
      font-size: 13px;
      color: #777;
      margin: 5px 0 0;
    }
    @media (min-width: 768px) {
      .footer-brand {
        flex: 0 0 30%;
        margin-bottom: 0;
      }
      .footer-right {
        flex: 0 0 35%;
        margin-bottom: 0;
      }
      .footer-contact {
        margin-top: 30px;
      }
    }

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

    .cookie-lv12__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px var(--gap);
        align-items: center;
    }

    .cookie-lv12__title {
        font-weight: 700;
        color: var(--fg-on-surface);
    }

    .cookie-lv12 p {
        margin: 0;
        grid-column: 1 / 2;
        color: var(--fg-muted);
    }

    .cookie-lv12__actions {
        grid-row: 1 / 3;
        grid-column: 2 / 3;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

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

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

    @media (max-width: 760px) {
        .cookie-lv12__wrap {
            grid-template-columns: 1fr;
        }

        .cookie-lv12 p,
        .cookie-lv12__actions {
            grid-column: auto;
            grid-row: auto;
        }

        .cookie-lv12__actions {
            justify-content: flex-start;
        }
    }

.nfintro-v7 {
        padding: clamp(3.8rem, 8vw, 6.8rem) var(--space-x);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

    .nfintro-v7__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1.15fr .85fr;
        gap: 1rem;
    }

    .nfintro-v7__copy,
    .nfintro-v7__meta {
        padding: 1.1rem;
        border-radius: var(--radius-xl);
        background: rgba(17, 24, 39, .18);
        border: 1px solid rgba(255, 255, 255, .18);
    }

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

    .nfintro-v7__copy h1 {
        margin: .65rem 0 0;
        font-size: clamp(2.5rem, 5vw, 4.8rem);
        line-height: 1.02;
    }

    .nfintro-v7__copy span {
        display: block;
        margin-top: .95rem;
        max-width: 38rem;
    }

    .nfintro-v7__actions {
        margin-top: 1.1rem;
        display: flex;
        gap: .75rem;
        flex-wrap: wrap;
    }

    .nfintro-v7__actions a {
        display: inline-flex;
        min-height: 2.8rem;
        align-items: center;
        justify-content: center;
        padding: 0 1rem;
        border-radius: var(--radius-md);
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, .22);
        color: var(--fg-on-primary);
        background: rgba(255, 255, 255, .12);
    }

    .nfintro-v7__actions a:first-child {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

    .nfintro-v7__meta {
        display: grid;
        align-content: center;
        gap: .7rem;
    }

    .nfintro-v7__meta p,
    .nfintro-v7__meta div {margin: 0; color: rgba(255, 255, 255, .88);}

    @media (max-width: 860px) {
        .nfintro-v7__wrap {grid-template-columns: 1fr;}
    }

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

    .next-ux26 {
        padding: calc(var(--space-y) * 1.9) var(--space-x);
        background: var(--neutral-100);
        color: var(--neutral-900)
    }

    .next-ux26 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: var(--gap)
    }

    .next-ux26 h2, .next-ux26 h3, .next-ux26 p {
        margin: 0
    }

    .next-ux26 a {
        text-decoration: none
    }

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

    .next-ux26 .center {
        display: grid;
        gap: .5rem;
        justify-items: center;
        text-align: center
    }

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

    .next-ux26 .actions {
        display: flex;
        gap: .45rem;
        flex-wrap: wrap
    }

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

    .next-ux26 .banner {
        display: grid;
        gap: .6rem
    }

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

    .next-ux26 .numbers div {
        padding: .6rem;
        border-radius: var(--radius-md);
        background: var(--neutral-100);
        border: 1px solid var(--neutral-300)
    }

    .next-ux26 .duo {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: var(--gap)
    }

    .next-ux26 .duo article {
        display: grid;
        gap: .45rem
    }

    .next-ux26 .stack {
        display: grid;
        gap: .6rem;
        justify-items: start
    }

    .next-ux26 .chips {
        display: flex;
        gap: .35rem;
        flex-wrap: wrap
    }

    .next-ux26 .chips span {
        padding: .28rem .5rem;
        border-radius: var(--radius-sm);
        background: var(--neutral-100);
        border: 1px solid var(--neutral-300)
    }

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

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

        .next-ux26 .numbers {
            grid-template-columns:1fr 1fr
        }
    }

    @media (max-width: 620px) {
        .next-ux26 .numbers {
            grid-template-columns:1fr
        }
    }

.recommendations-board {
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--accent-contrast);
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 40px);
        overflow: hidden;
    }

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

    .recommendations-board__h {
        text-align: center;
        margin-bottom: clamp(24px, 6vw, 52px);

        transform: translateY(-18px);
    }

    .recommendations-board__eyebrow {
        margin: 0 0 10px;
        text-transform: uppercase;
        letter-spacing: 0.22em;
        font-size: 12px;
        color: rgba(255, 255, 255, 0.72);
    }

    .recommendations-board__h h2 {
        margin: 0;
        font-size: clamp(28px, 4.6vw, 48px);
        letter-spacing: -0.02em;
        color: var(--neutral-0);
    }

    .recommendations-board__mosaic {
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        gap: clamp(14px, 2.6vw, 22px);
    }

    .recommendations-board__tile {
        grid-column: span 4;
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.14);
        box-shadow: 0 22px 40px rgba(0, 0, 0, 0.28);
        padding: 18px 18px 16px;

        transform: translateY(26px);
        position: relative;
        overflow: hidden;
        backdrop-filter: blur(12px);
    }

    .recommendations-board__tile:nth-child(1),
    .recommendations-board__tile:nth-child(2) {
        grid-column: span 6;
    }

    .recommendations-board__tile::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(248, 225, 231, 0.25), transparent 60%);
        opacity: 0.9;
        pointer-events: none;
    }

    .recommendations-board__tile h3 {
        margin: 0 0 10px;
        position: relative;
        z-index: 1;
        font-size: 18px;
        font-weight: 900;
        letter-spacing: -0.01em;
        color: var(--neutral-0);
    }

    .recommendations-board__why {
        margin: 0 0 10px;
        position: relative;
        z-index: 1;
        color: rgba(255, 255, 255, 0.72);
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 0.18em;
    }

    .recommendations-board__desc {
        margin: 0 0 14px;
        position: relative;
        z-index: 1;
        color: rgba(255, 255, 255, 0.84);
        font-size: 14px;
        line-height: 1.65;
    }

    .recommendations-board__cta {
        position: relative;
        z-index: 1;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        text-decoration: none;
        padding: 10px 14px;
        border-radius: 999px;
        background: var(--gradient-accent);
        color: var(--brand-contrast);
        font-weight: 900;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        font-size: 11px;
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .recommendations-board__cta::after {
        content: '->';
    }

    .recommendations-board__cta:hover {
        transform: translateY(-2px);
    }

    @media (max-width: 960px) {
        .recommendations-board__tile {
            grid-column: span 6;
        }
    }

    @media (max-width: 620px) {
        .recommendations-board__tile {
            grid-column: span 12;
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

header {
    background: var(--surface-1);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.25);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }
  .nav a {
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav a:hover {
    background: var(--surface-2);
    color: var(--brand);
  }
  .nav a.active {
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    box-shadow: var(--shadow-sm);
  }
  .cta-secondary {
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-xl);
    text-decoration: none;
    font-size: var(--font-size-base);
    font-weight: 600;
    white-space: nowrap;
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .cta-secondary:hover {
    background: var(--bg-accent-hover);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 0;
  }
  .burger span {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  @media (max-width: 767px) {
    .burger {
      display: flex;
    }
    .nav {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1);
      box-shadow: var(--shadow-md);
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease);
    }
    .nav.open {
      max-height: 300px;
    }
    .nav ul {
      flex-direction: column;
      padding: var(--space-y) var(--space-x);
      gap: 0.5rem;
    }
    .nav a {
      display: block;
      padding: 0.75rem 1rem;
    }
    .cta-secondary {
      display: none;
    }
  }

footer {
      background-color: #1a1a2e;
      color: #e0e0e0;
      padding: 40px 20px 20px;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: flex-start;
    }
    .footer-brand {
      flex: 1 1 100%;
      max-width: 300px;
      margin-bottom: 30px;
    }
    .logo {
      font-size: 28px;
      font-weight: 700;
      color: #f5a623;
      letter-spacing: 1px;
    }
    .footer-right {
      flex: 1 1 100%;
      max-width: 400px;
      display: flex;
      flex-direction: column;
      gap: 20px;
      margin-bottom: 30px;
    }
    .footer-nav ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
    }
    .footer-nav a {
      color: #e0e0e0;
      text-decoration: none;
      font-size: 16px;
      transition: color 0.3s;
    }
    .footer-nav a:hover {
      color: #f5a623;
    }
    .footer-legal {
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
    }
    .footer-legal a {
      color: #b0b0b0;
      text-decoration: none;
      font-size: 14px;
      transition: color 0.3s;
    }
    .footer-legal a:hover {
      color: #f5a623;
    }
    .footer-contact {
      flex: 1 1 100%;
      border-top: 1px solid #333;
      padding-top: 20px;
      text-align: center;
    }
    .contact-info {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-bottom: 15px;
      font-size: 14px;
    }
    .contact-info address {
      font-style: normal;
    }
    .contact-info a {
      color: #f5a623;
      text-decoration: none;
    }
    .contact-info a:hover {
      text-decoration: underline;
    }
    .disclaimer {
      font-size: 12px;
      color: #999;
      line-height: 1.5;
      margin: 10px 0;
    }
    .copyright {
      font-size: 13px;
      color: #777;
      margin: 5px 0 0;
    }
    @media (min-width: 768px) {
      .footer-brand {
        flex: 0 0 30%;
        margin-bottom: 0;
      }
      .footer-right {
        flex: 0 0 35%;
        margin-bottom: 0;
      }
      .footer-contact {
        margin-top: 30px;
      }
    }

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

    .cookie-lv12__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px var(--gap);
        align-items: center;
    }

    .cookie-lv12__title {
        font-weight: 700;
        color: var(--fg-on-surface);
    }

    .cookie-lv12 p {
        margin: 0;
        grid-column: 1 / 2;
        color: var(--fg-muted);
    }

    .cookie-lv12__actions {
        grid-row: 1 / 3;
        grid-column: 2 / 3;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

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

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

    @media (max-width: 760px) {
        .cookie-lv12__wrap {
            grid-template-columns: 1fr;
        }

        .cookie-lv12 p,
        .cookie-lv12__actions {
            grid-column: auto;
            grid-row: auto;
        }

        .cookie-lv12__actions {
            justify-content: flex-start;
        }
    }

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

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

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

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

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

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

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

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

    .identity-ux23__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-ux23__meta {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 8px;
    }

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

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

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

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

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

.gallery--colored-v9 {
    padding: 52px 20px;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--brand) 100%);
    color: #ffffff;
}

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

.gallery-v9__title {
    margin: 0 0 14px;
    font-size: clamp(24px, 4vw, 32px);
    color: #ffffff;
}

.gallery-v9__rail {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(180px, 1fr);
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 6px;
}

.gallery-v9__tile {
    margin: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.32);
    background: rgba(255, 255, 255, 0.1);
    min-width: 180px;
}

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

.gallery-v9__tile figcaption {
    padding: 8px 10px;
    font-size: 0.88rem;
    color: var(--neutral-100);
}

@media (max-width: 640px) {
    .gallery--colored-v9 {
        padding: 42px 14px;
    }
}

.about-mission {

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

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

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

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

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

header {
    background: var(--surface-1);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.25);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }
  .nav a {
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav a:hover {
    background: var(--surface-2);
    color: var(--brand);
  }
  .nav a.active {
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    box-shadow: var(--shadow-sm);
  }
  .cta-secondary {
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-xl);
    text-decoration: none;
    font-size: var(--font-size-base);
    font-weight: 600;
    white-space: nowrap;
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .cta-secondary:hover {
    background: var(--bg-accent-hover);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 0;
  }
  .burger span {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  @media (max-width: 767px) {
    .burger {
      display: flex;
    }
    .nav {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1);
      box-shadow: var(--shadow-md);
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease);
    }
    .nav.open {
      max-height: 300px;
    }
    .nav ul {
      flex-direction: column;
      padding: var(--space-y) var(--space-x);
      gap: 0.5rem;
    }
    .nav a {
      display: block;
      padding: 0.75rem 1rem;
    }
    .cta-secondary {
      display: none;
    }
  }

footer {
      background-color: #1a1a2e;
      color: #e0e0e0;
      padding: 40px 20px 20px;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: flex-start;
    }
    .footer-brand {
      flex: 1 1 100%;
      max-width: 300px;
      margin-bottom: 30px;
    }
    .logo {
      font-size: 28px;
      font-weight: 700;
      color: #f5a623;
      letter-spacing: 1px;
    }
    .footer-right {
      flex: 1 1 100%;
      max-width: 400px;
      display: flex;
      flex-direction: column;
      gap: 20px;
      margin-bottom: 30px;
    }
    .footer-nav ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
    }
    .footer-nav a {
      color: #e0e0e0;
      text-decoration: none;
      font-size: 16px;
      transition: color 0.3s;
    }
    .footer-nav a:hover {
      color: #f5a623;
    }
    .footer-legal {
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
    }
    .footer-legal a {
      color: #b0b0b0;
      text-decoration: none;
      font-size: 14px;
      transition: color 0.3s;
    }
    .footer-legal a:hover {
      color: #f5a623;
    }
    .footer-contact {
      flex: 1 1 100%;
      border-top: 1px solid #333;
      padding-top: 20px;
      text-align: center;
    }
    .contact-info {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-bottom: 15px;
      font-size: 14px;
    }
    .contact-info address {
      font-style: normal;
    }
    .contact-info a {
      color: #f5a623;
      text-decoration: none;
    }
    .contact-info a:hover {
      text-decoration: underline;
    }
    .disclaimer {
      font-size: 12px;
      color: #999;
      line-height: 1.5;
      margin: 10px 0;
    }
    .copyright {
      font-size: 13px;
      color: #777;
      margin: 5px 0 0;
    }
    @media (min-width: 768px) {
      .footer-brand {
        flex: 0 0 30%;
        margin-bottom: 0;
      }
      .footer-right {
        flex: 0 0 35%;
        margin-bottom: 0;
      }
      .footer-contact {
        margin-top: 30px;
      }
    }

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

    .cookie-lv12__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px var(--gap);
        align-items: center;
    }

    .cookie-lv12__title {
        font-weight: 700;
        color: var(--fg-on-surface);
    }

    .cookie-lv12 p {
        margin: 0;
        grid-column: 1 / 2;
        color: var(--fg-muted);
    }

    .cookie-lv12__actions {
        grid-row: 1 / 3;
        grid-column: 2 / 3;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

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

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

    @media (max-width: 760px) {
        .cookie-lv12__wrap {
            grid-template-columns: 1fr;
        }

        .cookie-lv12 p,
        .cookie-lv12__actions {
            grid-column: auto;
            grid-row: auto;
        }

        .cookie-lv12__actions {
            justify-content: flex-start;
        }
    }

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

    .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;
        color: rgba(255, 255, 255, .7);
    }

    .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);
        font-size: 1.4rem;
    }

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

    .values-spine-c1__list p {
        margin: .35rem 0 0;
        color: rgba(255, 255, 255, .85);
    }

    .values-spine-c1__list small {
        display: block;
        margin-top: .55rem;
        color: rgba(255, 255, 255, .65);
        font-style: italic;
    }

.features {
    padding: clamp(48px, 8vw, 80px) 0;
    background-color: var(--bg-page);
    color: var(--fg-on-page);
}

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

.features__title {
    text-align: left;
    margin-bottom: calc(var(--space-y) * 2);
    font-size: clamp(28px, 4vw, 40px);
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: calc(var(--gap) * 1.5);
}

.features__card {
    background-color: var(--surface-2);
    padding: clamp(16px, 3vw, 32px);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    text-align: left;
    border: 1px solid var(--border-on-surface);
}

.features__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.features__icon {
    font-size: 2.2rem;
    color: var(--brand);
    margin-bottom: var(--space-y);
}

.features__icon--chip {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.features__card h3 {
    margin-bottom: var(--space-y);
    color: var(--fg-on-surface);
}

.features__card p {
    color: var(--fg-on-surface-light);
    margin: 0 auto;
}

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

    .hiw-ux8 {
        padding: clamp(3.5rem, 7vw, 6rem) var(--space-x);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

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

    .hiw-ux8__head {
        margin-bottom: 1.25rem;
    }

    .hiw-ux8__head p {
        margin: 0;
        color: rgba(255, 255, 255, .78);
        text-transform: uppercase;
        letter-spacing: .12em;
        font-size: .82rem;
    }

    .hiw-ux8__head h2 {
        margin: .5rem 0 0;
        font-size: clamp(2rem, 4vw, 3.2rem);
    }

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

    .hiw-ux8__track article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--fg-on-primary);
        color:  var(--bg-primary);
        border: 1px solid rgba(255, 255, 255, .18);
        box-shadow: var(--shadow-md);
        position: relative;
    }

    .hiw-ux8__track article::after {
        content: '';
        position: absolute;
        inset: auto 1rem 0.7rem 1rem;
        height: 2px;
        background: linear-gradient(90deg, rgba(255, 255, 255, .45), transparent);
    }

    .hiw-ux8__track span {
        display: inline-flex;
        width: 2.4rem;
        height: 2.4rem;
        align-items: center;
        justify-content: center;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-weight: 700;
    }

    .hiw-ux8__track h3 {
        margin: .8rem 0 .35rem;
    }

    .hiw-ux8__track p {
        margin: 0;
    }

header {
    background: var(--surface-1);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.25);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }
  .nav a {
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav a:hover {
    background: var(--surface-2);
    color: var(--brand);
  }
  .nav a.active {
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    box-shadow: var(--shadow-sm);
  }
  .cta-secondary {
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-xl);
    text-decoration: none;
    font-size: var(--font-size-base);
    font-weight: 600;
    white-space: nowrap;
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .cta-secondary:hover {
    background: var(--bg-accent-hover);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 0;
  }
  .burger span {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  @media (max-width: 767px) {
    .burger {
      display: flex;
    }
    .nav {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1);
      box-shadow: var(--shadow-md);
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease);
    }
    .nav.open {
      max-height: 300px;
    }
    .nav ul {
      flex-direction: column;
      padding: var(--space-y) var(--space-x);
      gap: 0.5rem;
    }
    .nav a {
      display: block;
      padding: 0.75rem 1rem;
    }
    .cta-secondary {
      display: none;
    }
  }

footer {
      background-color: #1a1a2e;
      color: #e0e0e0;
      padding: 40px 20px 20px;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: flex-start;
    }
    .footer-brand {
      flex: 1 1 100%;
      max-width: 300px;
      margin-bottom: 30px;
    }
    .logo {
      font-size: 28px;
      font-weight: 700;
      color: #f5a623;
      letter-spacing: 1px;
    }
    .footer-right {
      flex: 1 1 100%;
      max-width: 400px;
      display: flex;
      flex-direction: column;
      gap: 20px;
      margin-bottom: 30px;
    }
    .footer-nav ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
    }
    .footer-nav a {
      color: #e0e0e0;
      text-decoration: none;
      font-size: 16px;
      transition: color 0.3s;
    }
    .footer-nav a:hover {
      color: #f5a623;
    }
    .footer-legal {
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
    }
    .footer-legal a {
      color: #b0b0b0;
      text-decoration: none;
      font-size: 14px;
      transition: color 0.3s;
    }
    .footer-legal a:hover {
      color: #f5a623;
    }
    .footer-contact {
      flex: 1 1 100%;
      border-top: 1px solid #333;
      padding-top: 20px;
      text-align: center;
    }
    .contact-info {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-bottom: 15px;
      font-size: 14px;
    }
    .contact-info address {
      font-style: normal;
    }
    .contact-info a {
      color: #f5a623;
      text-decoration: none;
    }
    .contact-info a:hover {
      text-decoration: underline;
    }
    .disclaimer {
      font-size: 12px;
      color: #999;
      line-height: 1.5;
      margin: 10px 0;
    }
    .copyright {
      font-size: 13px;
      color: #777;
      margin: 5px 0 0;
    }
    @media (min-width: 768px) {
      .footer-brand {
        flex: 0 0 30%;
        margin-bottom: 0;
      }
      .footer-right {
        flex: 0 0 35%;
        margin-bottom: 0;
      }
      .footer-contact {
        margin-top: 30px;
      }
    }

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

    .cookie-lv12__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px var(--gap);
        align-items: center;
    }

    .cookie-lv12__title {
        font-weight: 700;
        color: var(--fg-on-surface);
    }

    .cookie-lv12 p {
        margin: 0;
        grid-column: 1 / 2;
        color: var(--fg-muted);
    }

    .cookie-lv12__actions {
        grid-row: 1 / 3;
        grid-column: 2 / 3;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

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

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

    @media (max-width: 760px) {
        .cookie-lv12__wrap {
            grid-template-columns: 1fr;
        }

        .cookie-lv12 p,
        .cookie-lv12__actions {
            grid-column: auto;
            grid-row: auto;
        }

        .cookie-lv12__actions {
            justify-content: flex-start;
        }
    }

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

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

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

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

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

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

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

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

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

    .map-split-l1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: .85fr 1.15fr;
        gap: 1rem;
    }

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

    .map-split-l1__side p {
        margin: .6rem 0 0;
        color: var(--neutral-600);
    }

    .map-split-l1__list {
        margin-top: 1rem;
        display: grid;
        gap: .7rem;
    }

    .map-split-l1__list div {
        padding: .9rem;
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        border: 1px solid var(--border-on-surface-light);
    }

    .map-split-l1__list span {
        display: block;
        margin-top: .3rem;
        color: var(--neutral-600);
    }

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

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

    @media (max-width: 840px) {
        .map-split-l1__wrap {
            grid-template-columns: 1fr;
        }
    }

body{margin:0;padding:0;font-family:var(--font-family);box-sizing: border-box;}
    *{box-sizing:border-box;}.clar-ux6{padding:clamp(20px,3vw,44px);background:var(--brand);color:var(--brand-contrast)}.clar-ux6__wrap{max-width:var(--max-w);margin:0 auto}.clar-ux6 h2{margin:0 0 12px}.clar-ux6 ul{list-style:none;margin:0;padding:0;display:grid;gap:10px}.clar-ux6 li{display:grid;grid-template-columns:110px 1fr;gap:12px;border:1px solid rgba(255,255,255,.28);border-radius:var(--radius-md);background:rgba(255,255,255,.12);padding:12px}.clar-ux6 b{align-self:start}.clar-ux6 h3{margin:0 0 6px}.clar-ux6 p{margin:0;opacity:.93}@media(max-width:640px){.clar-ux6 li{grid-template-columns:1fr}}

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

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

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

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

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

    .contact-layout-f .capsule {
        display: grid;
        gap: var(--gap);
        grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    }

    .contact-layout-f .capsule article {
        border-radius: 12px;
        border: 1px solid var(--border-on-surface-light);
        padding: 14px 16px;
        background: var(--surface-1);
    }

    .contact-layout-f .capsule h3 {
        margin: 0;
        font-size: .96rem;
        color: var(--brand);
    }

    .contact-layout-f .capsule p {
        margin: 5px 0 0;
    }

    .contact-layout-f .social-strip {
        margin-top: 18px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }

    .contact-layout-f .social-strip a {
        text-decoration: none;
        color: var(--fg-on-primary);
        background: var(--gradient-hero);
        padding: 7px 11px;
        border-radius: var(--radius-sm);
    }

    .social-follow {
        text-align: center;
    }

header {
    background: var(--surface-1);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.25);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }
  .nav a {
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav a:hover {
    background: var(--surface-2);
    color: var(--brand);
  }
  .nav a.active {
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    box-shadow: var(--shadow-sm);
  }
  .cta-secondary {
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-xl);
    text-decoration: none;
    font-size: var(--font-size-base);
    font-weight: 600;
    white-space: nowrap;
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .cta-secondary:hover {
    background: var(--bg-accent-hover);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 0;
  }
  .burger span {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  @media (max-width: 767px) {
    .burger {
      display: flex;
    }
    .nav {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1);
      box-shadow: var(--shadow-md);
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease);
    }
    .nav.open {
      max-height: 300px;
    }
    .nav ul {
      flex-direction: column;
      padding: var(--space-y) var(--space-x);
      gap: 0.5rem;
    }
    .nav a {
      display: block;
      padding: 0.75rem 1rem;
    }
    .cta-secondary {
      display: none;
    }
  }

footer {
      background-color: #1a1a2e;
      color: #e0e0e0;
      padding: 40px 20px 20px;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: flex-start;
    }
    .footer-brand {
      flex: 1 1 100%;
      max-width: 300px;
      margin-bottom: 30px;
    }
    .logo {
      font-size: 28px;
      font-weight: 700;
      color: #f5a623;
      letter-spacing: 1px;
    }
    .footer-right {
      flex: 1 1 100%;
      max-width: 400px;
      display: flex;
      flex-direction: column;
      gap: 20px;
      margin-bottom: 30px;
    }
    .footer-nav ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
    }
    .footer-nav a {
      color: #e0e0e0;
      text-decoration: none;
      font-size: 16px;
      transition: color 0.3s;
    }
    .footer-nav a:hover {
      color: #f5a623;
    }
    .footer-legal {
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
    }
    .footer-legal a {
      color: #b0b0b0;
      text-decoration: none;
      font-size: 14px;
      transition: color 0.3s;
    }
    .footer-legal a:hover {
      color: #f5a623;
    }
    .footer-contact {
      flex: 1 1 100%;
      border-top: 1px solid #333;
      padding-top: 20px;
      text-align: center;
    }
    .contact-info {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-bottom: 15px;
      font-size: 14px;
    }
    .contact-info address {
      font-style: normal;
    }
    .contact-info a {
      color: #f5a623;
      text-decoration: none;
    }
    .contact-info a:hover {
      text-decoration: underline;
    }
    .disclaimer {
      font-size: 12px;
      color: #999;
      line-height: 1.5;
      margin: 10px 0;
    }
    .copyright {
      font-size: 13px;
      color: #777;
      margin: 5px 0 0;
    }
    @media (min-width: 768px) {
      .footer-brand {
        flex: 0 0 30%;
        margin-bottom: 0;
      }
      .footer-right {
        flex: 0 0 35%;
        margin-bottom: 0;
      }
      .footer-contact {
        margin-top: 30px;
      }
    }

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

    .cookie-lv12__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px var(--gap);
        align-items: center;
    }

    .cookie-lv12__title {
        font-weight: 700;
        color: var(--fg-on-surface);
    }

    .cookie-lv12 p {
        margin: 0;
        grid-column: 1 / 2;
        color: var(--fg-muted);
    }

    .cookie-lv12__actions {
        grid-row: 1 / 3;
        grid-column: 2 / 3;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

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

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

    @media (max-width: 760px) {
        .cookie-lv12__wrap {
            grid-template-columns: 1fr;
        }

        .cookie-lv12 p,
        .cookie-lv12__actions {
            grid-column: auto;
            grid-row: auto;
        }

        .cookie-lv12__actions {
            justify-content: flex-start;
        }
    }

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

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

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

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

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

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

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

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

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

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

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

header {
    background: var(--surface-1);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.25);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }
  .nav a {
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav a:hover {
    background: var(--surface-2);
    color: var(--brand);
  }
  .nav a.active {
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    box-shadow: var(--shadow-sm);
  }
  .cta-secondary {
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-xl);
    text-decoration: none;
    font-size: var(--font-size-base);
    font-weight: 600;
    white-space: nowrap;
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .cta-secondary:hover {
    background: var(--bg-accent-hover);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 0;
  }
  .burger span {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  @media (max-width: 767px) {
    .burger {
      display: flex;
    }
    .nav {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1);
      box-shadow: var(--shadow-md);
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease);
    }
    .nav.open {
      max-height: 300px;
    }
    .nav ul {
      flex-direction: column;
      padding: var(--space-y) var(--space-x);
      gap: 0.5rem;
    }
    .nav a {
      display: block;
      padding: 0.75rem 1rem;
    }
    .cta-secondary {
      display: none;
    }
  }

footer {
      background-color: #1a1a2e;
      color: #e0e0e0;
      padding: 40px 20px 20px;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: flex-start;
    }
    .footer-brand {
      flex: 1 1 100%;
      max-width: 300px;
      margin-bottom: 30px;
    }
    .logo {
      font-size: 28px;
      font-weight: 700;
      color: #f5a623;
      letter-spacing: 1px;
    }
    .footer-right {
      flex: 1 1 100%;
      max-width: 400px;
      display: flex;
      flex-direction: column;
      gap: 20px;
      margin-bottom: 30px;
    }
    .footer-nav ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
    }
    .footer-nav a {
      color: #e0e0e0;
      text-decoration: none;
      font-size: 16px;
      transition: color 0.3s;
    }
    .footer-nav a:hover {
      color: #f5a623;
    }
    .footer-legal {
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
    }
    .footer-legal a {
      color: #b0b0b0;
      text-decoration: none;
      font-size: 14px;
      transition: color 0.3s;
    }
    .footer-legal a:hover {
      color: #f5a623;
    }
    .footer-contact {
      flex: 1 1 100%;
      border-top: 1px solid #333;
      padding-top: 20px;
      text-align: center;
    }
    .contact-info {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-bottom: 15px;
      font-size: 14px;
    }
    .contact-info address {
      font-style: normal;
    }
    .contact-info a {
      color: #f5a623;
      text-decoration: none;
    }
    .contact-info a:hover {
      text-decoration: underline;
    }
    .disclaimer {
      font-size: 12px;
      color: #999;
      line-height: 1.5;
      margin: 10px 0;
    }
    .copyright {
      font-size: 13px;
      color: #777;
      margin: 5px 0 0;
    }
    @media (min-width: 768px) {
      .footer-brand {
        flex: 0 0 30%;
        margin-bottom: 0;
      }
      .footer-right {
        flex: 0 0 35%;
        margin-bottom: 0;
      }
      .footer-contact {
        margin-top: 30px;
      }
    }

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

    .cookie-lv12__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px var(--gap);
        align-items: center;
    }

    .cookie-lv12__title {
        font-weight: 700;
        color: var(--fg-on-surface);
    }

    .cookie-lv12 p {
        margin: 0;
        grid-column: 1 / 2;
        color: var(--fg-muted);
    }

    .cookie-lv12__actions {
        grid-row: 1 / 3;
        grid-column: 2 / 3;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

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

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

    @media (max-width: 760px) {
        .cookie-lv12__wrap {
            grid-template-columns: 1fr;
        }

        .cookie-lv12 p,
        .cookie-lv12__actions {
            grid-column: auto;
            grid-row: auto;
        }

        .cookie-lv12__actions {
            justify-content: flex-start;
        }
    }

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

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

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

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

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

    .terms-layout-c details {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--surface-1);
        padding: 10px 12px;
        margin-bottom: 10px;
    }

    .terms-layout-c summary {
        cursor: pointer;
        color: var(--brand);
        font-weight: 700;
    }

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

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

header {
    background: var(--surface-1);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.25);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }
  .nav a {
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav a:hover {
    background: var(--surface-2);
    color: var(--brand);
  }
  .nav a.active {
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    box-shadow: var(--shadow-sm);
  }
  .cta-secondary {
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-xl);
    text-decoration: none;
    font-size: var(--font-size-base);
    font-weight: 600;
    white-space: nowrap;
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .cta-secondary:hover {
    background: var(--bg-accent-hover);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 0;
  }
  .burger span {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  @media (max-width: 767px) {
    .burger {
      display: flex;
    }
    .nav {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1);
      box-shadow: var(--shadow-md);
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease);
    }
    .nav.open {
      max-height: 300px;
    }
    .nav ul {
      flex-direction: column;
      padding: var(--space-y) var(--space-x);
      gap: 0.5rem;
    }
    .nav a {
      display: block;
      padding: 0.75rem 1rem;
    }
    .cta-secondary {
      display: none;
    }
  }

footer {
      background-color: #1a1a2e;
      color: #e0e0e0;
      padding: 40px 20px 20px;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: flex-start;
    }
    .footer-brand {
      flex: 1 1 100%;
      max-width: 300px;
      margin-bottom: 30px;
    }
    .logo {
      font-size: 28px;
      font-weight: 700;
      color: #f5a623;
      letter-spacing: 1px;
    }
    .footer-right {
      flex: 1 1 100%;
      max-width: 400px;
      display: flex;
      flex-direction: column;
      gap: 20px;
      margin-bottom: 30px;
    }
    .footer-nav ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
    }
    .footer-nav a {
      color: #e0e0e0;
      text-decoration: none;
      font-size: 16px;
      transition: color 0.3s;
    }
    .footer-nav a:hover {
      color: #f5a623;
    }
    .footer-legal {
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
    }
    .footer-legal a {
      color: #b0b0b0;
      text-decoration: none;
      font-size: 14px;
      transition: color 0.3s;
    }
    .footer-legal a:hover {
      color: #f5a623;
    }
    .footer-contact {
      flex: 1 1 100%;
      border-top: 1px solid #333;
      padding-top: 20px;
      text-align: center;
    }
    .contact-info {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-bottom: 15px;
      font-size: 14px;
    }
    .contact-info address {
      font-style: normal;
    }
    .contact-info a {
      color: #f5a623;
      text-decoration: none;
    }
    .contact-info a:hover {
      text-decoration: underline;
    }
    .disclaimer {
      font-size: 12px;
      color: #999;
      line-height: 1.5;
      margin: 10px 0;
    }
    .copyright {
      font-size: 13px;
      color: #777;
      margin: 5px 0 0;
    }
    @media (min-width: 768px) {
      .footer-brand {
        flex: 0 0 30%;
        margin-bottom: 0;
      }
      .footer-right {
        flex: 0 0 35%;
        margin-bottom: 0;
      }
      .footer-contact {
        margin-top: 30px;
      }
    }

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

    .cookie-lv12__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px var(--gap);
        align-items: center;
    }

    .cookie-lv12__title {
        font-weight: 700;
        color: var(--fg-on-surface);
    }

    .cookie-lv12 p {
        margin: 0;
        grid-column: 1 / 2;
        color: var(--fg-muted);
    }

    .cookie-lv12__actions {
        grid-row: 1 / 3;
        grid-column: 2 / 3;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

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

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

    @media (max-width: 760px) {
        .cookie-lv12__wrap {
            grid-template-columns: 1fr;
        }

        .cookie-lv12 p,
        .cookie-lv12__actions {
            grid-column: auto;
            grid-row: auto;
        }

        .cookie-lv12__actions {
            justify-content: flex-start;
        }
    }

.nfthank-v10 {
        padding: clamp(58px, 10vw, 114px) 18px;
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    .nfthank-v10__wrap {
        max-width: 740px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(28px, 4vw, 42px);
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-xl);
        background: linear-gradient(180deg, var(--surface-1), var(--surface-2));
    }

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

    .nfthank-v10 p {
        margin: 10px 0 0;
        color: var(--neutral-600);
    }

    .nfthank-v10 a {
        display: inline-block;
        margin-top: 16px;
        padding: 9px 14px;
        border-radius: var(--radius-sm);
        text-decoration: none;
        border: 1px solid var(--border-on-surface);
        color: var(--fg-on-page);
    }

header {
    background: var(--surface-1);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.25);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }
  .nav a {
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav a:hover {
    background: var(--surface-2);
    color: var(--brand);
  }
  .nav a.active {
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    box-shadow: var(--shadow-sm);
  }
  .cta-secondary {
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-xl);
    text-decoration: none;
    font-size: var(--font-size-base);
    font-weight: 600;
    white-space: nowrap;
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .cta-secondary:hover {
    background: var(--bg-accent-hover);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 0;
  }
  .burger span {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  @media (max-width: 767px) {
    .burger {
      display: flex;
    }
    .nav {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1);
      box-shadow: var(--shadow-md);
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease);
    }
    .nav.open {
      max-height: 300px;
    }
    .nav ul {
      flex-direction: column;
      padding: var(--space-y) var(--space-x);
      gap: 0.5rem;
    }
    .nav a {
      display: block;
      padding: 0.75rem 1rem;
    }
    .cta-secondary {
      display: none;
    }
  }

footer {
      background-color: #1a1a2e;
      color: #e0e0e0;
      padding: 40px 20px 20px;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: flex-start;
    }
    .footer-brand {
      flex: 1 1 100%;
      max-width: 300px;
      margin-bottom: 30px;
    }
    .logo {
      font-size: 28px;
      font-weight: 700;
      color: #f5a623;
      letter-spacing: 1px;
    }
    .footer-right {
      flex: 1 1 100%;
      max-width: 400px;
      display: flex;
      flex-direction: column;
      gap: 20px;
      margin-bottom: 30px;
    }
    .footer-nav ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
    }
    .footer-nav a {
      color: #e0e0e0;
      text-decoration: none;
      font-size: 16px;
      transition: color 0.3s;
    }
    .footer-nav a:hover {
      color: #f5a623;
    }
    .footer-legal {
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
    }
    .footer-legal a {
      color: #b0b0b0;
      text-decoration: none;
      font-size: 14px;
      transition: color 0.3s;
    }
    .footer-legal a:hover {
      color: #f5a623;
    }
    .footer-contact {
      flex: 1 1 100%;
      border-top: 1px solid #333;
      padding-top: 20px;
      text-align: center;
    }
    .contact-info {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-bottom: 15px;
      font-size: 14px;
    }
    .contact-info address {
      font-style: normal;
    }
    .contact-info a {
      color: #f5a623;
      text-decoration: none;
    }
    .contact-info a:hover {
      text-decoration: underline;
    }
    .disclaimer {
      font-size: 12px;
      color: #999;
      line-height: 1.5;
      margin: 10px 0;
    }
    .copyright {
      font-size: 13px;
      color: #777;
      margin: 5px 0 0;
    }
    @media (min-width: 768px) {
      .footer-brand {
        flex: 0 0 30%;
        margin-bottom: 0;
      }
      .footer-right {
        flex: 0 0 35%;
        margin-bottom: 0;
      }
      .footer-contact {
        margin-top: 30px;
      }
    }

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

    .cookie-lv12__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px var(--gap);
        align-items: center;
    }

    .cookie-lv12__title {
        font-weight: 700;
        color: var(--fg-on-surface);
    }

    .cookie-lv12 p {
        margin: 0;
        grid-column: 1 / 2;
        color: var(--fg-muted);
    }

    .cookie-lv12__actions {
        grid-row: 1 / 3;
        grid-column: 2 / 3;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

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

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

    @media (max-width: 760px) {
        .cookie-lv12__wrap {
            grid-template-columns: 1fr;
        }

        .cookie-lv12 p,
        .cookie-lv12__actions {
            grid-column: auto;
            grid-row: auto;
        }

        .cookie-lv12__actions {
            justify-content: flex-start;
        }
    }

.err-slab-b {
    padding: clamp(56px, 10vw, 112px) 20px;
    background: var(--bg-alt);
    color: var(--fg-on-page);
}

.err-slab-b .frame {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    padding: clamp(28px, 4vw, 46px);
    border: 2px solid var(--border-on-surface);
    border-radius: var(--radius-xl);
    background: var(--surface-1);
    box-shadow: var(--shadow-md);
}

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

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

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