:root {
  --font-family: "Cormorant Garamond", sans-serif;
  --font-size-base: 17px;
  --line-height-base: 1.47;

  --max-w: 1040px;
  --space-x: 1.29rem;
  --space-y: 1.46rem;
  --gap: 1.01rem;

  --radius-xl: 1.27rem;
  --radius-lg: 0.95rem;
  --radius-md: 0.5rem;
  --radius-sm: 0.26rem;

  --shadow-sm: 0 2px 4px rgba(0,0,0,0.24);
  --shadow-md: 0 12px 30px rgba(0,0,0,0.31);
  --shadow-lg: 0 18px 38px rgba(0,0,0,0.37);

  --overlay: rgba(0,0,0,0.7);
  --anim-duration: 140ms;
  --anim-ease: cubic-bezier(0.16,1,0.3,1);
  --random-number: 2;

  --brand: #d4a017;
  --brand-contrast: #1a1a2e;
  --accent: #c0392b;
  --accent-contrast: #ffffff;

  --neutral-0: #0d0d1a;
  --neutral-100: #1a1a2e;
  --neutral-300: #2d2d44;
  --neutral-600: #8e8ea0;
  --neutral-800: #c0c0cc;
  --neutral-900: #f0f0f5;

  --bg-page: #0d0d1a;
  --fg-on-page: #f0f0f5;

  --bg-alt: #1a1a2e;
  --fg-on-alt: #c0c0cc;

  --surface-1: #1a1a2e;
  --surface-2: #2d2d44;
  --fg-on-surface: #f0f0f5;
  --border-on-surface: #3d3d54;

  --surface-light: #2d2d44;
  --fg-on-surface-light: #f0f0f5;
  --border-on-surface-light: #4a4a64;

  --bg-primary: #d4a017;
  --fg-on-primary: #1a1a2e;
  --bg-primary-hover: #e6b422;
  --ring: #d4a017;

  --bg-accent: #c0392b;
  --fg-on-accent: #ffffff;
  --bg-accent-hover: #e74c3c;

  --link: #d4a017;
  --link-hover: #e6b422;

  --gradient-hero: linear-gradient(135deg, #0d0d1a 0%, #1a1a2e 50%, #2d2d44 100%);
  --gradient-accent: linear-gradient(135deg, #d4a017 0%, #c0392b 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 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--surface-1, #ffffff);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.1));
    padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
  }

  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap, 1rem);
  }

  .logo {
    font-size: calc(var(--font-size-base, 1rem) * 1.25);
    font-weight: 700;
    color: var(--brand, #e63946);
    text-decoration: none;
    letter-spacing: 0.02em;
    white-space: nowrap;
    transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .logo:hover {
    color: var(--brand-contrast, #1d3557);
  }

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

  .nav-link {
    text-decoration: none;
    color: var(--fg-on-surface, #1d3557);
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md, 8px);
    transition: background var(--anim-duration, 0.3s) var(--anim-ease, ease), color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .nav-link:hover,
  .nav-link:focus-visible {
    background: var(--btn-ghost-bg-hover, rgba(230, 57, 70, 0.1));
    color: var(--brand, #e63946);
    outline: none;
  }

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm, 4px);
    transition: background var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .burger:hover {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
  }

  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-surface, #1d3557);
    border-radius: 2px;
    transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .burger-line + .burger-line {
    margin-top: 5px;
  }

  /* Burger animat */
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

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

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

  /* Mobile */
  @media (max-width: 767px) {
    .header-inner {
      justify-content: space-between;
    }

    .burger {
      display: flex;
      order: -1;
    }

    .logo {
      order: 0;
      flex: 1;
      text-align: center;
    }

    .nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: var(--surface-1, #ffffff);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: opacity var(--anim-duration, 0.3s) var(--anim-ease, ease), visibility var(--anim-duration, 0.3s) var(--anim-ease, ease);
      z-index: 999;
    }

    .nav.open {
      opacity: 1;
      visibility: visible;
    }

    .nav-list {
      flex-direction: column;
      gap: calc(var(--gap, 1rem) * 1.5);
      text-align: center;
    }

    .nav-link {
      font-size: calc(var(--font-size-base, 1rem) * 1.25);
      padding: 0.75rem 1.5rem;
      display: inline-block;
    }
  }

  /* Desktop */
  @media (min-width: 768px) {
    .burger {
      display: none;
    }

    .nav {
      position: static;
      opacity: 1;
      visibility: visible;
      height: auto;
      background: transparent;
      display: flex;
      align-items: center;
      justify-content: flex-end;
    }

    .nav-list {
      flex-direction: row;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: Arial, Helvetica, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
  }
  .footer-brand .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f5a623;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f5a623;
  }
  .footer-middle {
    margin-bottom: 1.5rem;
    border-top: 1px solid #333;
    padding-top: 1.5rem;
  }
  .contact-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
  }
  .contact-info li {
    font-size: 0.95rem;
    color: #ccc;
  }
  .contact-info a {
    color: #f5a623;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    text-align: center;
  }
  .footer-bottom .copyright {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: #aaa;
  }
  .footer-bottom .disclaimer {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.4;
    max-width: 800px;
    margin: 0 auto;
  }
  .footer-bottom .disclaimer a {
    color: #f5a623;
    text-decoration: none;
  }
  .footer-bottom .disclaimer a:hover {
    text-decoration: underline;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      text-align: center;
      gap: 1rem;
    }
    .footer-nav ul {
      justify-content: center;
      gap: 1rem;
    }
    .contact-info ul {
      flex-direction: column;
      align-items: center;
      gap: 0.75rem;
    }
  }

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

    .nfcookie-v11__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, .45), rgba(17, 24, 39, .95));
        color: var(--neutral-100);
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, .35);
    }

    .nfcookie-v11__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .nfcookie-v11__top strong {font-size: 16px;}

    .nfcookie-v11__top button {
        border: 0;
        background: transparent;
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
        cursor: pointer;
    }

    .nfcookie-v11 p {margin: 10px 0 0; color: #d1d5db;}

    .nfcookie-v11__actions {margin-top: 14px; display: flex; gap: 8px;}

    .nfcookie-v11__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, .45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, .65);
        cursor: pointer;
    }

    .nfcookie-v11__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v11__card {max-width: none;}
    }

.intro-metrics-l4 {
        padding: clamp(3.6rem, 8vw, 6.6rem) var(--space-x);
        background: linear-gradient(180deg, var(--surface-1), var(--bg-alt));
        color: var(--fg-on-page);
    }

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

    .intro-metrics-l4__copy {
        text-align: center;
        max-width: 44rem;
        margin: 0 auto;
    }

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

    .intro-metrics-l4__copy h1 {
        margin: .6rem 0 0;
        font-size: clamp(2.4rem, 5vw, 4.2rem);
        line-height: 1.04;
    }

    .intro-metrics-l4__copy span {
        display: block;
        margin-top: .9rem;
        color: var(--neutral-600);
    }

    .intro-metrics-l4__stats {
        margin-top: 1.3rem;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
        gap: var(--gap);
    }

    .intro-metrics-l4__stats article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
        text-align: center;
    }

    .intro-metrics-l4__stats strong {
        display: block;
        font-size: 1.6rem;
        color: var(--brand);
    }

    .intro-metrics-l4__stats span {
        display: block;
        margin-top: .35rem;
        color: var(--neutral-600);
    }

    .intro-metrics-l4__footer {
        margin-top: 1rem;
        text-align: center;
        color: var(--neutral-800);
    }

.cta-struct-v3 {
        padding: calc(var(--space-y) * 1.9) var(--space-x);
        background: var(--gradient-hero);
        color: var(--brand-contrast)
    }

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

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

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

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

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

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

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

    .cta-struct-v3 .actions a, .cta-struct-v3 .center a, .cta-struct-v3 .banner > a, .cta-struct-v3 .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-v3 .banner {
        display: grid;
        gap: .6rem
    }

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

    .cta-struct-v3 .numbers div {
        padding: .6rem;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light)
    }

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

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

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

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

    .cta-struct-v3 .chips span {
        padding: .28rem .5rem;
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light)
    }

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

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

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

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

.faq-layout-d {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: white;
        color: black;
    }

    .faq-layout-d .wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

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

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

    .faq-layout-d .section-head p {
        margin: 10px auto 0;
        max-width: 68ch;
    }

    .faq-layout-d .cards {
        display: grid;
        gap: var(--gap);
        grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    }

    .faq-layout-d .card {
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, .22);
        background: var(--accent);
        color: var(--accent-contrast);
        padding: var(--space-y) var(--space-x);
    }

    .faq-layout-d .card h3 {
        margin: 0;
        font-size: 1.05rem;
    }

    .faq-layout-d .card p {
        margin: 9px 0 0;
        color: var(--neutral-100);
    }

.clarifications-c2 {

        padding: clamp(18px, 3vw, 44px);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

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

    .clarifications-c2__h {
        margin-bottom: clamp(14px, 2.2vw, 22px);
    }

    .clarifications-c2__title {
        margin: 0;
        font-size: clamp(24px, 4.4vw, 42px);
        letter-spacing: -.02em;
        line-height: 1.1;
    }

    .clarifications-c2__sub {
        margin: 10px 0 0;
        max-width: 70ch;
        color: rgba(255, 255, 255, .82);
    }

    .clarifications-c2__rail {
        position: relative;
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.16);
        box-shadow: var(--shadow-lg);
        overflow: hidden;
    }

    /* Световой “луч” двигается постоянно */
    .clarifications-c2__beam {
        position: absolute;
        top: 0;
        left: 0;
        width: 48%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
        transform: translateX(-120%);
        animation: c2Beam 6.2s linear infinite;
        pointer-events: none;
    }

    @keyframes c2Beam {
        0% {
            transform: translateX(-120%)
        }
        55% {
            transform: translateX(160%)
        }
        100% {
            transform: translateX(160%)
        }
    }

    .clarifications-c2__list {
        display: grid;
        gap: 10px;
        padding: 12px;
    }

    .clarifications-c2__row {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 12px;
        padding: 12px 14px;
        border-radius: var(--radius-lg);
        background: rgba(0, 0, 0, 0.14);
        border: 1px solid rgba(255, 255, 255, 0.12);
        transition: transform var(--anim-duration) var(--anim-ease), background var(--anim-duration) var(--anim-ease);
    }

    .clarifications-c2__row.is-hot {
        transform: translateY(-2px);
        background: rgba(255, 255, 255, 0.12);
    }

    .clarifications-c2__tag {
        align-self: start;
        padding: 8px 10px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.10);
        border: 1px solid rgba(255, 255, 255, 0.16);
        font-weight: 800;
        white-space: nowrap;
        color: rgba(255, 255, 255, .92);
    }

    .clarifications-c2__q {
        font-weight: 900;
        letter-spacing: -.01em;
        margin-bottom: 6px;
    }

    .clarifications-c2__a {
        color: rgba(255, 255, 255, .82);
        line-height: var(--line-height-base);
    }

    @media (max-width: 720px) {
        .clarifications-c2__row {
            grid-template-columns:1fr
        }

        .clarifications-c2__tag {
            justify-self: start
        }
    }

    @media (prefers-reduced-motion: reduce) {
        .clarifications-c2__beam {
            animation: none;
        }
    }

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

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

    .values-papers-l6__head {
        margin-bottom: 1.1rem;
    }

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

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

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

    .values-papers-l6__grid article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border: 1px dashed var(--border-on-surface-light);
    }

    .values-papers-l6__grid div {
        font-size: 1.25rem;
    }

    .values-papers-l6__grid h3 {
        margin: .75rem 0 .35rem;
    }

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

    .values-papers-l6__grid small {
        display: block;
        margin-top: .55rem;
        color: var(--neutral-800);
    }

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--surface-1, #ffffff);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.1));
    padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
  }

  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap, 1rem);
  }

  .logo {
    font-size: calc(var(--font-size-base, 1rem) * 1.25);
    font-weight: 700;
    color: var(--brand, #e63946);
    text-decoration: none;
    letter-spacing: 0.02em;
    white-space: nowrap;
    transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .logo:hover {
    color: var(--brand-contrast, #1d3557);
  }

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

  .nav-link {
    text-decoration: none;
    color: var(--fg-on-surface, #1d3557);
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md, 8px);
    transition: background var(--anim-duration, 0.3s) var(--anim-ease, ease), color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .nav-link:hover,
  .nav-link:focus-visible {
    background: var(--btn-ghost-bg-hover, rgba(230, 57, 70, 0.1));
    color: var(--brand, #e63946);
    outline: none;
  }

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm, 4px);
    transition: background var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .burger:hover {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
  }

  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-surface, #1d3557);
    border-radius: 2px;
    transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .burger-line + .burger-line {
    margin-top: 5px;
  }

  /* Burger animat */
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

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

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

  /* Mobile */
  @media (max-width: 767px) {
    .header-inner {
      justify-content: space-between;
    }

    .burger {
      display: flex;
      order: -1;
    }

    .logo {
      order: 0;
      flex: 1;
      text-align: center;
    }

    .nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: var(--surface-1, #ffffff);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: opacity var(--anim-duration, 0.3s) var(--anim-ease, ease), visibility var(--anim-duration, 0.3s) var(--anim-ease, ease);
      z-index: 999;
    }

    .nav.open {
      opacity: 1;
      visibility: visible;
    }

    .nav-list {
      flex-direction: column;
      gap: calc(var(--gap, 1rem) * 1.5);
      text-align: center;
    }

    .nav-link {
      font-size: calc(var(--font-size-base, 1rem) * 1.25);
      padding: 0.75rem 1.5rem;
      display: inline-block;
    }
  }

  /* Desktop */
  @media (min-width: 768px) {
    .burger {
      display: none;
    }

    .nav {
      position: static;
      opacity: 1;
      visibility: visible;
      height: auto;
      background: transparent;
      display: flex;
      align-items: center;
      justify-content: flex-end;
    }

    .nav-list {
      flex-direction: row;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: Arial, Helvetica, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
  }
  .footer-brand .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f5a623;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f5a623;
  }
  .footer-middle {
    margin-bottom: 1.5rem;
    border-top: 1px solid #333;
    padding-top: 1.5rem;
  }
  .contact-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
  }
  .contact-info li {
    font-size: 0.95rem;
    color: #ccc;
  }
  .contact-info a {
    color: #f5a623;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    text-align: center;
  }
  .footer-bottom .copyright {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: #aaa;
  }
  .footer-bottom .disclaimer {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.4;
    max-width: 800px;
    margin: 0 auto;
  }
  .footer-bottom .disclaimer a {
    color: #f5a623;
    text-decoration: none;
  }
  .footer-bottom .disclaimer a:hover {
    text-decoration: underline;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      text-align: center;
      gap: 1rem;
    }
    .footer-nav ul {
      justify-content: center;
      gap: 1rem;
    }
    .contact-info ul {
      flex-direction: column;
      align-items: center;
      gap: 0.75rem;
    }
  }

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

    .nfcookie-v11__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, .45), rgba(17, 24, 39, .95));
        color: var(--neutral-100);
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, .35);
    }

    .nfcookie-v11__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .nfcookie-v11__top strong {font-size: 16px;}

    .nfcookie-v11__top button {
        border: 0;
        background: transparent;
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
        cursor: pointer;
    }

    .nfcookie-v11 p {margin: 10px 0 0; color: #d1d5db;}

    .nfcookie-v11__actions {margin-top: 14px; display: flex; gap: 8px;}

    .nfcookie-v11__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, .45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, .65);
        cursor: pointer;
    }

    .nfcookie-v11__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v11__card {max-width: none;}
    }

.profile {

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

    .profile .profile__c {
        max-width: 900px;
        margin: 0 auto;
    }

    .profile .profile__h {
        text-align: center;
        margin-bottom: clamp(32px, 5vw, 48px);
    }

    .profile h1 {
        font-size: clamp(32px, 6vw, 56px);
        margin: 0 0 0.75rem;
        color: var(--fg-on-page);
        font-weight: 700;
    }

    .profile .profile__h p {
        font-size: clamp(16px, 2.4vw, 20px);
        color: var(--neutral-600);
        margin: 0;
    }

    .profile .profile__card {
        background: var(--surface-light);
        border: 2px solid var(--border-on-surface-light);
        border-radius: var(--radius-xl);
        padding: clamp(32px, 4vw, 48px);
        box-shadow: var(--shadow-lg);
    }

    .profile .profile__header {
        display: flex;
        gap: clamp(24px, 4vw, 32px);
        align-items: center;
        margin-bottom: clamp(32px, 4vw, 40px);
        padding-bottom: clamp(24px, 4vw, 32px);
        border-bottom: 2px solid var(--border-on-surface-light);
    }

    /* Dacă randomNumber este par (2) - primul copil primește order: 2 */
    .profile .profile__header > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    @media (max-width: 767px) {
        .profile .profile__header {
            flex-direction: column;
            text-align: center;
        }
    }

    .profile .profile__avatar-wrapper {
        position: relative;
        flex-shrink: 0;
    }

    .profile .profile__avatar {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2.5rem;
        font-weight: 700;
        border: 4px solid var(--ring);
        box-shadow: var(--shadow-md);
    }

    .profile .profile__avatar-overlay {
        position: absolute;
        bottom: 0;
        right: 0;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        border: 3px solid var(--bg-page);
        box-shadow: var(--shadow-md);
    }

    .profile .profile__avatar-overlay input {
        display: none;
    }

    .profile .profile__avatar-overlay:hover {
        transform: scale(1.1);
        box-shadow: var(--shadow-lg);
    }

    .profile .profile__avatar-icon {
        font-size: 1.125rem;
    }

    .profile .profile__header-info {
        flex: 1;
    }

    .profile .profile__header-info h2 {
        margin: 0 0 0.5rem;
        font-size: clamp(24px, 3.5vw, 28px);
        color: var(--fg-on-page);
        font-weight: 700;
    }

    .profile .profile__role {
        margin: 0;
        color: var(--neutral-600);
        font-size: 1rem;
    }

    .profile .profile__form {
        display: flex;
        flex-direction: column;
        gap: clamp(32px, 4vw, 40px);
    }

    /* Dacă randomNumber este par (2) - primul copil primește order: 2 */
    .profile .profile__form > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    .profile .profile__form-section {
        padding-bottom: clamp(24px, 4vw, 32px);
        border-bottom: 1px solid var(--border-on-surface-light);
    }

    .profile .profile__form-section:last-of-type {
        border-bottom: none;
        padding-bottom: 0;
    }

    .profile .profile__form-section h3 {
        margin: 0 0 clamp(20px, 3vw, 24px);
        font-size: clamp(20px, 2.8vw, 24px);
        color: var(--fg-on-page);
        font-weight: 700;
    }

    .profile .profile__form-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: clamp(20px, 3vw, 24px);
    }

    /* Dacă randomNumber este par (2) - primul copil primește order: 2 */
    .profile .profile__form-grid > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    @media (max-width: 767px) {
        .profile .profile__form-grid {
            grid-template-columns: 1fr;
        }
    }

    .profile .profile__form-group {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .profile .profile__form-group label {
        font-weight: 600;
        color: var(--fg-on-page);
        font-size: 0.875rem;
    }

    .profile .profile__form-group input,
    .profile .profile__form-group textarea {
        padding: 0.875rem 1.25rem;
        border-radius: var(--radius-md);
        border: 2px solid var(--ring);
        background: var(--bg-page);
        color: var(--fg-on-page);

        font-size: 1rem;
        outline: none;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .profile .profile__form-group input::placeholder,
    .profile .profile__form-group textarea::placeholder {
        color: var(--neutral-600);
    }

    .profile .profile__form-group input:focus,
    .profile .profile__form-group textarea:focus {
        border-color: var(--bg-primary);
        box-shadow: 0 0 0 3px var(--ring);
    }

    .profile .profile__checkboxes {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    /* Dacă randomNumber este par (2) - primul copil primește order: 2 */
    .profile .profile__checkboxes > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    .profile .profile__checkbox-label {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        cursor: pointer;
        font-weight: 500;
        color: var(--fg-on-page);
    }

    .profile .profile__checkbox-label input {
        width: 20px;
        height: 20px;
        cursor: pointer;
    }

    .profile .profile__actions {
        display: flex;
        gap: 1rem;
        margin-top: clamp(24px, 4vw, 32px);
        padding-top: clamp(24px, 4vw, 32px);
        border-top: 1px solid var(--border-on-surface-light);
    }

    /* Dacă randomNumber este par (2) - primul copil primește order: 2 */
    .profile .profile__actions > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    .profile .profile__save {
        padding: 1rem 2.5rem;
        border-radius: var(--radius-lg);
        border: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 700;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-md);
    }

    .profile .profile__save:hover {
        background: var(--bg-primary-hover);
        transform: translateY(-3px);
        box-shadow: var(--shadow-lg);
    }

    .profile .profile__cancel {
        padding: 1rem 2.5rem;
        border-radius: var(--radius-lg);
        border: 2px solid var(--ring);
        background: transparent;
        color: var(--fg-on-page);
        font-weight: 600;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .profile .profile__cancel:hover {
        border-color: var(--bg-primary);
        color: var(--bg-primary);
        background: rgba(37, 99, 235, 0.1);
    }

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

    .support-ux7__wrap {
        max-width: 900px;
        margin: 0 auto;
    }

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

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

    .support-ux7__head p {
        margin: 8px 0 0;
        opacity: .92;
    }

    .support-ux7__list {
        display: grid;
        gap: 10px;
    }

    .support-ux7__item {
        border: 1px solid rgba(255, 255, 255, 0.32);
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, 0.12);
        overflow: hidden;
    }

    .support-ux7__item button {
        width: 100%;
        border: 0;
        background: transparent;
        color: inherit;
        text-align: left;
        font: inherit;
        font-weight: 700;
        padding: 11px 12px;
        cursor: pointer;
    }

    .support-ux7__item p {
        margin: 0;
        max-height: 0;
        overflow: hidden;
        padding: 0 12px;
        transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
        opacity: .95;
    }

    .support-ux7__item.is-open p {
        max-height: 220px;
        padding: 0 12px 12px;
    }

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--surface-1, #ffffff);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.1));
    padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
  }

  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap, 1rem);
  }

  .logo {
    font-size: calc(var(--font-size-base, 1rem) * 1.25);
    font-weight: 700;
    color: var(--brand, #e63946);
    text-decoration: none;
    letter-spacing: 0.02em;
    white-space: nowrap;
    transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .logo:hover {
    color: var(--brand-contrast, #1d3557);
  }

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

  .nav-link {
    text-decoration: none;
    color: var(--fg-on-surface, #1d3557);
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md, 8px);
    transition: background var(--anim-duration, 0.3s) var(--anim-ease, ease), color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .nav-link:hover,
  .nav-link:focus-visible {
    background: var(--btn-ghost-bg-hover, rgba(230, 57, 70, 0.1));
    color: var(--brand, #e63946);
    outline: none;
  }

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm, 4px);
    transition: background var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .burger:hover {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
  }

  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-surface, #1d3557);
    border-radius: 2px;
    transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .burger-line + .burger-line {
    margin-top: 5px;
  }

  /* Burger animat */
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

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

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

  /* Mobile */
  @media (max-width: 767px) {
    .header-inner {
      justify-content: space-between;
    }

    .burger {
      display: flex;
      order: -1;
    }

    .logo {
      order: 0;
      flex: 1;
      text-align: center;
    }

    .nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: var(--surface-1, #ffffff);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: opacity var(--anim-duration, 0.3s) var(--anim-ease, ease), visibility var(--anim-duration, 0.3s) var(--anim-ease, ease);
      z-index: 999;
    }

    .nav.open {
      opacity: 1;
      visibility: visible;
    }

    .nav-list {
      flex-direction: column;
      gap: calc(var(--gap, 1rem) * 1.5);
      text-align: center;
    }

    .nav-link {
      font-size: calc(var(--font-size-base, 1rem) * 1.25);
      padding: 0.75rem 1.5rem;
      display: inline-block;
    }
  }

  /* Desktop */
  @media (min-width: 768px) {
    .burger {
      display: none;
    }

    .nav {
      position: static;
      opacity: 1;
      visibility: visible;
      height: auto;
      background: transparent;
      display: flex;
      align-items: center;
      justify-content: flex-end;
    }

    .nav-list {
      flex-direction: row;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: Arial, Helvetica, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
  }
  .footer-brand .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f5a623;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f5a623;
  }
  .footer-middle {
    margin-bottom: 1.5rem;
    border-top: 1px solid #333;
    padding-top: 1.5rem;
  }
  .contact-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
  }
  .contact-info li {
    font-size: 0.95rem;
    color: #ccc;
  }
  .contact-info a {
    color: #f5a623;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    text-align: center;
  }
  .footer-bottom .copyright {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: #aaa;
  }
  .footer-bottom .disclaimer {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.4;
    max-width: 800px;
    margin: 0 auto;
  }
  .footer-bottom .disclaimer a {
    color: #f5a623;
    text-decoration: none;
  }
  .footer-bottom .disclaimer a:hover {
    text-decoration: underline;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      text-align: center;
      gap: 1rem;
    }
    .footer-nav ul {
      justify-content: center;
      gap: 1rem;
    }
    .contact-info ul {
      flex-direction: column;
      align-items: center;
      gap: 0.75rem;
    }
  }

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

    .nfcookie-v11__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, .45), rgba(17, 24, 39, .95));
        color: var(--neutral-100);
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, .35);
    }

    .nfcookie-v11__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .nfcookie-v11__top strong {font-size: 16px;}

    .nfcookie-v11__top button {
        border: 0;
        background: transparent;
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
        cursor: pointer;
    }

    .nfcookie-v11 p {margin: 10px 0 0; color: #d1d5db;}

    .nfcookie-v11__actions {margin-top: 14px; display: flex; gap: 8px;}

    .nfcookie-v11__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, .45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, .65);
        cursor: pointer;
    }

    .nfcookie-v11__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v11__card {max-width: none;}
    }

.settings--light-v6 {

    padding: 40px 20px;
    background: var(--bg-page);
    color: var(--fg-on-page);
}

.settings__inner {
    max-width: 640px;
    margin: 0 auto;
}

.settings__inner h2 {
    margin: 0 0 6px;
    font-size: clamp(22px,3.5vw,28px);
}

.settings__inner p {
    margin: 0;
    color: var(--neutral-700);
    font-size: 0.95rem;
}

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

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--surface-1, #ffffff);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.1));
    padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
  }

  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap, 1rem);
  }

  .logo {
    font-size: calc(var(--font-size-base, 1rem) * 1.25);
    font-weight: 700;
    color: var(--brand, #e63946);
    text-decoration: none;
    letter-spacing: 0.02em;
    white-space: nowrap;
    transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .logo:hover {
    color: var(--brand-contrast, #1d3557);
  }

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

  .nav-link {
    text-decoration: none;
    color: var(--fg-on-surface, #1d3557);
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md, 8px);
    transition: background var(--anim-duration, 0.3s) var(--anim-ease, ease), color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .nav-link:hover,
  .nav-link:focus-visible {
    background: var(--btn-ghost-bg-hover, rgba(230, 57, 70, 0.1));
    color: var(--brand, #e63946);
    outline: none;
  }

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm, 4px);
    transition: background var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .burger:hover {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
  }

  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-surface, #1d3557);
    border-radius: 2px;
    transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .burger-line + .burger-line {
    margin-top: 5px;
  }

  /* Burger animat */
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

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

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

  /* Mobile */
  @media (max-width: 767px) {
    .header-inner {
      justify-content: space-between;
    }

    .burger {
      display: flex;
      order: -1;
    }

    .logo {
      order: 0;
      flex: 1;
      text-align: center;
    }

    .nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: var(--surface-1, #ffffff);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: opacity var(--anim-duration, 0.3s) var(--anim-ease, ease), visibility var(--anim-duration, 0.3s) var(--anim-ease, ease);
      z-index: 999;
    }

    .nav.open {
      opacity: 1;
      visibility: visible;
    }

    .nav-list {
      flex-direction: column;
      gap: calc(var(--gap, 1rem) * 1.5);
      text-align: center;
    }

    .nav-link {
      font-size: calc(var(--font-size-base, 1rem) * 1.25);
      padding: 0.75rem 1.5rem;
      display: inline-block;
    }
  }

  /* Desktop */
  @media (min-width: 768px) {
    .burger {
      display: none;
    }

    .nav {
      position: static;
      opacity: 1;
      visibility: visible;
      height: auto;
      background: transparent;
      display: flex;
      align-items: center;
      justify-content: flex-end;
    }

    .nav-list {
      flex-direction: row;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: Arial, Helvetica, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
  }
  .footer-brand .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f5a623;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f5a623;
  }
  .footer-middle {
    margin-bottom: 1.5rem;
    border-top: 1px solid #333;
    padding-top: 1.5rem;
  }
  .contact-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
  }
  .contact-info li {
    font-size: 0.95rem;
    color: #ccc;
  }
  .contact-info a {
    color: #f5a623;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    text-align: center;
  }
  .footer-bottom .copyright {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: #aaa;
  }
  .footer-bottom .disclaimer {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.4;
    max-width: 800px;
    margin: 0 auto;
  }
  .footer-bottom .disclaimer a {
    color: #f5a623;
    text-decoration: none;
  }
  .footer-bottom .disclaimer a:hover {
    text-decoration: underline;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      text-align: center;
      gap: 1rem;
    }
    .footer-nav ul {
      justify-content: center;
      gap: 1rem;
    }
    .contact-info ul {
      flex-direction: column;
      align-items: center;
      gap: 0.75rem;
    }
  }

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

    .nfcookie-v11__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, .45), rgba(17, 24, 39, .95));
        color: var(--neutral-100);
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, .35);
    }

    .nfcookie-v11__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .nfcookie-v11__top strong {font-size: 16px;}

    .nfcookie-v11__top button {
        border: 0;
        background: transparent;
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
        cursor: pointer;
    }

    .nfcookie-v11 p {margin: 10px 0 0; color: #d1d5db;}

    .nfcookie-v11__actions {margin-top: 14px; display: flex; gap: 8px;}

    .nfcookie-v11__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, .45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, .65);
        cursor: pointer;
    }

    .nfcookie-v11__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v11__card {max-width: none;}
    }

.activity {

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

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

    .activity .activity__h {
        margin-bottom: var(--space-y);
    }

    .activity h1 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0;
        color: var(--fg-on-primary);
    }

    .activity .activity__timeline {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        position: relative;
        padding-left: 2rem;
    }

    .activity .activity__timeline::before {
        content: '';
        position: absolute;
        left: 13px;
        top: 8px;
        bottom: 0;
        width: 2px;
        background: var(--ring);
    }

    .activity .activity__item {
        position: relative;
        padding-left: 2rem;
    }

    .activity .activity__item::before {
        content: '';
        position: absolute;
        left: -1.625rem;
        top: 0.5rem;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: var(--bg-primary);
        border: 2px solid var(--bg-page);
    }

    .activity .activity__date {
        color: var(--neutral-300);
        font-size: 0.875rem;
        margin-bottom: 0.5rem;
    }

    .activity .activity__content {
        background: var(--surface-light);
        padding: clamp(16px, 2vw, 24px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--ring);
        box-shadow: var(--shadow-sm);
    }

    .activity h3 {
        margin: 0 0 0.5rem;
        font-size: clamp(18px, 2.2vw, 20px);
        color: var(--fg-on-surface-light);
    }

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

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

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--surface-1, #ffffff);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.1));
    padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
  }

  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap, 1rem);
  }

  .logo {
    font-size: calc(var(--font-size-base, 1rem) * 1.25);
    font-weight: 700;
    color: var(--brand, #e63946);
    text-decoration: none;
    letter-spacing: 0.02em;
    white-space: nowrap;
    transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .logo:hover {
    color: var(--brand-contrast, #1d3557);
  }

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

  .nav-link {
    text-decoration: none;
    color: var(--fg-on-surface, #1d3557);
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md, 8px);
    transition: background var(--anim-duration, 0.3s) var(--anim-ease, ease), color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .nav-link:hover,
  .nav-link:focus-visible {
    background: var(--btn-ghost-bg-hover, rgba(230, 57, 70, 0.1));
    color: var(--brand, #e63946);
    outline: none;
  }

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm, 4px);
    transition: background var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .burger:hover {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
  }

  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-surface, #1d3557);
    border-radius: 2px;
    transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .burger-line + .burger-line {
    margin-top: 5px;
  }

  /* Burger animat */
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

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

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

  /* Mobile */
  @media (max-width: 767px) {
    .header-inner {
      justify-content: space-between;
    }

    .burger {
      display: flex;
      order: -1;
    }

    .logo {
      order: 0;
      flex: 1;
      text-align: center;
    }

    .nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: var(--surface-1, #ffffff);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: opacity var(--anim-duration, 0.3s) var(--anim-ease, ease), visibility var(--anim-duration, 0.3s) var(--anim-ease, ease);
      z-index: 999;
    }

    .nav.open {
      opacity: 1;
      visibility: visible;
    }

    .nav-list {
      flex-direction: column;
      gap: calc(var(--gap, 1rem) * 1.5);
      text-align: center;
    }

    .nav-link {
      font-size: calc(var(--font-size-base, 1rem) * 1.25);
      padding: 0.75rem 1.5rem;
      display: inline-block;
    }
  }

  /* Desktop */
  @media (min-width: 768px) {
    .burger {
      display: none;
    }

    .nav {
      position: static;
      opacity: 1;
      visibility: visible;
      height: auto;
      background: transparent;
      display: flex;
      align-items: center;
      justify-content: flex-end;
    }

    .nav-list {
      flex-direction: row;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: Arial, Helvetica, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
  }
  .footer-brand .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f5a623;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f5a623;
  }
  .footer-middle {
    margin-bottom: 1.5rem;
    border-top: 1px solid #333;
    padding-top: 1.5rem;
  }
  .contact-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
  }
  .contact-info li {
    font-size: 0.95rem;
    color: #ccc;
  }
  .contact-info a {
    color: #f5a623;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    text-align: center;
  }
  .footer-bottom .copyright {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: #aaa;
  }
  .footer-bottom .disclaimer {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.4;
    max-width: 800px;
    margin: 0 auto;
  }
  .footer-bottom .disclaimer a {
    color: #f5a623;
    text-decoration: none;
  }
  .footer-bottom .disclaimer a:hover {
    text-decoration: underline;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      text-align: center;
      gap: 1rem;
    }
    .footer-nav ul {
      justify-content: center;
      gap: 1rem;
    }
    .contact-info ul {
      flex-direction: column;
      align-items: center;
      gap: 0.75rem;
    }
  }

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

    .nfcookie-v11__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, .45), rgba(17, 24, 39, .95));
        color: var(--neutral-100);
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, .35);
    }

    .nfcookie-v11__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .nfcookie-v11__top strong {font-size: 16px;}

    .nfcookie-v11__top button {
        border: 0;
        background: transparent;
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
        cursor: pointer;
    }

    .nfcookie-v11 p {margin: 10px 0 0; color: #d1d5db;}

    .nfcookie-v11__actions {margin-top: 14px; display: flex; gap: 8px;}

    .nfcookie-v11__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, .45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, .65);
        cursor: pointer;
    }

    .nfcookie-v11__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v11__card {max-width: none;}
    }

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

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

    .security__hero {
        display: grid;
        grid-template-columns: auto minmax(0,1fr);
        gap: 14px;
        align-items: center;
        margin-bottom: 24px;
    }

    .security__icon {
        width: 48px;
        height: 48px;
        border-radius: 18px;
        background: var(--accent);
        color: var(--fg-on-accent);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .security__content h2 {
        margin: 0 0 4px;
        font-size: clamp(24px,4vw,30px);
        color: var(--brand-contrast);
    }

    .security__content p {
        margin: 0;
        color: var(--neutral-200);
    }

    .security__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
        gap: 14px;
    }

    .security__card {
        border-radius: var(--radius-xl);
        padding: 14px 16px;
        background: rgba(15,23,42,0.96);
        border: 1px solid rgba(148,163,184,0.7);
    }

    .security__card--critical {
        border-color: var(--accent);
    }

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

    .security__card h3 {
        margin: 0 0 4px;
        font-size: 1rem;
    }

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

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

    .support-ux7__wrap {
        max-width: 900px;
        margin: 0 auto;
    }

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

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

    .support-ux7__head p {
        margin: 8px 0 0;
        opacity: .92;
    }

    .support-ux7__list {
        display: grid;
        gap: 10px;
    }

    .support-ux7__item {
        border: 1px solid rgba(255, 255, 255, 0.32);
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, 0.12);
        overflow: hidden;
    }

    .support-ux7__item button {
        width: 100%;
        border: 0;
        background: transparent;
        color: inherit;
        text-align: left;
        font: inherit;
        font-weight: 700;
        padding: 11px 12px;
        cursor: pointer;
    }

    .support-ux7__item p {
        margin: 0;
        max-height: 0;
        overflow: hidden;
        padding: 0 12px;
        transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
        opacity: .95;
    }

    .support-ux7__item.is-open p {
        max-height: 220px;
        padding: 0 12px 12px;
    }

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--surface-1, #ffffff);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.1));
    padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
  }

  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap, 1rem);
  }

  .logo {
    font-size: calc(var(--font-size-base, 1rem) * 1.25);
    font-weight: 700;
    color: var(--brand, #e63946);
    text-decoration: none;
    letter-spacing: 0.02em;
    white-space: nowrap;
    transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .logo:hover {
    color: var(--brand-contrast, #1d3557);
  }

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

  .nav-link {
    text-decoration: none;
    color: var(--fg-on-surface, #1d3557);
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md, 8px);
    transition: background var(--anim-duration, 0.3s) var(--anim-ease, ease), color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .nav-link:hover,
  .nav-link:focus-visible {
    background: var(--btn-ghost-bg-hover, rgba(230, 57, 70, 0.1));
    color: var(--brand, #e63946);
    outline: none;
  }

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm, 4px);
    transition: background var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .burger:hover {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
  }

  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-surface, #1d3557);
    border-radius: 2px;
    transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .burger-line + .burger-line {
    margin-top: 5px;
  }

  /* Burger animat */
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

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

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

  /* Mobile */
  @media (max-width: 767px) {
    .header-inner {
      justify-content: space-between;
    }

    .burger {
      display: flex;
      order: -1;
    }

    .logo {
      order: 0;
      flex: 1;
      text-align: center;
    }

    .nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: var(--surface-1, #ffffff);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: opacity var(--anim-duration, 0.3s) var(--anim-ease, ease), visibility var(--anim-duration, 0.3s) var(--anim-ease, ease);
      z-index: 999;
    }

    .nav.open {
      opacity: 1;
      visibility: visible;
    }

    .nav-list {
      flex-direction: column;
      gap: calc(var(--gap, 1rem) * 1.5);
      text-align: center;
    }

    .nav-link {
      font-size: calc(var(--font-size-base, 1rem) * 1.25);
      padding: 0.75rem 1.5rem;
      display: inline-block;
    }
  }

  /* Desktop */
  @media (min-width: 768px) {
    .burger {
      display: none;
    }

    .nav {
      position: static;
      opacity: 1;
      visibility: visible;
      height: auto;
      background: transparent;
      display: flex;
      align-items: center;
      justify-content: flex-end;
    }

    .nav-list {
      flex-direction: row;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: Arial, Helvetica, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
  }
  .footer-brand .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f5a623;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f5a623;
  }
  .footer-middle {
    margin-bottom: 1.5rem;
    border-top: 1px solid #333;
    padding-top: 1.5rem;
  }
  .contact-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
  }
  .contact-info li {
    font-size: 0.95rem;
    color: #ccc;
  }
  .contact-info a {
    color: #f5a623;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    text-align: center;
  }
  .footer-bottom .copyright {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: #aaa;
  }
  .footer-bottom .disclaimer {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.4;
    max-width: 800px;
    margin: 0 auto;
  }
  .footer-bottom .disclaimer a {
    color: #f5a623;
    text-decoration: none;
  }
  .footer-bottom .disclaimer a:hover {
    text-decoration: underline;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      text-align: center;
      gap: 1rem;
    }
    .footer-nav ul {
      justify-content: center;
      gap: 1rem;
    }
    .contact-info ul {
      flex-direction: column;
      align-items: center;
      gap: 0.75rem;
    }
  }

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

    .nfcookie-v11__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, .45), rgba(17, 24, 39, .95));
        color: var(--neutral-100);
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, .35);
    }

    .nfcookie-v11__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .nfcookie-v11__top strong {font-size: 16px;}

    .nfcookie-v11__top button {
        border: 0;
        background: transparent;
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
        cursor: pointer;
    }

    .nfcookie-v11 p {margin: 10px 0 0; color: #d1d5db;}

    .nfcookie-v11__actions {margin-top: 14px; display: flex; gap: 8px;}

    .nfcookie-v11__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, .45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, .65);
        cursor: pointer;
    }

    .nfcookie-v11__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v11__card {max-width: none;}
    }

.nftouch-v8 {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 3vw, 36px);
        background: var(--bg-page);
        color: var(--fg-on-page);
    }

    .nftouch-v8__wrap {
        max-width: 900px;
        margin: 0 auto;
    }

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

    .nftouch-v8__lead {
        margin: 10px 0 14px;
        color: var(--neutral-600);
    }

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

    .nftouch-v8__row {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
        background: var(--surface-1);
        padding: 10px 12px;
        display: flex;
        justify-content: space-between;
        gap: 10px;
        align-items: center;
    }

    .nftouch-v8__title {
        margin: 0 0 4px;
        font-weight: 600;
    }

    .nftouch-v8__text {
        margin: 0;
        color: var(--neutral-600);
    }

    .nftouch-v8__row a {
        color: var(--link);
        text-decoration: none;
        white-space: nowrap;
    }

    .nftouch-v8__cta {
        display: inline-block;
        margin-top: 12px;
        text-decoration: none;
        padding: 10px 16px;
        border-radius: var(--radius-md);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    @media (max-width: 700px) {
        .nftouch-v8__row {
            flex-direction: column;
            align-items: flex-start;
        }

        .nftouch-v8__row a {
            white-space: normal;
        }
    }

.contacts-u7{padding:calc(var(--space-y)*2.9) var(--space-x);background:var(--gradient-accent);color:var(--brand-contrast)} .contacts-u7 .shell{max-width:var(--max-w);margin:0 auto;display:grid;gap:var(--gap)} .contacts-u7 h2{margin:0;font-size:clamp(1.85rem,3.6vw,2.8rem);line-height:1.1} .contacts-u7 .sub{margin:.35rem 0 0;opacity:.9;} .contacts-u7 article,.contacts-u7 li{padding:.85rem;border-radius:var(--radius-sm);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);list-style:none} .contacts-u7 p{margin:0} .contacts-u7 a{text-decoration:none;color:inherit;font-weight:700} .contacts-u7 .pulse{margin-top:.8rem;padding:1rem;border-radius:var(--radius-lg);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);animation:contacts-u7Pulse 2.8s ease-in-out infinite} @keyframes contacts-u7Pulse{0%,100%{transform:scale(1)}50%{transform:scale(1.01)}} .contacts-u7 article{transition:transform var(--anim-duration) var(--anim-ease),box-shadow var(--anim-duration) var(--anim-ease)} .contacts-u7 article:hover{transform:translateY(-4px);box-shadow:var(--shadow-md)} @media (max-width:860px){.contacts-u7 .split,.contacts-u7 .media,.contacts-u7 .grid,.contacts-u7 .cards,.contacts-u7 .bento,.contacts-u7 .foot{grid-template-columns:1fr}}

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

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--surface-1, #ffffff);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.1));
    padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
  }

  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap, 1rem);
  }

  .logo {
    font-size: calc(var(--font-size-base, 1rem) * 1.25);
    font-weight: 700;
    color: var(--brand, #e63946);
    text-decoration: none;
    letter-spacing: 0.02em;
    white-space: nowrap;
    transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .logo:hover {
    color: var(--brand-contrast, #1d3557);
  }

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

  .nav-link {
    text-decoration: none;
    color: var(--fg-on-surface, #1d3557);
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md, 8px);
    transition: background var(--anim-duration, 0.3s) var(--anim-ease, ease), color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .nav-link:hover,
  .nav-link:focus-visible {
    background: var(--btn-ghost-bg-hover, rgba(230, 57, 70, 0.1));
    color: var(--brand, #e63946);
    outline: none;
  }

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm, 4px);
    transition: background var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .burger:hover {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
  }

  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-surface, #1d3557);
    border-radius: 2px;
    transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .burger-line + .burger-line {
    margin-top: 5px;
  }

  /* Burger animat */
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

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

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

  /* Mobile */
  @media (max-width: 767px) {
    .header-inner {
      justify-content: space-between;
    }

    .burger {
      display: flex;
      order: -1;
    }

    .logo {
      order: 0;
      flex: 1;
      text-align: center;
    }

    .nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: var(--surface-1, #ffffff);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: opacity var(--anim-duration, 0.3s) var(--anim-ease, ease), visibility var(--anim-duration, 0.3s) var(--anim-ease, ease);
      z-index: 999;
    }

    .nav.open {
      opacity: 1;
      visibility: visible;
    }

    .nav-list {
      flex-direction: column;
      gap: calc(var(--gap, 1rem) * 1.5);
      text-align: center;
    }

    .nav-link {
      font-size: calc(var(--font-size-base, 1rem) * 1.25);
      padding: 0.75rem 1.5rem;
      display: inline-block;
    }
  }

  /* Desktop */
  @media (min-width: 768px) {
    .burger {
      display: none;
    }

    .nav {
      position: static;
      opacity: 1;
      visibility: visible;
      height: auto;
      background: transparent;
      display: flex;
      align-items: center;
      justify-content: flex-end;
    }

    .nav-list {
      flex-direction: row;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: Arial, Helvetica, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
  }
  .footer-brand .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f5a623;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f5a623;
  }
  .footer-middle {
    margin-bottom: 1.5rem;
    border-top: 1px solid #333;
    padding-top: 1.5rem;
  }
  .contact-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
  }
  .contact-info li {
    font-size: 0.95rem;
    color: #ccc;
  }
  .contact-info a {
    color: #f5a623;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    text-align: center;
  }
  .footer-bottom .copyright {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: #aaa;
  }
  .footer-bottom .disclaimer {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.4;
    max-width: 800px;
    margin: 0 auto;
  }
  .footer-bottom .disclaimer a {
    color: #f5a623;
    text-decoration: none;
  }
  .footer-bottom .disclaimer a:hover {
    text-decoration: underline;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      text-align: center;
      gap: 1rem;
    }
    .footer-nav ul {
      justify-content: center;
      gap: 1rem;
    }
    .contact-info ul {
      flex-direction: column;
      align-items: center;
      gap: 0.75rem;
    }
  }

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

    .nfcookie-v11__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, .45), rgba(17, 24, 39, .95));
        color: var(--neutral-100);
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, .35);
    }

    .nfcookie-v11__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .nfcookie-v11__top strong {font-size: 16px;}

    .nfcookie-v11__top button {
        border: 0;
        background: transparent;
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
        cursor: pointer;
    }

    .nfcookie-v11 p {margin: 10px 0 0; color: #d1d5db;}

    .nfcookie-v11__actions {margin-top: 14px; display: flex; gap: 8px;}

    .nfcookie-v11__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, .45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, .65);
        cursor: pointer;
    }

    .nfcookie-v11__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v11__card {max-width: none;}
    }

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

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--surface-1, #ffffff);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.1));
    padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
  }

  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap, 1rem);
  }

  .logo {
    font-size: calc(var(--font-size-base, 1rem) * 1.25);
    font-weight: 700;
    color: var(--brand, #e63946);
    text-decoration: none;
    letter-spacing: 0.02em;
    white-space: nowrap;
    transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .logo:hover {
    color: var(--brand-contrast, #1d3557);
  }

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

  .nav-link {
    text-decoration: none;
    color: var(--fg-on-surface, #1d3557);
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md, 8px);
    transition: background var(--anim-duration, 0.3s) var(--anim-ease, ease), color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .nav-link:hover,
  .nav-link:focus-visible {
    background: var(--btn-ghost-bg-hover, rgba(230, 57, 70, 0.1));
    color: var(--brand, #e63946);
    outline: none;
  }

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm, 4px);
    transition: background var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .burger:hover {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
  }

  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-surface, #1d3557);
    border-radius: 2px;
    transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .burger-line + .burger-line {
    margin-top: 5px;
  }

  /* Burger animat */
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

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

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

  /* Mobile */
  @media (max-width: 767px) {
    .header-inner {
      justify-content: space-between;
    }

    .burger {
      display: flex;
      order: -1;
    }

    .logo {
      order: 0;
      flex: 1;
      text-align: center;
    }

    .nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: var(--surface-1, #ffffff);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: opacity var(--anim-duration, 0.3s) var(--anim-ease, ease), visibility var(--anim-duration, 0.3s) var(--anim-ease, ease);
      z-index: 999;
    }

    .nav.open {
      opacity: 1;
      visibility: visible;
    }

    .nav-list {
      flex-direction: column;
      gap: calc(var(--gap, 1rem) * 1.5);
      text-align: center;
    }

    .nav-link {
      font-size: calc(var(--font-size-base, 1rem) * 1.25);
      padding: 0.75rem 1.5rem;
      display: inline-block;
    }
  }

  /* Desktop */
  @media (min-width: 768px) {
    .burger {
      display: none;
    }

    .nav {
      position: static;
      opacity: 1;
      visibility: visible;
      height: auto;
      background: transparent;
      display: flex;
      align-items: center;
      justify-content: flex-end;
    }

    .nav-list {
      flex-direction: row;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: Arial, Helvetica, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
  }
  .footer-brand .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f5a623;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f5a623;
  }
  .footer-middle {
    margin-bottom: 1.5rem;
    border-top: 1px solid #333;
    padding-top: 1.5rem;
  }
  .contact-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
  }
  .contact-info li {
    font-size: 0.95rem;
    color: #ccc;
  }
  .contact-info a {
    color: #f5a623;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    text-align: center;
  }
  .footer-bottom .copyright {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: #aaa;
  }
  .footer-bottom .disclaimer {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.4;
    max-width: 800px;
    margin: 0 auto;
  }
  .footer-bottom .disclaimer a {
    color: #f5a623;
    text-decoration: none;
  }
  .footer-bottom .disclaimer a:hover {
    text-decoration: underline;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      text-align: center;
      gap: 1rem;
    }
    .footer-nav ul {
      justify-content: center;
      gap: 1rem;
    }
    .contact-info ul {
      flex-direction: column;
      align-items: center;
      gap: 0.75rem;
    }
  }

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

    .nfcookie-v11__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, .45), rgba(17, 24, 39, .95));
        color: var(--neutral-100);
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, .35);
    }

    .nfcookie-v11__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .nfcookie-v11__top strong {font-size: 16px;}

    .nfcookie-v11__top button {
        border: 0;
        background: transparent;
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
        cursor: pointer;
    }

    .nfcookie-v11 p {margin: 10px 0 0; color: #d1d5db;}

    .nfcookie-v11__actions {margin-top: 14px; display: flex; gap: 8px;}

    .nfcookie-v11__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, .45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, .65);
        cursor: pointer;
    }

    .nfcookie-v11__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v11__card {max-width: none;}
    }

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

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

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

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

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

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

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

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

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

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

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--surface-1, #ffffff);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.1));
    padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
  }

  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap, 1rem);
  }

  .logo {
    font-size: calc(var(--font-size-base, 1rem) * 1.25);
    font-weight: 700;
    color: var(--brand, #e63946);
    text-decoration: none;
    letter-spacing: 0.02em;
    white-space: nowrap;
    transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .logo:hover {
    color: var(--brand-contrast, #1d3557);
  }

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

  .nav-link {
    text-decoration: none;
    color: var(--fg-on-surface, #1d3557);
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md, 8px);
    transition: background var(--anim-duration, 0.3s) var(--anim-ease, ease), color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .nav-link:hover,
  .nav-link:focus-visible {
    background: var(--btn-ghost-bg-hover, rgba(230, 57, 70, 0.1));
    color: var(--brand, #e63946);
    outline: none;
  }

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm, 4px);
    transition: background var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .burger:hover {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
  }

  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-surface, #1d3557);
    border-radius: 2px;
    transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .burger-line + .burger-line {
    margin-top: 5px;
  }

  /* Burger animat */
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

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

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

  /* Mobile */
  @media (max-width: 767px) {
    .header-inner {
      justify-content: space-between;
    }

    .burger {
      display: flex;
      order: -1;
    }

    .logo {
      order: 0;
      flex: 1;
      text-align: center;
    }

    .nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: var(--surface-1, #ffffff);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: opacity var(--anim-duration, 0.3s) var(--anim-ease, ease), visibility var(--anim-duration, 0.3s) var(--anim-ease, ease);
      z-index: 999;
    }

    .nav.open {
      opacity: 1;
      visibility: visible;
    }

    .nav-list {
      flex-direction: column;
      gap: calc(var(--gap, 1rem) * 1.5);
      text-align: center;
    }

    .nav-link {
      font-size: calc(var(--font-size-base, 1rem) * 1.25);
      padding: 0.75rem 1.5rem;
      display: inline-block;
    }
  }

  /* Desktop */
  @media (min-width: 768px) {
    .burger {
      display: none;
    }

    .nav {
      position: static;
      opacity: 1;
      visibility: visible;
      height: auto;
      background: transparent;
      display: flex;
      align-items: center;
      justify-content: flex-end;
    }

    .nav-list {
      flex-direction: row;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: Arial, Helvetica, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
  }
  .footer-brand .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f5a623;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f5a623;
  }
  .footer-middle {
    margin-bottom: 1.5rem;
    border-top: 1px solid #333;
    padding-top: 1.5rem;
  }
  .contact-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
  }
  .contact-info li {
    font-size: 0.95rem;
    color: #ccc;
  }
  .contact-info a {
    color: #f5a623;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    text-align: center;
  }
  .footer-bottom .copyright {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: #aaa;
  }
  .footer-bottom .disclaimer {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.4;
    max-width: 800px;
    margin: 0 auto;
  }
  .footer-bottom .disclaimer a {
    color: #f5a623;
    text-decoration: none;
  }
  .footer-bottom .disclaimer a:hover {
    text-decoration: underline;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      text-align: center;
      gap: 1rem;
    }
    .footer-nav ul {
      justify-content: center;
      gap: 1rem;
    }
    .contact-info ul {
      flex-direction: column;
      align-items: center;
      gap: 0.75rem;
    }
  }

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

    .nfcookie-v11__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, .45), rgba(17, 24, 39, .95));
        color: var(--neutral-100);
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, .35);
    }

    .nfcookie-v11__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .nfcookie-v11__top strong {font-size: 16px;}

    .nfcookie-v11__top button {
        border: 0;
        background: transparent;
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
        cursor: pointer;
    }

    .nfcookie-v11 p {margin: 10px 0 0; color: #d1d5db;}

    .nfcookie-v11__actions {margin-top: 14px; display: flex; gap: 8px;}

    .nfcookie-v11__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, .45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, .65);
        cursor: pointer;
    }

    .nfcookie-v11__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v11__card {max-width: none;}
    }

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

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--surface-1, #ffffff);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.1));
    padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
  }

  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap, 1rem);
  }

  .logo {
    font-size: calc(var(--font-size-base, 1rem) * 1.25);
    font-weight: 700;
    color: var(--brand, #e63946);
    text-decoration: none;
    letter-spacing: 0.02em;
    white-space: nowrap;
    transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .logo:hover {
    color: var(--brand-contrast, #1d3557);
  }

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

  .nav-link {
    text-decoration: none;
    color: var(--fg-on-surface, #1d3557);
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md, 8px);
    transition: background var(--anim-duration, 0.3s) var(--anim-ease, ease), color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .nav-link:hover,
  .nav-link:focus-visible {
    background: var(--btn-ghost-bg-hover, rgba(230, 57, 70, 0.1));
    color: var(--brand, #e63946);
    outline: none;
  }

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm, 4px);
    transition: background var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .burger:hover {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
  }

  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-surface, #1d3557);
    border-radius: 2px;
    transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .burger-line + .burger-line {
    margin-top: 5px;
  }

  /* Burger animat */
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

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

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

  /* Mobile */
  @media (max-width: 767px) {
    .header-inner {
      justify-content: space-between;
    }

    .burger {
      display: flex;
      order: -1;
    }

    .logo {
      order: 0;
      flex: 1;
      text-align: center;
    }

    .nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: var(--surface-1, #ffffff);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: opacity var(--anim-duration, 0.3s) var(--anim-ease, ease), visibility var(--anim-duration, 0.3s) var(--anim-ease, ease);
      z-index: 999;
    }

    .nav.open {
      opacity: 1;
      visibility: visible;
    }

    .nav-list {
      flex-direction: column;
      gap: calc(var(--gap, 1rem) * 1.5);
      text-align: center;
    }

    .nav-link {
      font-size: calc(var(--font-size-base, 1rem) * 1.25);
      padding: 0.75rem 1.5rem;
      display: inline-block;
    }
  }

  /* Desktop */
  @media (min-width: 768px) {
    .burger {
      display: none;
    }

    .nav {
      position: static;
      opacity: 1;
      visibility: visible;
      height: auto;
      background: transparent;
      display: flex;
      align-items: center;
      justify-content: flex-end;
    }

    .nav-list {
      flex-direction: row;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: Arial, Helvetica, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
  }
  .footer-brand .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f5a623;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f5a623;
  }
  .footer-middle {
    margin-bottom: 1.5rem;
    border-top: 1px solid #333;
    padding-top: 1.5rem;
  }
  .contact-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
  }
  .contact-info li {
    font-size: 0.95rem;
    color: #ccc;
  }
  .contact-info a {
    color: #f5a623;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    text-align: center;
  }
  .footer-bottom .copyright {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: #aaa;
  }
  .footer-bottom .disclaimer {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.4;
    max-width: 800px;
    margin: 0 auto;
  }
  .footer-bottom .disclaimer a {
    color: #f5a623;
    text-decoration: none;
  }
  .footer-bottom .disclaimer a:hover {
    text-decoration: underline;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      text-align: center;
      gap: 1rem;
    }
    .footer-nav ul {
      justify-content: center;
      gap: 1rem;
    }
    .contact-info ul {
      flex-direction: column;
      align-items: center;
      gap: 0.75rem;
    }
  }

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

    .nfcookie-v11__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, .45), rgba(17, 24, 39, .95));
        color: var(--neutral-100);
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, .35);
    }

    .nfcookie-v11__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .nfcookie-v11__top strong {font-size: 16px;}

    .nfcookie-v11__top button {
        border: 0;
        background: transparent;
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
        cursor: pointer;
    }

    .nfcookie-v11 p {margin: 10px 0 0; color: #d1d5db;}

    .nfcookie-v11__actions {margin-top: 14px; display: flex; gap: 8px;}

    .nfcookie-v11__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, .45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, .65);
        cursor: pointer;
    }

    .nfcookie-v11__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v11__card {max-width: none;}
    }

.nf404-v12 {
        padding: clamp(56px, 10vw, 112px) 20px;
        background: var(--surface-2);
        color: var(--fg-on-page);
    }

    .nf404-v12__box {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        border-top: 6px solid var(--accent);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border-left: 1px solid var(--border-on-surface);
        border-right: 1px solid var(--border-on-surface);
        border-bottom: 1px solid var(--border-on-surface);
        padding: clamp(28px, 4vw, 46px);
    }

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

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

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