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

  --max-w: 820px;
  --space-x: 1.23rem;
  --space-y: 1.5rem;
  --gap: 0.7rem;

  --radius-xl: 0.84rem;
  --radius-lg: 0.62rem;
  --radius-md: 0.33rem;
  --radius-sm: 0.26rem;

  --shadow-sm: 0 1px 1px rgba(0,0,0,0.07);
  --shadow-md: 0 5px 12px rgba(0,0,0,0.09);
  --shadow-lg: 0 10px 22px rgba(0,0,0,0.11);

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

  --brand: #1a3a5c;
  --brand-contrast: #ffffff;
  --accent: #d97706;
  --accent-contrast: #ffffff;

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

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

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

  --surface-1: #ffffff;
  --surface-2: #f9fafb;
  --fg-on-surface: #1f2937;
  --border-on-surface: #e5e7eb;

  --surface-light: #ffffff;
  --fg-on-surface-light: #374151;
  --border-on-surface-light: #d1d5db;

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

  --bg-accent: #fef3c7;
  --fg-on-accent: #1a1a2e;
  --bg-accent-hover: #b45309;

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

  --gradient-hero: linear-gradient(135deg, #1a3a5c 0%, #2563eb 100%);
  --gradient-accent: linear-gradient(135deg, #d97706 0%, #b45309 100%);

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

header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-y) var(--space-x);
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.25);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
  }
  .nav-list a {
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-list a:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
  }
  .header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
  }
  .search-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--fg-on-surface);
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .search-toggle:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  @media (max-width: 767px) {
    .nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--overlay);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity var(--anim-duration) var(--anim-ease);
      z-index: 200;
    }
    .nav.open {
      opacity: 1;
      pointer-events: auto;
    }
    .nav-list {
      flex-direction: column;
      align-items: center;
      gap: 1rem;
      background: var(--surface-1);
      padding: 2rem;
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow-lg);
    }
    .nav-list a {
      font-size: calc(var(--font-size-base) * 1.1);
    }
    .burger {
      display: flex;
    }
    .header-actions {
      gap: 0.25rem;
    }
  }
  @media (min-width: 768px) {
    .nav {
      display: flex;
      align-items: center;
    }
  }

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

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

    .cookie-cv15__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, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

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

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

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

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

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

.nfintro-v8 {
        padding: clamp(3.6rem, 8vw, 6.8rem) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

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

    .nfintro-v8__main {
        padding: 1.2rem;
        border-radius: var(--radius-xl);
        background: var(--bg-alt);
    }

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

    .nfintro-v8__main h1 {
        margin: .6rem 0 0;
        font-size: clamp(2.3rem, 5vw, 4rem);
        line-height: 1.03;
    }

    .nfintro-v8__main strong {
        display: block;
        margin-top: .9rem;
        color: var(--brand);
    }

    .nfintro-v8__side {
        padding: 1.2rem;
        border-radius: var(--radius-xl);
        border: 1px solid var(--border-on-surface-light);
        display: grid;
        align-content: center;
        gap: .85rem;
    }

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

    .nfintro-v8__actions {
        display: flex;
        gap: .75rem;
        flex-wrap: wrap;
    }

    .nfintro-v8__actions a {
        display: inline-flex;
        min-height: 2.8rem;
        align-items: center;
        justify-content: center;
        padding: 0 1rem;
        border-radius: var(--radius-md);
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
        background: var(--surface-1);
    }

    .nfintro-v8__actions a:first-child {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-color: var(--bg-primary);
    }

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

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

    .next-fan-c5 {
        padding: clamp(3.6rem, 8vw, 6.2rem) var(--space-x);
        background: var(--gradient-accent);
        color: var(--gradient-contrast);
    }

    .next-fan-c5__wrap {
        max-width: 58rem;
        margin: 0 auto;
        text-align: center;
    }

    .next-fan-c5__banner p {
        margin: 0;
    }

    .next-fan-c5__banner h2 {
        margin: .5rem 0 0;
        font-size: clamp(2.1rem, 4vw, 3.1rem);
    }

    .next-fan-c5__fan {
        margin-top: 1.15rem;
        display: flex;
        gap: .75rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .next-fan-c5__fan a {
        display: block;
        padding: .9rem 1rem;
        min-width: 10rem;
        border-radius: var(--radius-lg);
        background: var(--accent);
        border: 1px solid rgba(255, 255, 255, .18);
        color: var(--accent-contrast);
        text-decoration: none;
    }

    .next-fan-c5__fan span {
        display: block;
        margin-top: .3rem;
    }

    .next-fan-c5__tail {
        margin-top: 1rem;

    }

    .next-fan-c5__wrap > a {
        display: inline-flex;
        margin-top: 1rem;
        min-height: 2.85rem;
        align-items: center;
        justify-content: center;
        padding: 0 1rem;
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        text-decoration: none;
    }

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

    .faq-fresh-v1 .shell {
        max-width: 860px;
        margin: 0 auto;
        display: grid;
        gap: var(--gap);
    }

    .faq-fresh-v1 h2 {
        margin: 0;
        font-size: clamp(1.8rem, 3.4vw, 2.6rem);
    }

    .faq-fresh-v1 .items {
        display: grid;
        gap: .8rem;
    }

    .faq-fresh-v1 details {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
        padding: .85rem 1rem;
        background: var(--surface-1);
    }

    .faq-fresh-v1 summary {
        cursor: pointer;
        font-weight: 700;
    }

    .faq-fresh-v1 p {
        margin: .7rem 0 0;
        color: var(--fg-on-surface-light);
    }

.features-struct-v4 {
        padding: calc(var(--space-y) * 2) var(--space-x);
        background: var(--bg-primary);
        color: var(--fg-on-primary)
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .features-struct-v4 details {
        padding: .75rem;
        border-radius: var(--radius-md);
        background: var(--chip-bg);
        border: 1px solid var(--border-on-surface)
    }

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

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

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

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

    .values-ladder-l4__wrap {
        max-width: 56rem;
        margin: 0 auto;
    }

    .values-ladder-l4__head {
        text-align: center;
        margin-bottom: 1.1rem;
    }

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

    .values-ladder-l4__head p {
        margin: .65rem auto 0;
        max-width: 40rem;
        color: var(--neutral-600);
    }

    .values-ladder-l4__rows {
        display: grid;
        gap: .8rem;
    }

    .values-ladder-l4__rows article {
        display: grid;
        grid-template-columns: 3rem 1fr;
        gap: .85rem;
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
    }

    .values-ladder-l4__step {
        display: grid;
        place-items: center;
        width: 3rem;
        height: 3rem;
        border-radius: var(--radius-md);
        background: var(--surface-2);
        color: var(--brand);
    }

    .values-ladder-l4__rows h3 {
        margin: 0;
    }

    .values-ladder-l4__rows p {
        margin: .35rem 0 0;
        color: var(--neutral-600);
    }

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

header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-y) var(--space-x);
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.25);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
  }
  .nav-list a {
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-list a:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
  }
  .header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
  }
  .search-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--fg-on-surface);
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .search-toggle:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  @media (max-width: 767px) {
    .nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--overlay);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity var(--anim-duration) var(--anim-ease);
      z-index: 200;
    }
    .nav.open {
      opacity: 1;
      pointer-events: auto;
    }
    .nav-list {
      flex-direction: column;
      align-items: center;
      gap: 1rem;
      background: var(--surface-1);
      padding: 2rem;
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow-lg);
    }
    .nav-list a {
      font-size: calc(var(--font-size-base) * 1.1);
    }
    .burger {
      display: flex;
    }
    .header-actions {
      gap: 0.25rem;
    }
  }
  @media (min-width: 768px) {
    .nav {
      display: flex;
      align-items: center;
    }
  }

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

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

    .cookie-cv15__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, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

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

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

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

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

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

.profile {

        color: var(--fg-on-page);
        background: linear-gradient(135deg, var(--bg-accent) 0%, var(--bg-page) 100%);
        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__tabs {
        display: flex;
        gap: 0.5rem;
        justify-content: center;
        margin-bottom: clamp(32px, 5vw, 48px);
        flex-wrap: wrap;
    }

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

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

    .profile .profile__tab:hover {
        background: var(--bg-alt);
        border-color: var(--bg-primary);
    }

    .profile .profile__tab.active {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-color: var(--bg-primary);
        box-shadow: var(--shadow-sm);
    }

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

    .profile .profile__panel {
        display: none;
    }

    .profile .profile__panel.active {
        display: block;
    }

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

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

    .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);
        flex-shrink: 0;
    }

    .profile .profile__avatar-actions {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        flex: 1;
    }

    .profile .profile__upload-btn {
        padding: 0.75rem 1.5rem;
        border-radius: var(--radius-md);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        font-weight: 600;
        text-align: center;
        border: 2px solid var(--bg-primary);
    }

    .profile .profile__upload-btn input {
        display: none;
    }

    .profile .profile__upload-btn:hover {
        background: var(--bg-primary-hover);
    }

    .profile .profile__remove-btn {
        padding: 0.75rem 1.5rem;
        border-radius: var(--radius-md);
        background: transparent;
        color: var(--fg-on-page);
        border: 2px solid var(--ring);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        font-weight: 600;
    }

    .profile .profile__remove-btn:hover {
        border-color: var(--accent);
        color: var(--accent);
        background: rgba(239, 68, 68, 0.1);
    }

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

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

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

        .profile .profile__avatar-section {
            flex-direction: column;
            text-align: center;
        }
    }

    .profile .profile__form-group {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        margin-bottom: clamp(20px, 3vw, 24px);
    }

    .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__submit {
        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);
        align-self: flex-start;
        box-shadow: var(--shadow-md);
    }

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

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

    .support-lv4 {
        padding: clamp(48px, 6vw, 80px) clamp(16px, 4vw, 36px);
        background: var(--neutral-100);
        color: var(--neutral-900);
    }

    .support-lv4__wrap {
        max-width: 900px;
        margin: 0 auto;
        display: grid;
        gap: 12px;
        grid-template-columns: 1fr 1fr;
    }

    .support-lv4__wrap article {
        border: 1px solid var(--neutral-300);
        border-radius: var(--radius-lg);
        background: var(--neutral-100);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-sm);
    }

    .support-lv4__wrap h3 {
        margin: 0 0 7px;
        color: var(--brand);
    }

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

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

.security {

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

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

    .security .security__h {
        margin-bottom: var(--space-y);
    }

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

    .security .security__sections {
        display: flex;
        flex-direction: column;
        gap: var(--space-y);
    }

    .security .security__section {
        background: var(--surface-light);
        padding: clamp(24px, 3vw, 32px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--ring);
        box-shadow: var(--shadow-sm);
    }

    .security h2 {
        font-size: clamp(20px, 3vw, 24px);
        margin: 0 0 1.5rem;
        color: var(--fg-on-primary);
    }

    .security .security__form {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .security .security__form input {
        padding: 0.875rem;
        border-radius: var(--radius-md);
        border: 1px solid var(--ring);

        outline: none;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .security .security__form input:focus {
        border-color: var(--bg-primary);
        box-shadow: 0 0 0 3px var(--ring);
    }

    .security .security__form button {
        padding: 0.875rem 2rem;
        border-radius: var(--radius-lg);
        border: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary) fff;
        font-weight: 600;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        align-self: flex-start;
    }

    .security .security__form button:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
    }

    .security .security__sessions {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .security .security__session {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem;
        background: var(--gradient-hero);
        border-radius: var(--radius-md);
        border: 1px solid var(--ring);
    }

    .security h4 {
        margin: 0 0 0.25rem;
        color: var(--fg-on-primary);
    }

    .security .security__session p {
        margin: 0;
        color: var(--neutral-600);
        font-size: 0.875rem;
    }

    .security .security__logout {
        padding: 0.5rem 1rem;
        border-radius: var(--radius-md);
        border: 1px solid var(--ring);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .security .security__logout:hover {
        background: var(--bg-primary);
        color: var(--fg-on-primary) fff;
        border-color: var(--bg-primary);
    }

header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-y) var(--space-x);
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.25);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
  }
  .nav-list a {
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-list a:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
  }
  .header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
  }
  .search-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--fg-on-surface);
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .search-toggle:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  @media (max-width: 767px) {
    .nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--overlay);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity var(--anim-duration) var(--anim-ease);
      z-index: 200;
    }
    .nav.open {
      opacity: 1;
      pointer-events: auto;
    }
    .nav-list {
      flex-direction: column;
      align-items: center;
      gap: 1rem;
      background: var(--surface-1);
      padding: 2rem;
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow-lg);
    }
    .nav-list a {
      font-size: calc(var(--font-size-base) * 1.1);
    }
    .burger {
      display: flex;
    }
    .header-actions {
      gap: 0.25rem;
    }
  }
  @media (min-width: 768px) {
    .nav {
      display: flex;
      align-items: center;
    }
  }

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

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

    .cookie-cv15__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, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

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

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

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

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

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

.settings {

        color: var(--fg-on-page);
        background: linear-gradient(135deg, var(--bg-accent) 0%, var(--bg-page) 100%);
        padding: clamp(24px, 4vw, 56px) clamp(16px, 4vw, 40px);
    }

    .settings .settings__c {
        max-width: 900px;
        margin: 0 auto;
    }

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

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

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

    .settings .settings__tabs-wrapper {
        background: var(--surface-light);
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        padding: 0.5rem;
        margin-bottom: clamp(24px, 4vw, 32px);
        box-shadow: var(--shadow-sm);
    }

    .settings .settings__tabs {
        display: flex;
        gap: 0.5rem;
        flex-wrap: wrap;
    }

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

    .settings .settings__tab {
        flex: 1;
        padding: 0.875rem 1.5rem;
        border: none;
        background: transparent;
        color: var(--neutral-600);
        font-weight: 600;
        cursor: pointer;
        border-radius: var(--radius-md);
        transition: all var(--anim-duration) var(--anim-ease);
        min-width: 120px;
    }

    .settings .settings__tab:hover {
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

    .settings .settings__tab.active {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-sm);
    }

    .settings .settings__content {
        background: var(--surface-light);
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-xl);
        padding: clamp(32px, 4vw, 48px);
        box-shadow: var(--shadow-md);
    }

    .settings .settings__panel {
        display: none;
    }

    .settings .settings__panel.active {
        display: block;
    }

    .settings .settings__section {
        margin-bottom: clamp(32px, 4vw, 40px);
        padding-bottom: clamp(24px, 4vw, 32px);
        border-bottom: 1px solid var(--border-on-surface-light);
    }

    .settings .settings__section:last-of-type {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }

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

    .settings .settings__form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: clamp(20px, 3vw, 28px);
    }

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

    @media (max-width: 767px) {
        .settings .settings__form-row {
            grid-template-columns: 1fr;
        }
    }

    .settings .settings__form-group {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

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

    .settings .settings__form-group input {
        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);
    }

    .settings .settings__form-group input:focus {
        border-color: var(--bg-primary);
        box-shadow: 0 0 0 3px var(--ring);
    }

    .settings .settings__avatar-upload {
        display: flex;
        gap: clamp(20px, 3vw, 32px);
        align-items: center;
    }

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

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

    .settings .settings__upload-controls {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .settings .settings__upload-label {
        padding: 0.75rem 1.5rem;
        border-radius: var(--radius-md);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        font-weight: 600;
        text-align: center;
        border: 2px solid var(--bg-primary);
    }

    .settings .settings__upload-label input {
        display: none;
    }

    .settings .settings__upload-label:hover {
        background: var(--bg-primary-hover);
    }

    .settings .settings__remove {
        padding: 0.75rem 1.5rem;
        border-radius: var(--radius-md);
        background: transparent;
        color: var(--fg-on-page);
        border: 2px solid var(--ring);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        font-weight: 600;
    }

    .settings .settings__remove:hover {
        border-color: var(--accent);
        color: var(--accent);
        background: rgba(239, 68, 68, 0.1);
    }

    .settings .settings__checkboxes {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

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

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

    .settings .settings__checkbox-label input {
        width: 20px;
        height: 20px;
        cursor: pointer;
    }

    .settings .settings__actions {
        display: flex;
        gap: 1rem;
        margin-top: clamp(32px, 4vw, 40px);
        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 */
    .settings .settings__actions > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

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

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

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

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

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

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

.education-struct-light-v16__modules {
    display: grid;
    gap: .6rem;
}

.education-struct-light-v16 details {
    background: var(--neutral-100);
    border: 1px solid var(--neutral-300);
    border-radius: var(--radius-lg);
    padding: .85rem;
}

.education-struct-light-v16 summary {
    cursor: pointer;
    font-weight: 700;
    color: var(--neutral-900);
}

.education-struct-light-v16 p {
    margin: .55rem 0 0;
    color: var(--neutral-800);
}

.education-struct-light-v16__cta {
    display: flex;
}

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

.security {

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

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

    .security .security__h {
        margin-bottom: var(--space-y);
    }

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

    .security .security__sections {
        display: flex;
        flex-direction: column;
        gap: var(--space-y);
    }

    .security .security__section {
        background: var(--surface-light);
        padding: clamp(24px, 3vw, 32px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--ring);
        box-shadow: var(--shadow-sm);
    }

    .security h2 {
        font-size: clamp(20px, 3vw, 24px);
        margin: 0 0 1.5rem;
        color: var(--fg-on-primary);
    }

    .security .security__form {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .security .security__form input {
        padding: 0.875rem;
        border-radius: var(--radius-md);
        border: 1px solid var(--ring);

        outline: none;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .security .security__form input:focus {
        border-color: var(--bg-primary);
        box-shadow: 0 0 0 3px var(--ring);
    }

    .security .security__form button {
        padding: 0.875rem 2rem;
        border-radius: var(--radius-lg);
        border: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary) fff;
        font-weight: 600;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        align-self: flex-start;
    }

    .security .security__form button:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
    }

    .security .security__sessions {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .security .security__session {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem;
        background: var(--gradient-hero);
        border-radius: var(--radius-md);
        border: 1px solid var(--ring);
    }

    .security h4 {
        margin: 0 0 0.25rem;
        color: var(--fg-on-primary);
    }

    .security .security__session p {
        margin: 0;
        color: var(--neutral-600);
        font-size: 0.875rem;
    }

    .security .security__logout {
        padding: 0.5rem 1rem;
        border-radius: var(--radius-md);
        border: 1px solid var(--ring);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .security .security__logout:hover {
        background: var(--bg-primary);
        color: var(--fg-on-primary) fff;
        border-color: var(--bg-primary);
    }

header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-y) var(--space-x);
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.25);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
  }
  .nav-list a {
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-list a:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
  }
  .header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
  }
  .search-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--fg-on-surface);
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .search-toggle:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  @media (max-width: 767px) {
    .nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--overlay);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity var(--anim-duration) var(--anim-ease);
      z-index: 200;
    }
    .nav.open {
      opacity: 1;
      pointer-events: auto;
    }
    .nav-list {
      flex-direction: column;
      align-items: center;
      gap: 1rem;
      background: var(--surface-1);
      padding: 2rem;
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow-lg);
    }
    .nav-list a {
      font-size: calc(var(--font-size-base) * 1.1);
    }
    .burger {
      display: flex;
    }
    .header-actions {
      gap: 0.25rem;
    }
  }
  @media (min-width: 768px) {
    .nav {
      display: flex;
      align-items: center;
    }
  }

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

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

    .cookie-cv15__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, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

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

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

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

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

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

.activities--colored-v5 {

    padding: 64px 20px;
    background: var(--neutral-900);
    color: var(--neutral-0);
}

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

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

.activities__header p {
    margin: 0 0 20px;
    color: var(--neutral-300);
}

.activities__timeline {
    list-style: none;
    margin: 0;
    padding: 0;
    border-left: 1px solid rgba(148,163,184,0.5);
}

.activities__item {
    display: grid;
    grid-template-columns: auto minmax(0,1fr);
    column-gap: 16px;
    padding: 12px 0 12px 0;
    position: relative;
}

.activities__dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: var(--bg-primary);
    box-shadow: 0 0 0 4px rgba(59,130,246,0.35);
    position: relative;
    left: -6.5px;
    top: 4px;
}

.activities__body {
    padding-left: 8px;
}

.activities__label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(191,219,254,0.9);
    margin-bottom: 2px;
}

.activities__title {
    margin: 0 0 4px;
    font-size: 1rem;
    color: var(--brand-contrast);
}

.activities__text {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(226,232,240,0.9);
}

.messages {

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

    .messages .messages__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: var(--space-x);

    }

    @media (max-width: 767px) {
        .messages .messages__c {
            grid-template-columns: 1fr;
            height: auto;
        }

        .messages .messages__chat-form {
            flex-direction: column;
        }
    }

    @media (min-width: 1024px) {
        .messages .messages__c {
            grid-template-columns: 300px 1fr;
        }
    }

    .messages .messages__list {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, 0.2);
        padding: 1rem;
        overflow-y: auto;
    }

    .messages h2 {
        margin: 0 0 1rem;
        color: var(--fg-on-page);
        font-size: 1.25rem;
    }

    .messages .messages__items {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .messages .messages__item {
        display: flex;
        gap: 1rem;
        padding: 1rem;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, 0.1);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .messages .messages__item:hover {
        background: rgba(255, 255, 255, 0.2);
    }

    .messages .messages__avatar {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
        color: var(--fg-on-page);
        flex-shrink: 0;
    }

    .messages .messages__info {
        flex: 1;
        min-width: 0;
    }

    .messages h4 {
        margin: 0 0 0.25rem;
        color: var(--fg-on-page);
        font-size: 1rem;
    }

    .messages .messages__info p {
        margin: 0 0 0.25rem;

        font-size: 0.875rem;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .messages .messages__time {
        font-size: 0.75rem;

    }

    .messages .messages__chat {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, 0.2);
        display: flex;
        flex-direction: column;
    }

    .messages .messages__chat-header {
        padding: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .messages h3 {
        margin: 0;
        color: var(--fg-on-page);
    }

    .messages .messages__chat-messages {
        flex: 1;
        padding: 1rem;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .messages .messages__message {
        background: rgba(255, 255, 255, 0.1);
        padding: 0.875rem 1rem;
        border-radius: var(--radius-md);
        max-width: 70%;
    }

    .messages .messages__message-text {
        color: var(--fg-on-page);
        margin-bottom: 0.25rem;
    }

    .messages .messages__message-time {
        font-size: 0.75rem;

    }

    .messages .messages__chat-form {
        display: flex;
        gap: 0.5rem;
        padding: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .messages .messages__chat-form input {
        flex: 1;
        padding: 0.875rem;
        border-radius: var(--radius-md);
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.1);
        color: var(--fg-on-page);
        outline: none;
    }

    .messages .messages__chat-form input::placeholder {

    }

    .messages .messages__chat-form button {
        padding: 0.875rem 1.5rem;
        border-radius: var(--radius-md);
        border: none;
        background: var(--bg-page);
        color: var(--bg-primary);
        font-weight: 600;
        cursor: pointer;
    }

.about-timeline {

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

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

    .about-timeline .about-timeline__zig {
        display: grid;
        gap: 16px;
    }

    .about-timeline .about-timeline__zig .item {
        list-style: none;
        background: #fff;
        color: var(--fg-on-page);
        border-radius: var(--radius-lg);
        padding: clamp(12px, 2vw, 20px);
        box-shadow: var(--shadow-sm);
    }

header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-y) var(--space-x);
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.25);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
  }
  .nav-list a {
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-list a:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
  }
  .header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
  }
  .search-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--fg-on-surface);
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .search-toggle:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  @media (max-width: 767px) {
    .nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--overlay);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity var(--anim-duration) var(--anim-ease);
      z-index: 200;
    }
    .nav.open {
      opacity: 1;
      pointer-events: auto;
    }
    .nav-list {
      flex-direction: column;
      align-items: center;
      gap: 1rem;
      background: var(--surface-1);
      padding: 2rem;
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow-lg);
    }
    .nav-list a {
      font-size: calc(var(--font-size-base) * 1.1);
    }
    .burger {
      display: flex;
    }
    .header-actions {
      gap: 0.25rem;
    }
  }
  @media (min-width: 768px) {
    .nav {
      display: flex;
      align-items: center;
    }
  }

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

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

    .cookie-cv15__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, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

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

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

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

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

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

.security {

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

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

    .security .security__h {
        margin-bottom: var(--space-y);
    }

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

    .security .security__sections {
        display: flex;
        flex-direction: column;
        gap: var(--space-y);
    }

    .security .security__section {
        background: var(--surface-light);
        padding: clamp(24px, 3vw, 32px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--ring);
        box-shadow: var(--shadow-sm);
    }

    .security h2 {
        font-size: clamp(20px, 3vw, 24px);
        margin: 0 0 1.5rem;
        color: var(--fg-on-primary);
    }

    .security .security__form {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .security .security__form input {
        padding: 0.875rem;
        border-radius: var(--radius-md);
        border: 1px solid var(--ring);

        outline: none;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .security .security__form input:focus {
        border-color: var(--bg-primary);
        box-shadow: 0 0 0 3px var(--ring);
    }

    .security .security__form button {
        padding: 0.875rem 2rem;
        border-radius: var(--radius-lg);
        border: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary) fff;
        font-weight: 600;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        align-self: flex-start;
    }

    .security .security__form button:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
    }

    .security .security__sessions {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .security .security__session {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem;
        background: var(--gradient-hero);
        border-radius: var(--radius-md);
        border: 1px solid var(--ring);
    }

    .security h4 {
        margin: 0 0 0.25rem;
        color: var(--fg-on-primary);
    }

    .security .security__session p {
        margin: 0;
        color: var(--neutral-600);
        font-size: 0.875rem;
    }

    .security .security__logout {
        padding: 0.5rem 1rem;
        border-radius: var(--radius-md);
        border: 1px solid var(--ring);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .security .security__logout:hover {
        background: var(--bg-primary);
        color: var(--fg-on-primary) fff;
        border-color: var(--bg-primary);
    }

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

    .clarifications-l1 {

        padding: clamp(18px, 3vw, 44px);
        background: var(--neutral-0);
        color: var(--neutral-900);
    }

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

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

    .clarifications-l1__title {
        margin: 0;
        font-size: clamp(24px, 4.2vw, 40px);
        letter-spacing: -.02em;
        line-height: 1.1;
        color: var(--neutral-900);
    }

    .clarifications-l1__sub {
        margin: 10px 0 0;
        max-width: 72ch;
        color: var(--neutral-600);
    }

    .clarifications-l1__grid {
        display: grid;
        grid-template-columns:repeat(12, 1fr);
        gap: 14px;
    }

    .clarifications-l1__note {
        grid-column: span 4;
        border-radius: var(--radius-xl);
        background: var(--neutral-100);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
        padding: 16px;
        position: relative;
        overflow: hidden;
        animation: l1Float 6s var(--anim-ease) infinite;
    }

    .clarifications-l1__note:nth-child(2n) {
        animation-duration: 7.2s
    }

    .clarifications-l1__note:nth-child(3n) {
        animation-duration: 8.2s
    }

    @keyframes l1Float {
        0%, 100% {
            transform: translateY(0px)
        }
        50% {
            transform: translateY(-6px)
        }
    }

    .clarifications-l1__note::before {
        content: '';
        position: absolute;
        inset: -1px;
        background: radial-gradient(240px 120px at 20% 10%, rgba(0, 86, 179, 0.12), transparent 60%),
        radial-gradient(220px 140px at 85% 30%, rgba(255, 107, 53, 0.12), transparent 62%);
        pointer-events: none;
    }

    .clarifications-l1__cap {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        margin-bottom: 10px;
        position: relative;
        z-index: 1;
    }

    .clarifications-l1__badge {
        display: inline-flex;
        padding: 6px 10px;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--neutral-900);
        border: 1px solid rgba(0, 0, 0, 0.06);
        font-weight: 800;
        font-size: 0.9rem;
    }

    .clarifications-l1__spark {
        width: 10px;
        height: 10px;
        border-radius: 999px;
        background: var(--bg-primary);
        box-shadow: 0 0 0 0 rgba(0, 86, 179, 0.0);
        animation: l1Pulse 2.4s ease-in-out infinite;
    }

    @keyframes l1Pulse {
        0%, 100% {
            transform: scale(1);
            box-shadow: 0 0 0 0 rgba(0, 86, 179, 0.0)
        }
        50% {
            transform: scale(1.15);
            box-shadow: 0 0 0 10px rgba(0, 86, 179, 0.12)
        }
    }

    .clarifications-l1__q {
        margin: 0 0 8px;
        position: relative;
        z-index: 1;
        font-size: 1.05rem;
        letter-spacing: -.01em;
    }

    .clarifications-l1__a {
        margin: 0;
        position: relative;
        z-index: 1;
        color: var(--neutral-600);
        line-height: var(--line-height-base);
    }

    .clarifications-l1__note:hover {
        transform: translateY(-10px) rotate(-0.2deg);
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    @media (max-width: 980px) {
        .clarifications-l1__note {
            grid-column: span 6;
        }
    }

    @media (max-width: 640px) {
        .clarifications-l1__note {
            grid-column: span 12;
        }
    }

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

header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-y) var(--space-x);
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.25);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
  }
  .nav-list a {
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-list a:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
  }
  .header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
  }
  .search-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--fg-on-surface);
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .search-toggle:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  @media (max-width: 767px) {
    .nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--overlay);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity var(--anim-duration) var(--anim-ease);
      z-index: 200;
    }
    .nav.open {
      opacity: 1;
      pointer-events: auto;
    }
    .nav-list {
      flex-direction: column;
      align-items: center;
      gap: 1rem;
      background: var(--surface-1);
      padding: 2rem;
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow-lg);
    }
    .nav-list a {
      font-size: calc(var(--font-size-base) * 1.1);
    }
    .burger {
      display: flex;
    }
    .header-actions {
      gap: 0.25rem;
    }
  }
  @media (min-width: 768px) {
    .nav {
      display: flex;
      align-items: center;
    }
  }

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

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

    .cookie-cv15__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, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

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

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

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

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

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

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

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

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

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

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

    .form-layout-c .steps {
        background: var(--surface-1);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface-light);
        padding: 16px;
    }

    .form-layout-c .row {
        display: grid;
        gap: 10px;
    }

    .form-layout-c .row.two {
        grid-template-columns: 1fr 1fr;
    }

    .form-layout-c label {
        display: grid;
        gap: 6px;
        margin-bottom: 10px;
    }

    .form-layout-c input:not([type="checkbox"]), .form-layout-c textarea {
        width: 100%;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        padding: 9px;
        font: inherit;
    }

    .form-layout-c .agree {
        display: flex;
        gap: 8px;
        align-items: center;
        margin-top: 2px;
    }

    .form-layout-c button {
        margin-top: 10px;
        border: 0;
        border-radius: var(--radius-sm);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: 10px 14px;
    }

    @media (max-width: 760px) {
        .form-layout-c .row.two {
            grid-template-columns: 1fr;
        }
    }

.nfcontacts-v10 {
        padding: clamp(56px, 8vw, 94px) clamp(16px, 4vw, 34px);
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

    .nfcontacts-v10__wrap {
        max-width: 920px;
        margin: 0 auto;
    }

    .nfcontacts-v10__head {
        margin-bottom: 14px;
    }

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

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

    .nfcontacts-v10__rows {
        display: grid;
        gap: 8px;
    }

    .nfcontacts-v10__row {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--surface-1);
        padding: 10px 12px;
        display: grid;
        gap: 4px;
    }

    .nfcontacts-v10__social {
        margin-top: 12px;
    }

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

    .nfcontacts-v10__social div {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .nfcontacts-v10__social a {
        text-decoration: none;
        color: var(--fg-on-page);
        border: 1px solid var(--border-on-surface);
        border-radius: 999px;
        padding: 6px 10px;
    }

header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-y) var(--space-x);
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.25);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
  }
  .nav-list a {
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-list a:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
  }
  .header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
  }
  .search-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--fg-on-surface);
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .search-toggle:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  @media (max-width: 767px) {
    .nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--overlay);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity var(--anim-duration) var(--anim-ease);
      z-index: 200;
    }
    .nav.open {
      opacity: 1;
      pointer-events: auto;
    }
    .nav-list {
      flex-direction: column;
      align-items: center;
      gap: 1rem;
      background: var(--surface-1);
      padding: 2rem;
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow-lg);
    }
    .nav-list a {
      font-size: calc(var(--font-size-base) * 1.1);
    }
    .burger {
      display: flex;
    }
    .header-actions {
      gap: 0.25rem;
    }
  }
  @media (min-width: 768px) {
    .nav {
      display: flex;
      align-items: center;
    }
  }

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

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

    .cookie-cv15__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, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

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

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

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

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

    @media (max-width: 760px) {
        .cookie-cv15__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 {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-y) var(--space-x);
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.25);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
  }
  .nav-list a {
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-list a:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
  }
  .header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
  }
  .search-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--fg-on-surface);
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .search-toggle:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  @media (max-width: 767px) {
    .nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--overlay);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity var(--anim-duration) var(--anim-ease);
      z-index: 200;
    }
    .nav.open {
      opacity: 1;
      pointer-events: auto;
    }
    .nav-list {
      flex-direction: column;
      align-items: center;
      gap: 1rem;
      background: var(--surface-1);
      padding: 2rem;
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow-lg);
    }
    .nav-list a {
      font-size: calc(var(--font-size-base) * 1.1);
    }
    .burger {
      display: flex;
    }
    .header-actions {
      gap: 0.25rem;
    }
  }
  @media (min-width: 768px) {
    .nav {
      display: flex;
      align-items: center;
    }
  }

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

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

    .cookie-cv15__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, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

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

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

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

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

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

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

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

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

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

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

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

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

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

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

header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-y) var(--space-x);
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.25);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
  }
  .nav-list a {
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-list a:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
  }
  .header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
  }
  .search-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--fg-on-surface);
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .search-toggle:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  @media (max-width: 767px) {
    .nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--overlay);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity var(--anim-duration) var(--anim-ease);
      z-index: 200;
    }
    .nav.open {
      opacity: 1;
      pointer-events: auto;
    }
    .nav-list {
      flex-direction: column;
      align-items: center;
      gap: 1rem;
      background: var(--surface-1);
      padding: 2rem;
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow-lg);
    }
    .nav-list a {
      font-size: calc(var(--font-size-base) * 1.1);
    }
    .burger {
      display: flex;
    }
    .header-actions {
      gap: 0.25rem;
    }
  }
  @media (min-width: 768px) {
    .nav {
      display: flex;
      align-items: center;
    }
  }

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

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

    .cookie-cv15__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, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

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

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

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

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

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

.nfthank-v7 {
        padding: clamp(56px, 10vw, 110px) 18px;
        background: var(--gradient-accent);
        color: var(--accent-contrast);
    }

    .nfthank-v7__box {
        max-width: 740px;
        margin: 0 auto;
        text-align: center;
    }

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

    .nfthank-v7 p {
        margin: 12px 0 0;
        opacity: .92;
    }

    .nfthank-v7 a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 16px;
        border-radius: var(--radius-md);
        text-decoration: none;
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-y) var(--space-x);
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.25);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
  }
  .nav-list a {
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-list a:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
  }
  .header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
  }
  .search-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--fg-on-surface);
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .search-toggle:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  @media (max-width: 767px) {
    .nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--overlay);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity var(--anim-duration) var(--anim-ease);
      z-index: 200;
    }
    .nav.open {
      opacity: 1;
      pointer-events: auto;
    }
    .nav-list {
      flex-direction: column;
      align-items: center;
      gap: 1rem;
      background: var(--surface-1);
      padding: 2rem;
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow-lg);
    }
    .nav-list a {
      font-size: calc(var(--font-size-base) * 1.1);
    }
    .burger {
      display: flex;
    }
    .header-actions {
      gap: 0.25rem;
    }
  }
  @media (min-width: 768px) {
    .nav {
      display: flex;
      align-items: center;
    }
  }

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

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

    .cookie-cv15__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, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

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

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

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

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

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

.err-slab-e {
        padding: clamp(56px, 10vw, 112px) 20px;
        background: repeating-linear-gradient(45deg, var(--bg-alt), var(--bg-alt) 14px, var(--neutral-0) 14px, var(--neutral-0) 28px);
        color: var(--fg-on-page);
    }

    .err-slab-e .inner {
        max-width: 700px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(26px, 4vw, 42px);
        background: var(--surface-1);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-md);
    }

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

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

    .err-slab-e a {
        display: inline-block;
        margin-top: 16px;
        color: var(--link);
        text-decoration: none;
        border-bottom: 2px solid var(--link);
        padding-bottom: 2px;
    }