:root {
  --font-family: "Roboto", sans-serif;
  --font-size-base: 14.3px;
  --line-height-base: 1.26;

  --max-w: 1100px;
  --space-x: 0.81rem;
  --space-y: 0.7rem;
  --gap: 0.51rem;

  --radius-xl: 0.88rem;
  --radius-lg: 0.5rem;
  --radius-md: 0.33rem;
  --radius-sm: 0.24rem;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 8px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 26px rgba(0,0,0,0.12);

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

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

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

  --bg-page: #ffffff;
  --fg-on-page: #111827;

  --bg-alt: #f3f4f6;
  --fg-on-alt: #1f2937;

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

  --surface-light: #ffffff;
  --fg-on-surface-light: #4b5563;
  --border-on-surface-light: #e5e7eb;

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

  --bg-accent: #f97316;
  --fg-on-accent: #ffffff;
  --bg-accent-hover: #ea580c;

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

  --gradient-hero: linear-gradient(135deg, #1a3a5c 0%, #2563eb 100%);
  --gradient-accent: linear-gradient(135deg, #f97316 0%, #ea580c 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);
    padding: var(--space-y) var(--space-x);
    position: relative;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
  }
  .nav-menu ul {
    list-style: none;
    display: flex;
    gap: var(--gap);
    margin: 0;
    padding: 0;
  }
  .nav-menu a {
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-menu a:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
  }
  .cta-button {
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-size: var(--font-size-base);
    font-weight: 600;
    transition: background var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }
  .cta-button:hover {
    background: var(--bg-primary-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 span {
    display: block;
    width: 24px;
    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:hover {
    background: var(--btn-ghost-bg-hover);
  }
  @media (max-width: 767px) {
    .nav-menu {
      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);
    }
    .nav-menu.open {
      opacity: 1;
      pointer-events: auto;
    }
    .nav-menu ul {
      flex-direction: column;
      gap: var(--gap);
      background: var(--surface-1);
      padding: 2rem;
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow-lg);
    }
    .nav-menu a {
      font-size: calc(var(--font-size-base) * 1.25);
      text-align: center;
    }
    .burger {
      display: flex;
    }
    .cta-button {
      display: none;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: Arial, 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: flex-start;
    gap: 1.5rem;
  }
  .footer-brand .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f0a500;
    text-decoration: none;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-links a:hover {
    color: #f0a500;
  }
  .footer-contact p {
    margin: 0.25rem 0;
  }
  .footer-contact a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-contact a:hover {
    color: #f0a500;
  }
  .footer-disclaimer {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #333;
    text-align: center;
    font-size: 0.85rem;
    color: #aaa;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-links {
      align-items: center;
    }
  }

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

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

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

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

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

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

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

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

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

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

.hero-arc-v5 {
        padding: calc(var(--space-y) * 2.4) var(--space-x);
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    .hero-arc-v5 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        gap: calc(var(--gap) * 2);
        align-items: flex-end;
        justify-content: space-between;
    }

    .hero-arc-v5 .content {
        max-width: 66ch;
    }

    .hero-arc-v5 h1 {
        margin: .25rem 0;
        font-size: clamp(2.1rem, 5vw, 4rem);
        line-height: 1.02;
        letter-spacing: -.02em;
    }

    .hero-arc-v5 .subtitle {
        margin: 0 0 .5rem;
        opacity: .9;
        font-size: 1.05rem;
    }

    .hero-arc-v5 .desc {
        margin: 0;
        opacity: .8;
        max-width: 58ch;
    }

    .hero-arc-v5 .aside {
        min-width: 280px;
        max-width: 360px;
        display: grid;
        gap: var(--gap);
    }

    .hero-arc-v5 img {
        width: 100%;
        display: block;
        aspect-ratio: 4/5;
        object-fit: cover;
        border-radius: var(--radius-xl);
    }

    .hero-arc-v5 .actions {
        display: grid;
        gap: .7rem;
    }

    .hero-arc-v5 .actions a {
        display: block;
        text-align: center;
        padding: .66rem;
        border-radius: var(--radius-md);
        text-decoration: none;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-weight: 700;
    }

    .hero-arc-v5 .actions a:nth-child(even) {
        background: var(--surface-1);
        color: var(--fg-on-surface);
    }

    .hero-arc-v5 .ticker {
        max-width: var(--max-w);
        margin: calc(var(--space-y) * 1.2) auto 0;
        display: flex;
        flex-wrap: wrap;
        gap: .7rem;
        padding-top: var(--space-y);
        border-top: 1px solid var(--neutral-600);
    }

    .hero-arc-v5 .ticker span {
        padding: .45rem .7rem;
        border-radius: var(--radius-sm);
        background: var(--chip-bg);
        font-size: .9rem;
    }

    @media (max-width: 940px) {
        .hero-arc-v5 .shell {
            flex-direction: column;
            align-items: stretch;
        }

        .hero-arc-v5 .aside {
            max-width: none;
        }

        .hero-arc-v5 img {
            aspect-ratio: 16/9;
        }
    }

.next-strip-l2 {
        padding: clamp(3rem, 7vw, 5.6rem) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    .next-strip-l2__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        gap: 1rem;
        align-items: end;
        flex-wrap: wrap;
    }

    .next-strip-l2__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

    .next-strip-l2__wrap h2 {
        margin: .5rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .next-strip-l2__wrap a {
        display: inline-flex;
        min-height: 2.8rem;
        align-items: center;
        justify-content: center;
        padding: 0 1rem;
        border-radius: var(--radius-md);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        text-decoration: none;
    }

    .next-strip-l2__actions {
        max-width: var(--max-w);
        margin: 1rem auto 0;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
        gap: .75rem;
    }

    .next-strip-l2__actions a {
        display: block;
        padding: .95rem;
        border-radius: var(--radius-lg);
        background: var(--bg-alt);
        border: 1px solid var(--border-on-surface-light);
        text-decoration: none;
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

    .next-strip-l2__actions span {
        display: block;
        margin-top: .35rem;
        color: var(--neutral-600);
    }

    .next-strip-l2 {
        overflow: hidden;
    }

    .next-strip-l2__wrap {
        background-image: linear-gradient(rgba(255, 255, 255, .86), rgba(255, 255, 255, .86)), url('https://images.pexels.com/photos/159306/pexels-photo-159306.jpeg?auto=compress&cs=tinysrgb&w=800');
        color: black;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        border-radius: var(--radius-xl);
        overflow: hidden;
        padding: var(--gap);
        box-shadow: var(--shadow-sm)
    }

.faq-fresh-v4 {
        padding: calc(var(--space-y) * 2.7) var(--space-x);
        background: var(--gradient-hero);
        color: var(--brand-contrast);
    }

    .faq-fresh-v4 .shell {
        max-width: 1000px;
        margin: 0 auto;
        display: grid;
        grid-template-columns:.9fr 1.1fr;
        gap: var(--gap);
    }

    .faq-fresh-v4 .cover {
        padding: 1.1rem;
        border-radius: var(--radius-lg);
        background: var(--chip-bg);
        align-self: start;
    }

    .faq-fresh-v4 .cover h2 {
        margin: 0 0 .5rem;
    }

    .faq-fresh-v4 .cover p {
        margin: 0;
        opacity: .9;
    }

    .faq-fresh-v4 .rows {
        display: grid;
        gap: .75rem;
    }

    .faq-fresh-v4 details {
        padding: .85rem 1rem;
        border-radius: var(--radius-md);
        background: var(--chip-bg);
        border: 1px solid var(--btn-ghost-bg-hover);
    }

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

    .faq-fresh-v4 details p {
        margin: .65rem 0 0;
        opacity: .9;
    }

    @media (max-width: 860px) {
        .faq-fresh-v4 .shell {
            grid-template-columns:1fr;
        }
    }

.values-grid-l2 {
        padding: clamp(3.1rem, 7vw, 5.7rem) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

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

    .values-grid-l2__head {
        margin-bottom: 1.1rem;
    }

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

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

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

    .values-grid-l2__grid article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--bg-alt);
        border: 1px solid var(--border-on-surface-light);
    }

    .values-grid-l2__grid i {
        font-style: normal;
    }

    .values-grid-l2__grid h3 {
        margin: .75rem 0 .35rem;
    }

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

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

header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) var(--space-x);
    position: relative;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
  }
  .nav-menu ul {
    list-style: none;
    display: flex;
    gap: var(--gap);
    margin: 0;
    padding: 0;
  }
  .nav-menu a {
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-menu a:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
  }
  .cta-button {
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-size: var(--font-size-base);
    font-weight: 600;
    transition: background var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }
  .cta-button:hover {
    background: var(--bg-primary-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 span {
    display: block;
    width: 24px;
    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:hover {
    background: var(--btn-ghost-bg-hover);
  }
  @media (max-width: 767px) {
    .nav-menu {
      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);
    }
    .nav-menu.open {
      opacity: 1;
      pointer-events: auto;
    }
    .nav-menu ul {
      flex-direction: column;
      gap: var(--gap);
      background: var(--surface-1);
      padding: 2rem;
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow-lg);
    }
    .nav-menu a {
      font-size: calc(var(--font-size-base) * 1.25);
      text-align: center;
    }
    .burger {
      display: flex;
    }
    .cta-button {
      display: none;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: Arial, 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: flex-start;
    gap: 1.5rem;
  }
  .footer-brand .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f0a500;
    text-decoration: none;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-links a:hover {
    color: #f0a500;
  }
  .footer-contact p {
    margin: 0.25rem 0;
  }
  .footer-contact a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-contact a:hover {
    color: #f0a500;
  }
  .footer-disclaimer {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #333;
    text-align: center;
    font-size: 0.85rem;
    color: #aaa;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-links {
      align-items: center;
    }
  }

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

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

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

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

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

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

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

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

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

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

.profile {

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

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

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

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

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

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

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

    /* Si randomNumber es 2 (par) - el primer hijo recibe order: 2 */
    .profile .profile__header > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

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

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

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

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

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

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

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

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

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

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

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

    /* Si randomNumber es 2 (par) - el primer hijo recibe order: 2 */
    .profile .profile__form > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

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

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

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

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

    /* Si randomNumber es 2 (par) - el primer hijo recibe order: 2 */
    .profile .profile__form-grid > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

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

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

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

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

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

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

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

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

    /* Si randomNumber es 2 (par) - el primer hijo recibe order: 2 */
    .profile .profile__checkboxes > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

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

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

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

    /* Si randomNumber es 2 (par) - el primer hijo recibe order: 2 */
    .profile .profile__actions > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

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

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

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

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

.support-cv2 {
        padding: clamp(56px, 7vw, 96px) clamp(16px, 4vw, 36px);
        background: linear-gradient(140deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
    }

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

    .support-cv2__box {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: var(--gap);
        border-radius: var(--radius-xl);
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.12);
        padding: 16px;
    }

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

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

    .support-cv2__box a {
        text-decoration: none;
        white-space: nowrap;
        padding: 10px 16px;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .support-cv2__box {
            flex-direction: column;
            align-items: flex-start;
        }
    }

header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) var(--space-x);
    position: relative;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
  }
  .nav-menu ul {
    list-style: none;
    display: flex;
    gap: var(--gap);
    margin: 0;
    padding: 0;
  }
  .nav-menu a {
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-menu a:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
  }
  .cta-button {
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-size: var(--font-size-base);
    font-weight: 600;
    transition: background var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }
  .cta-button:hover {
    background: var(--bg-primary-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 span {
    display: block;
    width: 24px;
    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:hover {
    background: var(--btn-ghost-bg-hover);
  }
  @media (max-width: 767px) {
    .nav-menu {
      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);
    }
    .nav-menu.open {
      opacity: 1;
      pointer-events: auto;
    }
    .nav-menu ul {
      flex-direction: column;
      gap: var(--gap);
      background: var(--surface-1);
      padding: 2rem;
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow-lg);
    }
    .nav-menu a {
      font-size: calc(var(--font-size-base) * 1.25);
      text-align: center;
    }
    .burger {
      display: flex;
    }
    .cta-button {
      display: none;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: Arial, 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: flex-start;
    gap: 1.5rem;
  }
  .footer-brand .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f0a500;
    text-decoration: none;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-links a:hover {
    color: #f0a500;
  }
  .footer-contact p {
    margin: 0.25rem 0;
  }
  .footer-contact a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-contact a:hover {
    color: #f0a500;
  }
  .footer-disclaimer {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #333;
    text-align: center;
    font-size: 0.85rem;
    color: #aaa;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-links {
      align-items: center;
    }
  }

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

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

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

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

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

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

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

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

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

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

.settings {

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

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

    .settings .settings__tabs {
        display: flex;
        gap: 0.5rem;
        margin-bottom: var(--space-y);
        border-bottom: 1px solid var(--ring);
    }

    /* Si randomNumber es par (2) - el primer hijo recibe order: 2 */
    .settings .settings__tabs > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    .settings .settings__tab {
        padding: 0.875rem 1.5rem;
        border: none;
        background: transparent;
        color: var(--neutral-600);
        font-weight: 600;
        cursor: pointer;
        border-bottom: 2px solid transparent;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .settings .settings__tab:hover {
        color: var(--bg-primary);
    }

    .settings .settings__tab.active {
        color: var(--bg-primary);
        border-color: var(--bg-primary);
    }

    .settings .settings__form {
        background: var(--surface-light);
        padding: clamp(24px, 3vw, 40px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--ring);
        box-shadow: var(--shadow-sm);
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    /* Si randomNumber es par (2) - el primer hijo recibe order: 2 */
    .settings .settings__form > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

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

    .settings .settings__group label {
        font-weight: 600;
        color: var(--fg-on-page);
    }

    .settings .settings__group input[type="text"],
    .settings .settings__group input[type="email"],
    .settings .settings__group input[type="file"] {
        padding: 0.875rem;
        border-radius: var(--radius-md);
        border: 1px solid var(--ring);

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

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

    .settings .settings__group input[type="checkbox"] {
        margin-right: 0.5rem;
    }

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

    .settings .settings__submit:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
    }

.index-recommendations-board {
        background: radial-gradient(circle at 18% 20%, rgba(248, 225, 231, 0.35), transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(212, 165, 165, 0.35), transparent 55%),
        linear-gradient(135deg, rgba(58, 46, 61, 0.98), rgba(58, 46, 61, 0.88));
        color: var(--neutral-0);
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 40px);
        overflow: hidden;
    }

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

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

        transform: translateY(-18px);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.clarifications-l1 {

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

    .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(--fg-on-page);
    }

    .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(--surface-1);
        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(--fg-on-accent);
        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);
    padding: var(--space-y) var(--space-x);
    position: relative;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
  }
  .nav-menu ul {
    list-style: none;
    display: flex;
    gap: var(--gap);
    margin: 0;
    padding: 0;
  }
  .nav-menu a {
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-menu a:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
  }
  .cta-button {
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-size: var(--font-size-base);
    font-weight: 600;
    transition: background var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }
  .cta-button:hover {
    background: var(--bg-primary-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 span {
    display: block;
    width: 24px;
    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:hover {
    background: var(--btn-ghost-bg-hover);
  }
  @media (max-width: 767px) {
    .nav-menu {
      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);
    }
    .nav-menu.open {
      opacity: 1;
      pointer-events: auto;
    }
    .nav-menu ul {
      flex-direction: column;
      gap: var(--gap);
      background: var(--surface-1);
      padding: 2rem;
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow-lg);
    }
    .nav-menu a {
      font-size: calc(var(--font-size-base) * 1.25);
      text-align: center;
    }
    .burger {
      display: flex;
    }
    .cta-button {
      display: none;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: Arial, 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: flex-start;
    gap: 1.5rem;
  }
  .footer-brand .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f0a500;
    text-decoration: none;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-links a:hover {
    color: #f0a500;
  }
  .footer-contact p {
    margin: 0.25rem 0;
  }
  .footer-contact a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-contact a:hover {
    color: #f0a500;
  }
  .footer-disclaimer {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #333;
    text-align: center;
    font-size: 0.85rem;
    color: #aaa;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-links {
      align-items: center;
    }
  }

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

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

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

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

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

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

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

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

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

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

.activity {

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

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

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

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

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

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

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

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

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

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

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

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

.about-timeline {

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

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

    .about-timeline .about-timeline__grid {
        display: grid;
        gap: var(--space-x);
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .about-timeline .about-timeline__cell {
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .25);
        border-radius: var(--radius-lg);
        padding: clamp(12px, 2vw, 20px);
    }

    .about-timeline time {
        opacity: .9;
    }

    @media (max-width: 767px) {
        .about-timeline .about-timeline__grid {
            grid-template-columns: repeat(1, minmax(0, 1fr));
        }
    }

.index-recommendations-board {
        background: radial-gradient(circle at 18% 20%, rgba(248, 225, 231, 0.35), transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(212, 165, 165, 0.35), transparent 55%),
        linear-gradient(135deg, rgba(58, 46, 61, 0.98), rgba(58, 46, 61, 0.88));
        color: var(--neutral-0);
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 40px);
        overflow: hidden;
    }

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

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

        transform: translateY(-18px);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) var(--space-x);
    position: relative;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
  }
  .nav-menu ul {
    list-style: none;
    display: flex;
    gap: var(--gap);
    margin: 0;
    padding: 0;
  }
  .nav-menu a {
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-menu a:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
  }
  .cta-button {
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-size: var(--font-size-base);
    font-weight: 600;
    transition: background var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }
  .cta-button:hover {
    background: var(--bg-primary-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 span {
    display: block;
    width: 24px;
    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:hover {
    background: var(--btn-ghost-bg-hover);
  }
  @media (max-width: 767px) {
    .nav-menu {
      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);
    }
    .nav-menu.open {
      opacity: 1;
      pointer-events: auto;
    }
    .nav-menu ul {
      flex-direction: column;
      gap: var(--gap);
      background: var(--surface-1);
      padding: 2rem;
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow-lg);
    }
    .nav-menu a {
      font-size: calc(var(--font-size-base) * 1.25);
      text-align: center;
    }
    .burger {
      display: flex;
    }
    .cta-button {
      display: none;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: Arial, 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: flex-start;
    gap: 1.5rem;
  }
  .footer-brand .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f0a500;
    text-decoration: none;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-links a:hover {
    color: #f0a500;
  }
  .footer-contact p {
    margin: 0.25rem 0;
  }
  .footer-contact a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-contact a:hover {
    color: #f0a500;
  }
  .footer-disclaimer {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #333;
    text-align: center;
    font-size: 0.85rem;
    color: #aaa;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-links {
      align-items: center;
    }
  }

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

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

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

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

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

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

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

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

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

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

.security--colored-v5 {

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

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

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

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

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

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

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

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

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

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

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

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

.support-cv2 {
        padding: clamp(56px, 7vw, 96px) clamp(16px, 4vw, 36px);
        background: linear-gradient(140deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
    }

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

    .support-cv2__box {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: var(--gap);
        border-radius: var(--radius-xl);
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.12);
        padding: 16px;
    }

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

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

    .support-cv2__box a {
        text-decoration: none;
        white-space: nowrap;
        padding: 10px 16px;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .support-cv2__box {
            flex-direction: column;
            align-items: flex-start;
        }
    }

header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) var(--space-x);
    position: relative;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
  }
  .nav-menu ul {
    list-style: none;
    display: flex;
    gap: var(--gap);
    margin: 0;
    padding: 0;
  }
  .nav-menu a {
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-menu a:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
  }
  .cta-button {
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-size: var(--font-size-base);
    font-weight: 600;
    transition: background var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }
  .cta-button:hover {
    background: var(--bg-primary-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 span {
    display: block;
    width: 24px;
    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:hover {
    background: var(--btn-ghost-bg-hover);
  }
  @media (max-width: 767px) {
    .nav-menu {
      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);
    }
    .nav-menu.open {
      opacity: 1;
      pointer-events: auto;
    }
    .nav-menu ul {
      flex-direction: column;
      gap: var(--gap);
      background: var(--surface-1);
      padding: 2rem;
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow-lg);
    }
    .nav-menu a {
      font-size: calc(var(--font-size-base) * 1.25);
      text-align: center;
    }
    .burger {
      display: flex;
    }
    .cta-button {
      display: none;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: Arial, 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: flex-start;
    gap: 1.5rem;
  }
  .footer-brand .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f0a500;
    text-decoration: none;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-links a:hover {
    color: #f0a500;
  }
  .footer-contact p {
    margin: 0.25rem 0;
  }
  .footer-contact a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-contact a:hover {
    color: #f0a500;
  }
  .footer-disclaimer {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #333;
    text-align: center;
    font-size: 0.85rem;
    color: #aaa;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-links {
      align-items: center;
    }
  }

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

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

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

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

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

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

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

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

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

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

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

.form-fresh-v2 {
        padding: calc(var(--space-y) * 2.4) var(--space-x);
        background: var(--bg-alt);
        color: var(--fg-on-alt);
    }

    .form-fresh-v2 .shell {
        max-width: 760px;
        margin: 0 auto;
        display: grid;
        gap: var(--gap);
    }

    .form-fresh-v2 h2 {
        margin: 0;
        font-size: clamp(1.7rem, 3.1vw, 2.4rem);
    }

    .form-fresh-v2 p {
        margin: 0;
        color: var(--fg-on-surface-light);
    }

    .form-fresh-v2 form {
        display: grid;
        grid-template-columns:repeat(2, minmax(0, 1fr));
        gap: .75rem;
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
    }

    .form-fresh-v2 label {
        display: grid;
        gap: .3rem;
        font-size: .9rem;
    }

    .form-fresh-v2 input {
        padding: .66rem .75rem;
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-sm);
        font: inherit;
    }

    .form-fresh-v2 button {
        grid-column: 1/-1;
        padding: .72rem 1rem;
        border: 0;
        border-radius: var(--radius-sm);
        background: var(--gradient-accent);
        color: var(--accent-contrast);
        font-weight: 700;
        cursor: pointer;
    }

    @media (max-width: 700px) {
        .form-fresh-v2 form {
            grid-template-columns:1fr;
        }
    }

header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) var(--space-x);
    position: relative;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
  }
  .nav-menu ul {
    list-style: none;
    display: flex;
    gap: var(--gap);
    margin: 0;
    padding: 0;
  }
  .nav-menu a {
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-menu a:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
  }
  .cta-button {
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-size: var(--font-size-base);
    font-weight: 600;
    transition: background var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }
  .cta-button:hover {
    background: var(--bg-primary-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 span {
    display: block;
    width: 24px;
    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:hover {
    background: var(--btn-ghost-bg-hover);
  }
  @media (max-width: 767px) {
    .nav-menu {
      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);
    }
    .nav-menu.open {
      opacity: 1;
      pointer-events: auto;
    }
    .nav-menu ul {
      flex-direction: column;
      gap: var(--gap);
      background: var(--surface-1);
      padding: 2rem;
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow-lg);
    }
    .nav-menu a {
      font-size: calc(var(--font-size-base) * 1.25);
      text-align: center;
    }
    .burger {
      display: flex;
    }
    .cta-button {
      display: none;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: Arial, 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: flex-start;
    gap: 1.5rem;
  }
  .footer-brand .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f0a500;
    text-decoration: none;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-links a:hover {
    color: #f0a500;
  }
  .footer-contact p {
    margin: 0.25rem 0;
  }
  .footer-contact a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-contact a:hover {
    color: #f0a500;
  }
  .footer-disclaimer {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #333;
    text-align: center;
    font-size: 0.85rem;
    color: #aaa;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-links {
      align-items: center;
    }
  }

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

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

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

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

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

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

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

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

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

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

.terms-layout-d {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--accent);
        color: var(--neutral-0);
    }

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

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

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

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

    .terms-layout-d ol {
        margin: 0;
        padding-left: 20px;
        display: grid;
        gap: 10px;
    }

    .terms-layout-d li {
        border: 1px solid rgba(255, 255, 255, .2);
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .05);
        padding: 12px;
    }

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

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

header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) var(--space-x);
    position: relative;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
  }
  .nav-menu ul {
    list-style: none;
    display: flex;
    gap: var(--gap);
    margin: 0;
    padding: 0;
  }
  .nav-menu a {
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-menu a:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
  }
  .cta-button {
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-size: var(--font-size-base);
    font-weight: 600;
    transition: background var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }
  .cta-button:hover {
    background: var(--bg-primary-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 span {
    display: block;
    width: 24px;
    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:hover {
    background: var(--btn-ghost-bg-hover);
  }
  @media (max-width: 767px) {
    .nav-menu {
      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);
    }
    .nav-menu.open {
      opacity: 1;
      pointer-events: auto;
    }
    .nav-menu ul {
      flex-direction: column;
      gap: var(--gap);
      background: var(--surface-1);
      padding: 2rem;
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow-lg);
    }
    .nav-menu a {
      font-size: calc(var(--font-size-base) * 1.25);
      text-align: center;
    }
    .burger {
      display: flex;
    }
    .cta-button {
      display: none;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: Arial, 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: flex-start;
    gap: 1.5rem;
  }
  .footer-brand .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f0a500;
    text-decoration: none;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-links a:hover {
    color: #f0a500;
  }
  .footer-contact p {
    margin: 0.25rem 0;
  }
  .footer-contact a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-contact a:hover {
    color: #f0a500;
  }
  .footer-disclaimer {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #333;
    text-align: center;
    font-size: 0.85rem;
    color: #aaa;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-links {
      align-items: center;
    }
  }

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

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

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

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

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

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

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

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

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

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

.policy-layout-e {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--accent);
        color: var(--neutral-0);
    }

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

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

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

    .policy-layout-e .section-head p {
        margin: 10px auto 0;
        max-width: 72ch;
        color: var(--neutral-100);
    }

    .policy-layout-e .columns {
        columns: 2 260px;
        column-gap: 14px;
    }

    .policy-layout-e article {
        break-inside: avoid;
        margin-bottom: 12px;
        border-radius: var(--radius-md);
        border: 1px solid rgba(255, 255, 255, .22);
        padding: 12px;
        background: rgba(255, 255, 255, .05);
    }

    .policy-layout-e h3 {
        margin: 0;
    }

    .policy-layout-e .meta {
        margin: 7px 0 0;
        color: var(--neutral-100);
    }

    .policy-layout-e article p:last-child {
        margin: 7px 0 0;
        color: var(--neutral-100);
    }

header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) var(--space-x);
    position: relative;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
  }
  .nav-menu ul {
    list-style: none;
    display: flex;
    gap: var(--gap);
    margin: 0;
    padding: 0;
  }
  .nav-menu a {
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-menu a:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
  }
  .cta-button {
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-size: var(--font-size-base);
    font-weight: 600;
    transition: background var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }
  .cta-button:hover {
    background: var(--bg-primary-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 span {
    display: block;
    width: 24px;
    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:hover {
    background: var(--btn-ghost-bg-hover);
  }
  @media (max-width: 767px) {
    .nav-menu {
      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);
    }
    .nav-menu.open {
      opacity: 1;
      pointer-events: auto;
    }
    .nav-menu ul {
      flex-direction: column;
      gap: var(--gap);
      background: var(--surface-1);
      padding: 2rem;
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow-lg);
    }
    .nav-menu a {
      font-size: calc(var(--font-size-base) * 1.25);
      text-align: center;
    }
    .burger {
      display: flex;
    }
    .cta-button {
      display: none;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: Arial, 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: flex-start;
    gap: 1.5rem;
  }
  .footer-brand .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f0a500;
    text-decoration: none;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-links a:hover {
    color: #f0a500;
  }
  .footer-contact p {
    margin: 0.25rem 0;
  }
  .footer-contact a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-contact a:hover {
    color: #f0a500;
  }
  .footer-disclaimer {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #333;
    text-align: center;
    font-size: 0.85rem;
    color: #aaa;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-links {
      align-items: center;
    }
  }

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

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

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

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

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

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

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

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

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

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

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

    .thank-mode-a .box {
        max-width: 720px;
        margin: 0 auto;
        text-align: center;
    }

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

    .thank-mode-a p {
        margin: 12px 0 0;
        opacity: .92;
    }

    .thank-mode-a 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);
    padding: var(--space-y) var(--space-x);
    position: relative;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
  }
  .nav-menu ul {
    list-style: none;
    display: flex;
    gap: var(--gap);
    margin: 0;
    padding: 0;
  }
  .nav-menu a {
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-menu a:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
  }
  .cta-button {
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-size: var(--font-size-base);
    font-weight: 600;
    transition: background var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }
  .cta-button:hover {
    background: var(--bg-primary-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 span {
    display: block;
    width: 24px;
    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:hover {
    background: var(--btn-ghost-bg-hover);
  }
  @media (max-width: 767px) {
    .nav-menu {
      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);
    }
    .nav-menu.open {
      opacity: 1;
      pointer-events: auto;
    }
    .nav-menu ul {
      flex-direction: column;
      gap: var(--gap);
      background: var(--surface-1);
      padding: 2rem;
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow-lg);
    }
    .nav-menu a {
      font-size: calc(var(--font-size-base) * 1.25);
      text-align: center;
    }
    .burger {
      display: flex;
    }
    .cta-button {
      display: none;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: Arial, 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: flex-start;
    gap: 1.5rem;
  }
  .footer-brand .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f0a500;
    text-decoration: none;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-links a:hover {
    color: #f0a500;
  }
  .footer-contact p {
    margin: 0.25rem 0;
  }
  .footer-contact a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-contact a:hover {
    color: #f0a500;
  }
  .footer-disclaimer {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #333;
    text-align: center;
    font-size: 0.85rem;
    color: #aaa;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-links {
      align-items: center;
    }
  }

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

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

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

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

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

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

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

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

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

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

.nf404-v11 {
        padding: clamp(56px, 10vw, 112px) 20px;
        background: linear-gradient(150deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
    }

    .nf404-v11__shell {
        max-width: 700px;
        margin: 0 auto;
        text-align: center;
        border-radius: var(--radius-xl);
        padding: clamp(28px, 4vw, 44px);
        background: rgba(15, 23, 42, .24);
        border: 1px solid rgba(255, 255, 255, .24);
    }

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

    .nf404-v11 p {
        margin: 12px 0 0;
        opacity: .9;
    }

    .nf404-v11 a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 16px;
        border-radius: var(--radius-sm);
        background: var(--neutral-0);
        color: var(--neutral-900);
        text-decoration: none;
    }