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

  --max-w: 960px;
  --space-x: 2.14rem;
  --space-y: 1.5rem;
  --gap: 0.8rem;

  --radius-xl: 1.4rem;
  --radius-lg: 1rem;
  --radius-md: 0.66rem;
  --radius-sm: 0.33rem;

  --shadow-sm: 0 0px 4px rgba(0,0,0,0.05);
  --shadow-md: 0 6px 16px rgba(0,0,0,0.06);
  --shadow-lg: 0 14px 28px rgba(0,0,0,0.08);

  --overlay: rgba(10, 20, 40, 0.7);
  --anim-duration: 350ms;
  --anim-ease: cubic-bezier(0.16,1,0.3,1);
  --random-number: 1;

  --brand: #1a2a4a;
  --brand-contrast: #ffffff;
  --accent: #2b6cb0;
  --accent-contrast: #ffffff;

  --neutral-0: #ffffff;
  --neutral-100: #f7f8fa;
  --neutral-300: #d1d5db;
  --neutral-600: #6b7280;
  --neutral-800: #1f2937;
  --neutral-900: #111827;

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

  --bg-alt: #f3f4f6;
  --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: #1a4a7a;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #143b63;
  --ring: #2b6cb0;

  --bg-accent: #ebf4ff;
  --fg-on-accent: #ffffff;
  --bg-accent-hover: #1a4a7a;

  --link: #2b6cb0;
  --link-hover: #1a4a7a;

  --gradient-hero: linear-gradient(135deg, #1a2a4a 0%, #2b6cb0 100%);
  --gradient-accent: linear-gradient(135deg, #2b6cb0 0%, #1a4a7a 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;}

/* Design tokens utilizate: --brand, --brand-contrast, --accent, --accent-contrast, --neutral-0, --neutral-100, --neutral-300, --neutral-600, --neutral-800, --neutral-900, --bg-page, --fg-on-page, --surface-1, --fg-on-surface, --border-on-surface, --space-x, --space-y, --gap, --radius-md, --radius-lg, --shadow-sm, --shadow-md, --anim-duration, --anim-ease, --max-w */
  
  header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
  }

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

  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .logo:hover {
    color: var(--accent);
  }

  .header-contact {
    display: flex;
    align-items: center;
  }

  .cta-button {
    display: inline-block;
    background: var(--accent);
    color: var(--accent-contrast);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    box-shadow: var(--shadow-sm);
  }

  .cta-button:hover {
    background: var(--bg-accent-hover);
    box-shadow: var(--shadow-md);
  }

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: none;
    border: 1px solid var(--border-on-surface);
    border-radius: var(--radius-md);
    cursor: pointer;
    padding: 0.4rem;
    gap: 4px;
    transition: background var(--anim-duration) var(--anim-ease);
  }

  .burger:hover {
    background: var(--neutral-100);
  }

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

  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }

  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

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

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

  .nav-list a {
    display: block;
    padding: 0.5rem 0;
    color: var(--neutral-800);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    border-bottom: 2px solid transparent;
    transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
  }

  .nav-list a:hover {
    color: var(--brand);
    border-bottom-color: var(--brand);
  }

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

    .header-contact {
      display: none;
    }

    .header-nav {
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
      padding: 0 var(--space-x);
    }

    .header-nav.open {
      max-height: 20rem;
      padding: 0 var(--space-x) var(--space-y);
    }

    .nav-list {
      flex-direction: column;
      gap: 0;
    }

    .nav-list a {
      padding: 0.75rem 0;
      border-bottom: 1px solid var(--border-on-surface);
      width: 100%;
    }

    .nav-list li:last-child a {
      border-bottom: none;
    }
  }

  @media (min-width: 768px) {
    .header-top {
      padding-bottom: 0;
    }

    .header-nav {
      padding-top: 0;
    }
  }

footer {
    background: #1a2a3a;
    color: #e0e8f0;
    padding: 2.5rem 1.5rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
  }
  .footer-brand .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0c040;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .footer-nav a {
    color: #c0d0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #f0c040;
  }
  .footer-policy {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-policy a {
    color: #b0c8d8;
    text-decoration: none;
    font-size: 0.95rem;
  }
  .footer-policy a:hover {
    color: #f0c040;
    text-decoration: underline;
  }
  .footer-contact {
    min-width: 220px;
  }
  .footer-contact p {
    margin: 0.3rem 0;
    font-size: 0.95rem;
  }
  .footer-contact a {
    color: #b0c8d8;
    text-decoration: none;
  }
  .footer-contact a:hover {
    color: #f0c040;
    text-decoration: underline;
  }
  .footer-disclaimer {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #2f4050;
    text-align: center;
    font-size: 0.85rem;
    color: #9aafc0;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-policy {
      align-items: center;
    }
    .footer-contact {
      text-align: center;
    }
  }

.cookie-cv1 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        background: var(--accent);
        color: var(--accent-contrast);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv1__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv1__text p {
        margin: 0;
        opacity: .95;
    }

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

    .cookie-cv1__actions button {
        border: 1px solid rgba(0, 0, 0, 0.12);
        background: rgba(255, 255, 255, 0.2);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-cv1__actions button[data-choice='accept'] {
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

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

.intro-cardinal-c13 {
        padding: clamp(3.8rem, 8vw, 6.9rem) var(--space-x);
        background: radial-gradient(circle at 50% 0, rgba(255, 255, 255, .16), transparent 30%), var(--gradient-hero);
        color: var(--fg-on-primary);
    }

    .intro-cardinal-c13__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1.15fr .85fr;
        gap: 1rem;
        align-items: center;
    }

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

    .intro-cardinal-c13__copy h1 {
        margin: .6rem 0 0;
        font-size: clamp(2.5rem, 5vw, 4.8rem);
        line-height: 1;
    }

    .intro-cardinal-c13__copy strong {
        display: block;
        margin-top: .7rem;
    }

    .intro-cardinal-c13__copy span {
        display: block;
        margin-top: .9rem;

        max-width: 38rem;
    }

    .intro-cardinal-c13__cards {
        display: grid;
        gap: .75rem;
    }

    .intro-cardinal-c13__cards div {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    @media (max-width: 860px) {
        .intro-cardinal-c13__wrap {
            grid-template-columns: 1fr;
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.recommendations-u5{padding:calc(var(--space-y)*2.9) var(--space-x);background:var(--neutral-900);color:var(--neutral-0)} .recommendations-u5 .shell{max-width:var(--max-w);margin:0 auto;display:grid;gap:var(--gap)} .recommendations-u5 h2{margin:0;font-size:clamp(1.85rem,3.6vw,2.8rem);line-height:1.1} .recommendations-u5 .sub{margin:.35rem 0 0;opacity:.9;} .recommendations-u5 article,.recommendations-u5 li{padding:.85rem;border-radius:var(--radius-sm);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);list-style:none} .recommendations-u5 p{margin:0} .recommendations-u5 a{text-decoration:none;color:inherit;font-weight:700} .recommendations-u5 .table{display:grid;gap:.5rem} .recommendations-u5 .foot{display:grid;grid-template-columns:1fr 1fr;gap:.5rem;margin-top:.65rem} .recommendations-u5 .foot p{padding:.65rem;border-radius:var(--radius-sm);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover)} @media (max-width:860px){.recommendations-u5 .split,.recommendations-u5 .media,.recommendations-u5 .grid,.recommendations-u5 .cards,.recommendations-u5 .bento,.recommendations-u5 .foot{grid-template-columns:1fr}}

.nftouch-v9 {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 3vw, 36px);
        background: linear-gradient(160deg, var(--bg-primary), var(--bg-primary-hover));
        color: var(--fg-on-primary);
    }

    .nftouch-v9__wrap {
        max-width: 980px;
        margin: 0 auto;
    }

    .nftouch-v9__head {
        margin-bottom: 12px;
    }

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

    .nftouch-v9__head p {
        margin: 10px 0 0;
        opacity: .9;
    }

    .nftouch-v9__stream {
        display: grid;
        gap: 8px;
    }

    .nftouch-v9__stream a {
        text-decoration: none;
        color: var(--fg-on-primary);
        border: 1px solid rgba(255, 255, 255, .3);
        border-radius: 999px;
        background: rgba(255, 255, 255, .1);
        padding: 10px 12px;
        display: flex;
        justify-content: space-between;
        gap: 10px;
        align-items: center;
    }

    .nftouch-v9__stream span {
        opacity: .86;
        white-space: nowrap;
    }

    .nftouch-v9__foot {
        margin-top: 12px;
    }

    .nftouch-v9__foot a {
        text-decoration: none;
        color: var(--fg-on-primary);
        border: 1px solid rgba(255, 255, 255, .45);
        border-radius: var(--radius-md);
        padding: 10px 14px;
        display: inline-block;
    }

    @media (max-width: 700px) {
        .nftouch-v9__stream a {
            flex-direction: column;
            align-items: flex-start;
            border-radius: var(--radius-md);
        }

        .nftouch-v9__stream span {
            white-space: normal;
        }
    }

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

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

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

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

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

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

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

    .nfsocial-v7__logos img {
        max-width: 100%;
        height: 100%;
    }

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

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

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

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

/* Design tokens utilizate: --brand, --brand-contrast, --accent, --accent-contrast, --neutral-0, --neutral-100, --neutral-300, --neutral-600, --neutral-800, --neutral-900, --bg-page, --fg-on-page, --surface-1, --fg-on-surface, --border-on-surface, --space-x, --space-y, --gap, --radius-md, --radius-lg, --shadow-sm, --shadow-md, --anim-duration, --anim-ease, --max-w */
  
  header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
  }

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

  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .logo:hover {
    color: var(--accent);
  }

  .header-contact {
    display: flex;
    align-items: center;
  }

  .cta-button {
    display: inline-block;
    background: var(--accent);
    color: var(--accent-contrast);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    box-shadow: var(--shadow-sm);
  }

  .cta-button:hover {
    background: var(--bg-accent-hover);
    box-shadow: var(--shadow-md);
  }

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: none;
    border: 1px solid var(--border-on-surface);
    border-radius: var(--radius-md);
    cursor: pointer;
    padding: 0.4rem;
    gap: 4px;
    transition: background var(--anim-duration) var(--anim-ease);
  }

  .burger:hover {
    background: var(--neutral-100);
  }

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

  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }

  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

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

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

  .nav-list a {
    display: block;
    padding: 0.5rem 0;
    color: var(--neutral-800);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    border-bottom: 2px solid transparent;
    transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
  }

  .nav-list a:hover {
    color: var(--brand);
    border-bottom-color: var(--brand);
  }

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

    .header-contact {
      display: none;
    }

    .header-nav {
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
      padding: 0 var(--space-x);
    }

    .header-nav.open {
      max-height: 20rem;
      padding: 0 var(--space-x) var(--space-y);
    }

    .nav-list {
      flex-direction: column;
      gap: 0;
    }

    .nav-list a {
      padding: 0.75rem 0;
      border-bottom: 1px solid var(--border-on-surface);
      width: 100%;
    }

    .nav-list li:last-child a {
      border-bottom: none;
    }
  }

  @media (min-width: 768px) {
    .header-top {
      padding-bottom: 0;
    }

    .header-nav {
      padding-top: 0;
    }
  }

footer {
    background: #1a2a3a;
    color: #e0e8f0;
    padding: 2.5rem 1.5rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
  }
  .footer-brand .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0c040;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .footer-nav a {
    color: #c0d0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #f0c040;
  }
  .footer-policy {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-policy a {
    color: #b0c8d8;
    text-decoration: none;
    font-size: 0.95rem;
  }
  .footer-policy a:hover {
    color: #f0c040;
    text-decoration: underline;
  }
  .footer-contact {
    min-width: 220px;
  }
  .footer-contact p {
    margin: 0.3rem 0;
    font-size: 0.95rem;
  }
  .footer-contact a {
    color: #b0c8d8;
    text-decoration: none;
  }
  .footer-contact a:hover {
    color: #f0c040;
    text-decoration: underline;
  }
  .footer-disclaimer {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #2f4050;
    text-align: center;
    font-size: 0.85rem;
    color: #9aafc0;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-policy {
      align-items: center;
    }
    .footer-contact {
      text-align: center;
    }
  }

.cookie-cv1 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        background: var(--accent);
        color: var(--accent-contrast);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv1__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv1__text p {
        margin: 0;
        opacity: .95;
    }

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

    .cookie-cv1__actions button {
        border: 1px solid rgba(0, 0, 0, 0.12);
        background: rgba(255, 255, 255, 0.2);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-cv1__actions button[data-choice='accept'] {
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

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

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

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

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

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

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

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

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

    .identity-ux19__stack article {
        border: 1px solid var(--neutral-300);
        border-radius: var(--radius-md);
        background: var(--neutral-100);
        padding: 12px;
    }

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

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

    .identity-ux19__line h3 {
        margin: 0;
    }

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

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

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

.tml-lx8{padding:calc(var(--space-y)*2.95) var(--space-x);background:var(--bg-alt)}
.tml-lx8 .tml-shell{max-width:var(--max-w);margin:0 auto}
.tml-lx8 h2{margin:0 0 .85rem;font-size:clamp(1.76rem,3.2vw,2.48rem)}
.tml-lx8 .tml-duo{display:grid;grid-template-columns:.85fr 1.15fr;gap:var(--gap)}
.tml-lx8 .tml-aside{padding:1rem;border-radius:var(--radius-lg);background:var(--surface-1);border:1px solid var(--border-on-surface)}
.tml-lx8 .tml-aside p{margin:0 0 .34rem;color:var(--fg-on-surface-light)}
.tml-lx8 .tml-aside p strong{color:var(--fg-on-surface)}
.tml-lx8 .tml-events{list-style:none;margin:0;padding:0;display:grid;gap:.54rem}
.tml-lx8 .tml-events li{padding:.82rem;border-radius:var(--radius-md);background:var(--surface-1);border:1px solid var(--border-on-surface)}
.tml-lx8 .tml-events span{display:inline-block;margin-bottom:.2rem;font-weight:700;color:var(--link)}
.tml-lx8 h3{margin:0 0 .2rem;font-size:1rem}
.tml-lx8 .tml-events p{margin:0;color:var(--fg-on-surface-light)}
@media (max-width:860px){.tml-lx8 .tml-duo{grid-template-columns:1fr}}

/* Design tokens utilizate: --brand, --brand-contrast, --accent, --accent-contrast, --neutral-0, --neutral-100, --neutral-300, --neutral-600, --neutral-800, --neutral-900, --bg-page, --fg-on-page, --surface-1, --fg-on-surface, --border-on-surface, --space-x, --space-y, --gap, --radius-md, --radius-lg, --shadow-sm, --shadow-md, --anim-duration, --anim-ease, --max-w */
  
  header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
  }

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

  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .logo:hover {
    color: var(--accent);
  }

  .header-contact {
    display: flex;
    align-items: center;
  }

  .cta-button {
    display: inline-block;
    background: var(--accent);
    color: var(--accent-contrast);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    box-shadow: var(--shadow-sm);
  }

  .cta-button:hover {
    background: var(--bg-accent-hover);
    box-shadow: var(--shadow-md);
  }

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: none;
    border: 1px solid var(--border-on-surface);
    border-radius: var(--radius-md);
    cursor: pointer;
    padding: 0.4rem;
    gap: 4px;
    transition: background var(--anim-duration) var(--anim-ease);
  }

  .burger:hover {
    background: var(--neutral-100);
  }

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

  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }

  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

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

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

  .nav-list a {
    display: block;
    padding: 0.5rem 0;
    color: var(--neutral-800);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    border-bottom: 2px solid transparent;
    transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
  }

  .nav-list a:hover {
    color: var(--brand);
    border-bottom-color: var(--brand);
  }

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

    .header-contact {
      display: none;
    }

    .header-nav {
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
      padding: 0 var(--space-x);
    }

    .header-nav.open {
      max-height: 20rem;
      padding: 0 var(--space-x) var(--space-y);
    }

    .nav-list {
      flex-direction: column;
      gap: 0;
    }

    .nav-list a {
      padding: 0.75rem 0;
      border-bottom: 1px solid var(--border-on-surface);
      width: 100%;
    }

    .nav-list li:last-child a {
      border-bottom: none;
    }
  }

  @media (min-width: 768px) {
    .header-top {
      padding-bottom: 0;
    }

    .header-nav {
      padding-top: 0;
    }
  }

footer {
    background: #1a2a3a;
    color: #e0e8f0;
    padding: 2.5rem 1.5rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
  }
  .footer-brand .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0c040;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .footer-nav a {
    color: #c0d0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #f0c040;
  }
  .footer-policy {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-policy a {
    color: #b0c8d8;
    text-decoration: none;
    font-size: 0.95rem;
  }
  .footer-policy a:hover {
    color: #f0c040;
    text-decoration: underline;
  }
  .footer-contact {
    min-width: 220px;
  }
  .footer-contact p {
    margin: 0.3rem 0;
    font-size: 0.95rem;
  }
  .footer-contact a {
    color: #b0c8d8;
    text-decoration: none;
  }
  .footer-contact a:hover {
    color: #f0c040;
    text-decoration: underline;
  }
  .footer-disclaimer {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #2f4050;
    text-align: center;
    font-size: 0.85rem;
    color: #9aafc0;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-policy {
      align-items: center;
    }
    .footer-contact {
      text-align: center;
    }
  }

.cookie-cv1 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        background: var(--accent);
        color: var(--accent-contrast);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv1__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv1__text p {
        margin: 0;
        opacity: .95;
    }

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

    .cookie-cv1__actions button {
        border: 1px solid rgba(0, 0, 0, 0.12);
        background: rgba(255, 255, 255, 0.2);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-cv1__actions button[data-choice='accept'] {
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

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

.hiw-zigzag-c3 {
        padding: clamp(3.6rem, 8vw, 6.1rem) var(--space-x);
        background: var(--gradient-accent);
        color: var(--accent-contrast);
    }

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

    .hiw-zigzag-c3__head {
        max-width: 42rem;
        margin: 0 auto 1.25rem;
        text-align: center;
    }

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

    .hiw-zigzag-c3__head p {
        margin: .55rem 0 0;

    }

    .hiw-zigzag-c3__grid {
        display: grid;
        gap: var(--gap);
    }

    .hiw-zigzag-c3__grid article {
        width: min(40rem, 60%);
        padding: 1rem;
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, .2);
        backdrop-filter: blur(8px);
    }

    .hiw-zigzag-c3__grid article:nth-child(odd) {
        margin-right: auto;
    }

    .hiw-zigzag-c3__grid article:nth-child(even) {
        margin-left: auto;
    }

    .hiw-zigzag-c3__num {
        display: inline-flex;
        min-width: 2.6rem;
        height: 2.6rem;
        align-items: center;
        justify-content: center;
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        font-weight: 700;
    }

    .hiw-zigzag-c3__grid h3 {
        margin: .75rem 0 .35rem;
    }

    .hiw-zigzag-c3__grid p {
        margin: 0;
        color: rgba(255, 255, 255, .9);
    }

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

.cap-spark-v4{padding:calc(var(--space-y)*2.8) var(--space-x);background:var(--gradient-accent);color:var(--accent-contrast)}
.cap-spark-v4 .shell{max-width:var(--max-w);margin:0 auto;display:grid;grid-template-columns:repeat(12,minmax(0,1fr));gap:var(--gap)}
.cap-spark-v4 .title{grid-column:1/5;padding:1rem;border-radius:var(--radius-lg);background:var(--chip-bg)}
.cap-spark-v4 .title h2{margin:0 0 .45rem}
.cap-spark-v4 .title p{margin:0;opacity:.88}
.cap-spark-v4 .matrix{grid-column:5/13;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:var(--gap)}
.cap-spark-v4 article{padding:1rem;border-radius:var(--radius-md);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover)}
.cap-spark-v4 h3{margin:0 0 .4rem}
.cap-spark-v4 p{margin:0}
.cap-spark-v4 .result{margin-top:.6rem;font-weight:700}
@media (max-width:930px){.cap-spark-v4 .title,.cap-spark-v4 .matrix{grid-column:1/-1}.cap-spark-v4 .matrix{grid-template-columns:1fr}}

/* Design tokens utilizate: --brand, --brand-contrast, --accent, --accent-contrast, --neutral-0, --neutral-100, --neutral-300, --neutral-600, --neutral-800, --neutral-900, --bg-page, --fg-on-page, --surface-1, --fg-on-surface, --border-on-surface, --space-x, --space-y, --gap, --radius-md, --radius-lg, --shadow-sm, --shadow-md, --anim-duration, --anim-ease, --max-w */
  
  header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
  }

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

  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .logo:hover {
    color: var(--accent);
  }

  .header-contact {
    display: flex;
    align-items: center;
  }

  .cta-button {
    display: inline-block;
    background: var(--accent);
    color: var(--accent-contrast);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    box-shadow: var(--shadow-sm);
  }

  .cta-button:hover {
    background: var(--bg-accent-hover);
    box-shadow: var(--shadow-md);
  }

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: none;
    border: 1px solid var(--border-on-surface);
    border-radius: var(--radius-md);
    cursor: pointer;
    padding: 0.4rem;
    gap: 4px;
    transition: background var(--anim-duration) var(--anim-ease);
  }

  .burger:hover {
    background: var(--neutral-100);
  }

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

  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }

  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

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

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

  .nav-list a {
    display: block;
    padding: 0.5rem 0;
    color: var(--neutral-800);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    border-bottom: 2px solid transparent;
    transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
  }

  .nav-list a:hover {
    color: var(--brand);
    border-bottom-color: var(--brand);
  }

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

    .header-contact {
      display: none;
    }

    .header-nav {
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
      padding: 0 var(--space-x);
    }

    .header-nav.open {
      max-height: 20rem;
      padding: 0 var(--space-x) var(--space-y);
    }

    .nav-list {
      flex-direction: column;
      gap: 0;
    }

    .nav-list a {
      padding: 0.75rem 0;
      border-bottom: 1px solid var(--border-on-surface);
      width: 100%;
    }

    .nav-list li:last-child a {
      border-bottom: none;
    }
  }

  @media (min-width: 768px) {
    .header-top {
      padding-bottom: 0;
    }

    .header-nav {
      padding-top: 0;
    }
  }

footer {
    background: #1a2a3a;
    color: #e0e8f0;
    padding: 2.5rem 1.5rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
  }
  .footer-brand .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0c040;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .footer-nav a {
    color: #c0d0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #f0c040;
  }
  .footer-policy {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-policy a {
    color: #b0c8d8;
    text-decoration: none;
    font-size: 0.95rem;
  }
  .footer-policy a:hover {
    color: #f0c040;
    text-decoration: underline;
  }
  .footer-contact {
    min-width: 220px;
  }
  .footer-contact p {
    margin: 0.3rem 0;
    font-size: 0.95rem;
  }
  .footer-contact a {
    color: #b0c8d8;
    text-decoration: none;
  }
  .footer-contact a:hover {
    color: #f0c040;
    text-decoration: underline;
  }
  .footer-disclaimer {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #2f4050;
    text-align: center;
    font-size: 0.85rem;
    color: #9aafc0;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-policy {
      align-items: center;
    }
    .footer-contact {
      text-align: center;
    }
  }

.cookie-cv1 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        background: var(--accent);
        color: var(--accent-contrast);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv1__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv1__text p {
        margin: 0;
        opacity: .95;
    }

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

    .cookie-cv1__actions button {
        border: 1px solid rgba(0, 0, 0, 0.12);
        background: rgba(255, 255, 255, 0.2);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-cv1__actions button[data-choice='accept'] {
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

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

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

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

    .support-ux11__wrap {
        max-width: 920px;
        margin: 0 auto;
    }

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

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

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

    .support-ux11__table {
        border: 1px solid var(--neutral-300);
        border-radius: var(--radius-lg);
        overflow: hidden;
    }

    .support-ux11__table article {
        display: grid;
        grid-template-columns: .8fr 1.2fr;
        gap: 12px;
        padding: 12px;
        border-bottom: 1px solid var(--neutral-300);
        background: var(--neutral-100);
    }

    .support-ux11__table article:last-child {
        border-bottom: 0;
    }

    .support-ux11__table h3 {
        margin: 0;
        color: var(--brand);
        font-size: 1rem;
    }

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

    .support-ux11__table a {
        color: var(--link);
        text-decoration: underline;
    }

    .support-ux11__table a:hover {
        color: var(--link-hover);
    }

    @media (max-width: 700px) {
        .support-ux11__table article {
            grid-template-columns: 1fr;
        }
    }

.nftouch-v9 {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 3vw, 36px);
        background: linear-gradient(160deg, var(--bg-primary), var(--bg-primary-hover));
        color: var(--fg-on-primary);
    }

    .nftouch-v9__wrap {
        max-width: 980px;
        margin: 0 auto;
    }

    .nftouch-v9__head {
        margin-bottom: 12px;
    }

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

    .nftouch-v9__head p {
        margin: 10px 0 0;
        opacity: .9;
    }

    .nftouch-v9__stream {
        display: grid;
        gap: 8px;
    }

    .nftouch-v9__stream a {
        text-decoration: none;
        color: var(--fg-on-primary);
        border: 1px solid rgba(255, 255, 255, .3);
        border-radius: 999px;
        background: rgba(255, 255, 255, .1);
        padding: 10px 12px;
        display: flex;
        justify-content: space-between;
        gap: 10px;
        align-items: center;
    }

    .nftouch-v9__stream span {
        opacity: .86;
        white-space: nowrap;
    }

    .nftouch-v9__foot {
        margin-top: 12px;
    }

    .nftouch-v9__foot a {
        text-decoration: none;
        color: var(--fg-on-primary);
        border: 1px solid rgba(255, 255, 255, .45);
        border-radius: var(--radius-md);
        padding: 10px 14px;
        display: inline-block;
    }

    @media (max-width: 700px) {
        .nftouch-v9__stream a {
            flex-direction: column;
            align-items: flex-start;
            border-radius: var(--radius-md);
        }

        .nftouch-v9__stream span {
            white-space: normal;
        }
    }

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

/* Design tokens utilizate: --brand, --brand-contrast, --accent, --accent-contrast, --neutral-0, --neutral-100, --neutral-300, --neutral-600, --neutral-800, --neutral-900, --bg-page, --fg-on-page, --surface-1, --fg-on-surface, --border-on-surface, --space-x, --space-y, --gap, --radius-md, --radius-lg, --shadow-sm, --shadow-md, --anim-duration, --anim-ease, --max-w */
  
  header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
  }

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

  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .logo:hover {
    color: var(--accent);
  }

  .header-contact {
    display: flex;
    align-items: center;
  }

  .cta-button {
    display: inline-block;
    background: var(--accent);
    color: var(--accent-contrast);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    box-shadow: var(--shadow-sm);
  }

  .cta-button:hover {
    background: var(--bg-accent-hover);
    box-shadow: var(--shadow-md);
  }

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: none;
    border: 1px solid var(--border-on-surface);
    border-radius: var(--radius-md);
    cursor: pointer;
    padding: 0.4rem;
    gap: 4px;
    transition: background var(--anim-duration) var(--anim-ease);
  }

  .burger:hover {
    background: var(--neutral-100);
  }

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

  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }

  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

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

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

  .nav-list a {
    display: block;
    padding: 0.5rem 0;
    color: var(--neutral-800);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    border-bottom: 2px solid transparent;
    transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
  }

  .nav-list a:hover {
    color: var(--brand);
    border-bottom-color: var(--brand);
  }

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

    .header-contact {
      display: none;
    }

    .header-nav {
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
      padding: 0 var(--space-x);
    }

    .header-nav.open {
      max-height: 20rem;
      padding: 0 var(--space-x) var(--space-y);
    }

    .nav-list {
      flex-direction: column;
      gap: 0;
    }

    .nav-list a {
      padding: 0.75rem 0;
      border-bottom: 1px solid var(--border-on-surface);
      width: 100%;
    }

    .nav-list li:last-child a {
      border-bottom: none;
    }
  }

  @media (min-width: 768px) {
    .header-top {
      padding-bottom: 0;
    }

    .header-nav {
      padding-top: 0;
    }
  }

footer {
    background: #1a2a3a;
    color: #e0e8f0;
    padding: 2.5rem 1.5rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
  }
  .footer-brand .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0c040;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .footer-nav a {
    color: #c0d0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #f0c040;
  }
  .footer-policy {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-policy a {
    color: #b0c8d8;
    text-decoration: none;
    font-size: 0.95rem;
  }
  .footer-policy a:hover {
    color: #f0c040;
    text-decoration: underline;
  }
  .footer-contact {
    min-width: 220px;
  }
  .footer-contact p {
    margin: 0.3rem 0;
    font-size: 0.95rem;
  }
  .footer-contact a {
    color: #b0c8d8;
    text-decoration: none;
  }
  .footer-contact a:hover {
    color: #f0c040;
    text-decoration: underline;
  }
  .footer-disclaimer {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #2f4050;
    text-align: center;
    font-size: 0.85rem;
    color: #9aafc0;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-policy {
      align-items: center;
    }
    .footer-contact {
      text-align: center;
    }
  }

.cookie-cv1 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        background: var(--accent);
        color: var(--accent-contrast);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv1__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv1__text p {
        margin: 0;
        opacity: .95;
    }

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

    .cookie-cv1__actions button {
        border: 1px solid rgba(0, 0, 0, 0.12);
        background: rgba(255, 255, 255, 0.2);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-cv1__actions button[data-choice='accept'] {
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

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

.pol-lx6{padding:calc(var(--space-y)*2.65) var(--space-x)}
.pol-lx6 .pol-grid{max-width:var(--max-w);margin:0 auto;display:grid;grid-template-columns:repeat(12,minmax(0,1fr));gap:.6rem}
.pol-lx6 .pol-main{grid-column:span 12;padding:1rem;border-radius:var(--radius-xl);background:var(--surface-1);border:1px solid var(--border-on-surface)}
.pol-lx6 .pol-main h2{margin:0;font-size:clamp(1.75rem,3.2vw,2.45rem)}
.pol-lx6 .pol-main p{margin:.38rem 0 0;color:var(--fg-on-surface-light)}
.pol-lx6 .pol-card{grid-column:span 4;padding:.85rem;border-radius:var(--radius-md);background:var(--surface-2);border:1px solid var(--border-on-surface)}
.pol-lx6 .pol-card h3{margin:0 0 .22rem;font-size:1rem}
.pol-lx6 .pol-card p{margin:0;color:var(--fg-on-surface-light)}
.pol-lx6 .pol-foot{grid-column:span 12;padding:.85rem;border-radius:var(--radius-md);background:color-mix(in srgb,var(--surface-1) 86%, var(--bg-accent) 14%);border:1px solid var(--border-on-surface)}
.pol-lx6 .pol-foot h3{margin:0 0 .2rem}
.pol-lx6 .pol-foot p{margin:0}
@media (max-width:920px){.pol-lx6 .pol-card{grid-column:span 6}}@media (max-width:620px){.pol-lx6 .pol-card{grid-column:1/-1}}

/* Design tokens utilizate: --brand, --brand-contrast, --accent, --accent-contrast, --neutral-0, --neutral-100, --neutral-300, --neutral-600, --neutral-800, --neutral-900, --bg-page, --fg-on-page, --surface-1, --fg-on-surface, --border-on-surface, --space-x, --space-y, --gap, --radius-md, --radius-lg, --shadow-sm, --shadow-md, --anim-duration, --anim-ease, --max-w */
  
  header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
  }

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

  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .logo:hover {
    color: var(--accent);
  }

  .header-contact {
    display: flex;
    align-items: center;
  }

  .cta-button {
    display: inline-block;
    background: var(--accent);
    color: var(--accent-contrast);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    box-shadow: var(--shadow-sm);
  }

  .cta-button:hover {
    background: var(--bg-accent-hover);
    box-shadow: var(--shadow-md);
  }

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: none;
    border: 1px solid var(--border-on-surface);
    border-radius: var(--radius-md);
    cursor: pointer;
    padding: 0.4rem;
    gap: 4px;
    transition: background var(--anim-duration) var(--anim-ease);
  }

  .burger:hover {
    background: var(--neutral-100);
  }

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

  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }

  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

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

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

  .nav-list a {
    display: block;
    padding: 0.5rem 0;
    color: var(--neutral-800);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    border-bottom: 2px solid transparent;
    transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
  }

  .nav-list a:hover {
    color: var(--brand);
    border-bottom-color: var(--brand);
  }

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

    .header-contact {
      display: none;
    }

    .header-nav {
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
      padding: 0 var(--space-x);
    }

    .header-nav.open {
      max-height: 20rem;
      padding: 0 var(--space-x) var(--space-y);
    }

    .nav-list {
      flex-direction: column;
      gap: 0;
    }

    .nav-list a {
      padding: 0.75rem 0;
      border-bottom: 1px solid var(--border-on-surface);
      width: 100%;
    }

    .nav-list li:last-child a {
      border-bottom: none;
    }
  }

  @media (min-width: 768px) {
    .header-top {
      padding-bottom: 0;
    }

    .header-nav {
      padding-top: 0;
    }
  }

footer {
    background: #1a2a3a;
    color: #e0e8f0;
    padding: 2.5rem 1.5rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
  }
  .footer-brand .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0c040;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .footer-nav a {
    color: #c0d0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #f0c040;
  }
  .footer-policy {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-policy a {
    color: #b0c8d8;
    text-decoration: none;
    font-size: 0.95rem;
  }
  .footer-policy a:hover {
    color: #f0c040;
    text-decoration: underline;
  }
  .footer-contact {
    min-width: 220px;
  }
  .footer-contact p {
    margin: 0.3rem 0;
    font-size: 0.95rem;
  }
  .footer-contact a {
    color: #b0c8d8;
    text-decoration: none;
  }
  .footer-contact a:hover {
    color: #f0c040;
    text-decoration: underline;
  }
  .footer-disclaimer {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #2f4050;
    text-align: center;
    font-size: 0.85rem;
    color: #9aafc0;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-policy {
      align-items: center;
    }
    .footer-contact {
      text-align: center;
    }
  }

.cookie-cv1 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        background: var(--accent);
        color: var(--accent-contrast);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv1__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv1__text p {
        margin: 0;
        opacity: .95;
    }

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

    .cookie-cv1__actions button {
        border: 1px solid rgba(0, 0, 0, 0.12);
        background: rgba(255, 255, 255, 0.2);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-cv1__actions button[data-choice='accept'] {
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

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

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

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

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

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

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

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

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

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

/* Design tokens utilizate: --brand, --brand-contrast, --accent, --accent-contrast, --neutral-0, --neutral-100, --neutral-300, --neutral-600, --neutral-800, --neutral-900, --bg-page, --fg-on-page, --surface-1, --fg-on-surface, --border-on-surface, --space-x, --space-y, --gap, --radius-md, --radius-lg, --shadow-sm, --shadow-md, --anim-duration, --anim-ease, --max-w */
  
  header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
  }

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

  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .logo:hover {
    color: var(--accent);
  }

  .header-contact {
    display: flex;
    align-items: center;
  }

  .cta-button {
    display: inline-block;
    background: var(--accent);
    color: var(--accent-contrast);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    box-shadow: var(--shadow-sm);
  }

  .cta-button:hover {
    background: var(--bg-accent-hover);
    box-shadow: var(--shadow-md);
  }

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: none;
    border: 1px solid var(--border-on-surface);
    border-radius: var(--radius-md);
    cursor: pointer;
    padding: 0.4rem;
    gap: 4px;
    transition: background var(--anim-duration) var(--anim-ease);
  }

  .burger:hover {
    background: var(--neutral-100);
  }

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

  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }

  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

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

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

  .nav-list a {
    display: block;
    padding: 0.5rem 0;
    color: var(--neutral-800);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    border-bottom: 2px solid transparent;
    transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
  }

  .nav-list a:hover {
    color: var(--brand);
    border-bottom-color: var(--brand);
  }

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

    .header-contact {
      display: none;
    }

    .header-nav {
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
      padding: 0 var(--space-x);
    }

    .header-nav.open {
      max-height: 20rem;
      padding: 0 var(--space-x) var(--space-y);
    }

    .nav-list {
      flex-direction: column;
      gap: 0;
    }

    .nav-list a {
      padding: 0.75rem 0;
      border-bottom: 1px solid var(--border-on-surface);
      width: 100%;
    }

    .nav-list li:last-child a {
      border-bottom: none;
    }
  }

  @media (min-width: 768px) {
    .header-top {
      padding-bottom: 0;
    }

    .header-nav {
      padding-top: 0;
    }
  }

footer {
    background: #1a2a3a;
    color: #e0e8f0;
    padding: 2.5rem 1.5rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
  }
  .footer-brand .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0c040;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .footer-nav a {
    color: #c0d0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #f0c040;
  }
  .footer-policy {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-policy a {
    color: #b0c8d8;
    text-decoration: none;
    font-size: 0.95rem;
  }
  .footer-policy a:hover {
    color: #f0c040;
    text-decoration: underline;
  }
  .footer-contact {
    min-width: 220px;
  }
  .footer-contact p {
    margin: 0.3rem 0;
    font-size: 0.95rem;
  }
  .footer-contact a {
    color: #b0c8d8;
    text-decoration: none;
  }
  .footer-contact a:hover {
    color: #f0c040;
    text-decoration: underline;
  }
  .footer-disclaimer {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #2f4050;
    text-align: center;
    font-size: 0.85rem;
    color: #9aafc0;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-policy {
      align-items: center;
    }
    .footer-contact {
      text-align: center;
    }
  }

.cookie-cv1 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        background: var(--accent);
        color: var(--accent-contrast);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv1__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv1__text p {
        margin: 0;
        opacity: .95;
    }

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

    .cookie-cv1__actions button {
        border: 1px solid rgba(0, 0, 0, 0.12);
        background: rgba(255, 255, 255, 0.2);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-cv1__actions button[data-choice='accept'] {
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

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

.thank-u7{padding:calc(var(--space-y)*2.9) var(--space-x);background:var(--gradient-accent);color:var(--brand-contrast)} .thank-u7 .shell{max-width:var(--max-w);margin:0 auto;display:grid;gap:var(--gap)} .thank-u7 h2{margin:0;font-size:clamp(1.85rem,3.6vw,2.8rem);line-height:1.1} .thank-u7 .sub{margin:.35rem 0 0;opacity:.9;} .thank-u7 article,.thank-u7 li{padding:.85rem;border-radius:var(--radius-sm);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);list-style:none} .thank-u7 p{margin:0} .thank-u7 a{text-decoration:none;color:inherit;font-weight:700} .thank-u7 .ranks{counter-reset:r;display:grid;gap:.5rem} .thank-u7 .ranks article{position:relative;padding-left:2.2rem} .thank-u7 .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} .thank-u7 article{transition:transform var(--anim-duration) var(--anim-ease),box-shadow var(--anim-duration) var(--anim-ease)} .thank-u7 article:hover{transform:translateY(-4px);box-shadow:var(--shadow-md)} @media (max-width:860px){.thank-u7 .split,.thank-u7 .media,.thank-u7 .grid,.thank-u7 .cards,.thank-u7 .bento,.thank-u7 .foot{grid-template-columns:1fr}}

/* Design tokens utilizate: --brand, --brand-contrast, --accent, --accent-contrast, --neutral-0, --neutral-100, --neutral-300, --neutral-600, --neutral-800, --neutral-900, --bg-page, --fg-on-page, --surface-1, --fg-on-surface, --border-on-surface, --space-x, --space-y, --gap, --radius-md, --radius-lg, --shadow-sm, --shadow-md, --anim-duration, --anim-ease, --max-w */
  
  header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
  }

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

  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .logo:hover {
    color: var(--accent);
  }

  .header-contact {
    display: flex;
    align-items: center;
  }

  .cta-button {
    display: inline-block;
    background: var(--accent);
    color: var(--accent-contrast);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    box-shadow: var(--shadow-sm);
  }

  .cta-button:hover {
    background: var(--bg-accent-hover);
    box-shadow: var(--shadow-md);
  }

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: none;
    border: 1px solid var(--border-on-surface);
    border-radius: var(--radius-md);
    cursor: pointer;
    padding: 0.4rem;
    gap: 4px;
    transition: background var(--anim-duration) var(--anim-ease);
  }

  .burger:hover {
    background: var(--neutral-100);
  }

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

  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }

  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

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

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

  .nav-list a {
    display: block;
    padding: 0.5rem 0;
    color: var(--neutral-800);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    border-bottom: 2px solid transparent;
    transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
  }

  .nav-list a:hover {
    color: var(--brand);
    border-bottom-color: var(--brand);
  }

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

    .header-contact {
      display: none;
    }

    .header-nav {
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
      padding: 0 var(--space-x);
    }

    .header-nav.open {
      max-height: 20rem;
      padding: 0 var(--space-x) var(--space-y);
    }

    .nav-list {
      flex-direction: column;
      gap: 0;
    }

    .nav-list a {
      padding: 0.75rem 0;
      border-bottom: 1px solid var(--border-on-surface);
      width: 100%;
    }

    .nav-list li:last-child a {
      border-bottom: none;
    }
  }

  @media (min-width: 768px) {
    .header-top {
      padding-bottom: 0;
    }

    .header-nav {
      padding-top: 0;
    }
  }

footer {
    background: #1a2a3a;
    color: #e0e8f0;
    padding: 2.5rem 1.5rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
  }
  .footer-brand .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0c040;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .footer-nav a {
    color: #c0d0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #f0c040;
  }
  .footer-policy {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-policy a {
    color: #b0c8d8;
    text-decoration: none;
    font-size: 0.95rem;
  }
  .footer-policy a:hover {
    color: #f0c040;
    text-decoration: underline;
  }
  .footer-contact {
    min-width: 220px;
  }
  .footer-contact p {
    margin: 0.3rem 0;
    font-size: 0.95rem;
  }
  .footer-contact a {
    color: #b0c8d8;
    text-decoration: none;
  }
  .footer-contact a:hover {
    color: #f0c040;
    text-decoration: underline;
  }
  .footer-disclaimer {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #2f4050;
    text-align: center;
    font-size: 0.85rem;
    color: #9aafc0;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-policy {
      align-items: center;
    }
    .footer-contact {
      text-align: center;
    }
  }

.cookie-cv1 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        background: var(--accent);
        color: var(--accent-contrast);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv1__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv1__text p {
        margin: 0;
        opacity: .95;
    }

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

    .cookie-cv1__actions button {
        border: 1px solid rgba(0, 0, 0, 0.12);
        background: rgba(255, 255, 255, 0.2);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-cv1__actions button[data-choice='accept'] {
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

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

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

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

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

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

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

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