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

  --max-w: 1320px;
  --space-x: 1rem;
  --space-y: 1.5rem;
  --gap: 1.16rem;

  --radius-xl: 1.28rem;
  --radius-lg: 0.86rem;
  --radius-md: 0.51rem;
  --radius-sm: 0.27rem;

  --shadow-sm: 0 1px 8px rgba(0,0,0,0.18);
  --shadow-md: 0 14px 32px rgba(0,0,0,0.23);
  --shadow-lg: 0 30px 48px rgba(0,0,0,0.29);

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

  --brand: #1E3A5F;
  --brand-contrast: #FFFFFF;
  --accent: #F97316;
  --accent-contrast: #FFFFFF;

  --neutral-0: #FFFFFF;
  --neutral-100: #F3F4F6;
  --neutral-300: #D1D5DB;
  --neutral-600: #6B7280;
  --neutral-800: #1F2937;
  --neutral-900: #111827;

  --bg-page: #FFFFFF;
  --fg-on-page: #1F2937;

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

  --surface-1: #FFFFFF;
  --surface-2: #F9FAFB;
  --fg-on-surface: #1F2937;
  --border-on-surface: #E5E7EB;

  --surface-light: #FFFFFF;
  --fg-on-surface-light: #374151;
  --border-on-surface-light: #E5E7EB;

  --bg-primary: #2563EB;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #1D4ED8;
  --ring: #2563EB;

  --bg-accent: #FFF7ED;
  --fg-on-accent: #FFFFFF;
  --bg-accent-hover: #EA580C;

  --link: #2563EB;
  --link-hover: #1D4ED8;

  --gradient-hero: linear-gradient(135deg, #1E3A5F 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);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
  }
  .nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }
  .nav-menu a {
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    line-height: var(--line-height-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(--brand);
  }
  .header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .search-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--fg-on-surface);
    padding: 0.5rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .search-toggle:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-md);
    flex-direction: column;
    gap: 4px;
  }
  .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.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
  }

  @media (max-width: 767px) {
    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1);
      border-bottom: 1px solid var(--border-on-surface);
      box-shadow: var(--shadow-md);
      padding: var(--space-y) var(--space-x);
      display: none;
    }
    .nav-menu.open {
      display: block;
    }
    .nav-menu ul {
      flex-direction: column;
      gap: 0.5rem;
    }
    .nav-menu a {
      display: block;
      padding: 0.75rem 1rem;
    }
    .burger {
      display: flex;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid #333;
    padding-bottom: 1.5rem;
  }
  .footer-logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .footer-logo a:hover {
    color: #ffc107;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  .footer-nav ul li a:hover {
    color: #f0a500;
  }
  .footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
  }
  address {
    font-style: normal;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
  }
  .contact-item {
    display: inline-block;
  }
  .contact-item a {
    color: #e0e0e0;
    text-decoration: none;
    border-bottom: 1px dotted #555;
  }
  .contact-item a:hover {
    color: #f0a500;
    border-bottom-color: #f0a500;
  }
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }
  .footer-links a:hover {
    color: #f0a500;
  }
  .footer-disclaimer {
    background-color: #16213e;
    padding: 1rem;
    border-radius: 4px;
    font-size: 0.85rem;
    color: #b0b0b0;
    text-align: center;
    border-left: 3px solid #f0a500;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  .footer-copyright {
    text-align: center;
    font-size: 0.85rem;
    color: #888;
    border-top: 1px solid #333;
    padding-top: 1rem;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      text-align: center;
      gap: 1rem;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-legal {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    address {
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
    }
    .footer-links {
      justify-content: center;
    }
  }

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

    .cookie-cv15__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

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

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

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

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

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

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

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

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

.wp-lang-switcher-v6 {
        position: fixed;
        right: clamp(16px, 2vw, var(--space-x, 24px));
        bottom: clamp(16px, 2vw, var(--space-y, 20px));
        z-index: 99999;

        --local-random: var(--random-number, 1);
    }

    .wp-lang-switcher-v6__btn {
        background: var(--surface-1, #fff);
        color: var(--fg-on-surface, #111827);
        padding: calc(9px + var(--local-random) * 1px) calc(14px + var(--local-random) * 2px);
        border: 1px solid var(--border-on-surface, #e5e7eb);
        border-radius: calc(var(--radius-sm, 8px) + var(--local-random) * 1px);
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        box-shadow: var(--shadow-sm, 0 2px 4px rgba(0, 0, 0, 0.05));
        transition: all var(--anim-duration, 0.3s) var(--anim-ease, ease-in-out);

        font-size: 14px;
        font-weight: 400;
        position: relative;
    }

    .wp-lang-switcher-v6__btn::after {
        content: '';
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
        width: 0;
        height: 0;
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-top: 5px solid var(--neutral-600, #4b5563);
        transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease-in-out);
    }

    .wp-lang-switcher-v6__btn:hover {
        background: var(--surface-2, #f9fafb);
        border-color: var(--neutral-300, #d1d5db);
    }

    .wp-lang-switcher-v6__dropdown.open ~ .wp-lang-switcher-v6__btn::after,
    .wp-lang-switcher-v6__btn:has(~ .wp-lang-switcher-v6__dropdown.open)::after {
        transform: translateY(-50%) rotate(180deg);
    }

    .wp-lang-switcher-v6__flag {
        font-size: 18px;
        line-height: 1;
    }

    .wp-lang-switcher-v6__text {
        padding-right: calc(12px + var(--local-random) * 2px);
    }

    .wp-lang-switcher-v6__dropdown {
        display: none;
        position: absolute;
        right: 0;
        bottom: calc(100% + 4px);
        background: var(--surface-1, #fff);
        border: 1px solid var(--border-on-surface, #e5e7eb);
        border-radius: calc(var(--radius-sm, 8px) + var(--local-random) * 1px);
        box-shadow: var(--shadow-md, 0 4px 12px rgba(0, 0, 0, 0.08));
        min-width: calc(180px + var(--local-random) * 10px);
        overflow: hidden;

        transform: translateY(6px);
        transition: all var(--anim-duration, 0.3s) var(--anim-ease, ease-in-out);
    }

    .wp-lang-switcher-v6__dropdown.open {
        display: block;
        opacity: 1;
        transform: translateY(0);
    }

    .wp-lang-switcher-v6__dropdown button,
    .wp-lang-switcher-v6__dropdown a {
        width: 100%;
        text-align: left;
        padding: calc(9px + var(--local-random) * 1px) calc(12px + var(--local-random) * 2px);
        border: 0;
        background: var(--surface-1, #fff);
        color: var(--fg-on-surface, #111827);
        cursor: pointer;

        font-size: 14px;
        display: flex;
        align-items: center;
        gap: 10px;
        transition: background var(--anim-duration, 0.3s) var(--anim-ease, ease-in-out);
        text-decoration: none;
    }

    .wp-lang-switcher-v6__dropdown button:hover,
    .wp-lang-switcher-v6__dropdown a:hover {
        background: var(--bg-alt, #f9fafb);
    }

    .wp-lang-switcher-v6__dropdown button:active,
    .wp-lang-switcher-v6__dropdown a:active {
        background: var(--neutral-100, #f3f4f6);
    }

.intro-block-l10 {
        padding: clamp(3.5rem, 8vw, 6.4rem) var(--space-x);
        background: linear-gradient(180deg, var(--surface-1), var(--surface-2));
        color: var(--fg-on-page);
    }

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

    .intro-block-l10__eyebrow {
        color: var(--brand);
        font-size: .82rem;
        letter-spacing: .1em;
        text-transform: uppercase;
    }

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

    .intro-block-l10__cols {
        margin-top: 1.15rem;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .intro-block-l10__cols strong {
        display: block;
        color: var(--fg-on-page);
    }

    .intro-block-l10__cols p {
        margin: .7rem 0 0;
        color: var(--neutral-600);
    }

    .intro-block-l10__actions {
        margin-top: 1rem;
        display: flex;
        gap: .75rem;
        flex-wrap: wrap;
    }

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

    .intro-block-l10__actions a:first-child {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-color: var(--bg-primary);
    }

    @media (max-width: 760px) {
        .intro-block-l10__cols {
            grid-template-columns: 1fr;
        }
    }

    .intro-block-l10 {
        overflow: hidden;
    }

    .intro-block-l10__wrap {
        background-image: linear-gradient(rgba(255, 255, 255, .86), rgba(255, 255, 255, .86)), url('https://images.pexels.com/photos/669615/pexels-photo-669615.jpeg?auto=compress&cs=tinysrgb&w=800');
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        border-radius: var(--radius-xl);
        overflow: hidden;
        padding: var(--space-x)
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.education-struct-v1 {
        padding: calc(var(--space-y) * 2) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-surface)
    }

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

    .education-struct-v1 h2, .education-struct-v1 h3, .education-struct-v1 p {
        margin: 0
    }

    .education-struct-v1 a {
        text-decoration: none
    }

    .education-struct-v1 article, .education-struct-v1 .row, .education-struct-v1 details, .education-struct-v1 .program {
        background: var(--surface-2);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        padding: .85rem
    }

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

    .education-struct-v1 .grid a, .education-struct-v1 .tiers a, .education-struct-v1 .cta a {
        display: inline-flex;
        min-height: 2.3rem;
        padding: 0 .8rem;
        align-items: center;
        border-radius: var(--radius-sm);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border: 1px solid var(--ring)
    }

    .education-struct-v1 .path {
        display: grid;
        gap: .65rem
    }

    .education-struct-v1 .path article {
        position: relative;
        padding-left: 1.25rem
    }

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

    .education-struct-v1 .table {
        display: grid;
        gap: .45rem
    }

    .education-struct-v1 .row {
        display: grid;
        grid-template-columns:1fr 1fr 1fr;
        gap: .6rem
    }

    .education-struct-v1 .combo {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: var(--gap)
    }

    .education-struct-v1 .mentors {
        display: grid;
        gap: .6rem
    }

    .education-struct-v1 .mentors article {
        display: grid;
        grid-template-columns:3rem 1fr;
        gap: .6rem;
        align-items: center
    }

    .education-struct-v1 .mentors img {
        display: block;
        width: 3rem;
        height: 3rem;
        border-radius: 50%;
        object-fit: cover
    }

    .education-struct-v1 .program {
        display: grid;
        gap: .45rem
    }

    .education-struct-v1 .modules {
        display: grid;
        gap: .6rem
    }

    .education-struct-v1 .cta {
        display: flex
    }

    @media (max-width: 900px) {
        .education-struct-v1 .grid, .education-struct-v1 .tiers, .education-struct-v1 .combo {
            grid-template-columns:1fr 1fr
        }
    }

    @media (max-width: 680px) {
        .education-struct-v1 .grid, .education-struct-v1 .tiers, .education-struct-v1 .combo, .education-struct-v1 .row {
            grid-template-columns:1fr
        }
    }

.why-choose {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: clamp(40px, 6vw, 80px) clamp(16px, 3vw, 40px);
    }

    .why-choose .why-choose__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .why-choose .why-choose__h {
        text-align: center;
        margin-bottom: clamp(32px, 5vw, 64px);

        transform: translateY(20px);
    }

    .why-choose h2 {
        font-size: clamp(32px, 5vw, 48px);
        margin: 0 0 1rem;
        color: var(--fg-on-primary);
    }

    .why-choose .why-choose__subtitle {
        font-size: clamp(16px, 2vw, 20px);
        margin: 0;
        opacity: 0.9;
    }

    .why-choose .why-choose__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: var(--gap);
    }

    .why-choose .why-choose__item {
        background: var(--fg-on-primary);
        padding: clamp(20px, 3vw, 32px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface-light);
        transition: transform var(--anim-duration) var(--anim-ease);

        transform: translateY(30px);
    }

    .why-choose .why-choose__item:hover {
        transform: translateY(-4px);
    }

    .why-choose .why-choose__number {
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-radius: var(--radius-md);
        margin-bottom: 1rem;
        font-size: 24px;
    }

    .why-choose .why-choose__item h3 {
        font-size: clamp(18px, 2.2vw, 22px);
        margin: 0 0 0.75rem;
        color: var(--fg-on-surface-light);
    }

    .why-choose .why-choose__item p {
        margin: 0;
        color: var(--fg-on-surface-light);
        opacity: 0.85;
        line-height: var(--line-height-base);
    }

.nfsocial-v10 {
        padding: clamp(48px, 8vw, 80px) 0;
        background: var(--surface-1);
    }

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

    .nfsocial-v10__grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: calc(var(--gap) * 2);
        align-items: start;
    }

    .nfsocial-v10__text {
        border-left: 2px solid var(--border-on-surface);
        padding-left: var(--space-x);
    }

    .nfsocial-v10__text:first-child {
        border-left: 0;
        padding-left: 0;
    }

    .nfsocial-v10__text h2 {
        margin-bottom: var(--space-y);
        color: var(--fg-on-page);
    }

    .nfsocial-v10__text p {
        margin-bottom: var(--space-y);
        color: var(--neutral-600);
    }

    @media (max-width: 840px) {
        .nfsocial-v10__grid {
            grid-template-columns: 1fr;
        }

        .nfsocial-v10__text {
            border-left: 0;
            padding-left: 0;
        }
    }

header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) var(--space-x);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
  }
  .nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }
  .nav-menu a {
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    line-height: var(--line-height-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(--brand);
  }
  .header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .search-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--fg-on-surface);
    padding: 0.5rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .search-toggle:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-md);
    flex-direction: column;
    gap: 4px;
  }
  .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.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
  }

  @media (max-width: 767px) {
    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1);
      border-bottom: 1px solid var(--border-on-surface);
      box-shadow: var(--shadow-md);
      padding: var(--space-y) var(--space-x);
      display: none;
    }
    .nav-menu.open {
      display: block;
    }
    .nav-menu ul {
      flex-direction: column;
      gap: 0.5rem;
    }
    .nav-menu a {
      display: block;
      padding: 0.75rem 1rem;
    }
    .burger {
      display: flex;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid #333;
    padding-bottom: 1.5rem;
  }
  .footer-logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .footer-logo a:hover {
    color: #ffc107;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  .footer-nav ul li a:hover {
    color: #f0a500;
  }
  .footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
  }
  address {
    font-style: normal;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
  }
  .contact-item {
    display: inline-block;
  }
  .contact-item a {
    color: #e0e0e0;
    text-decoration: none;
    border-bottom: 1px dotted #555;
  }
  .contact-item a:hover {
    color: #f0a500;
    border-bottom-color: #f0a500;
  }
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }
  .footer-links a:hover {
    color: #f0a500;
  }
  .footer-disclaimer {
    background-color: #16213e;
    padding: 1rem;
    border-radius: 4px;
    font-size: 0.85rem;
    color: #b0b0b0;
    text-align: center;
    border-left: 3px solid #f0a500;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  .footer-copyright {
    text-align: center;
    font-size: 0.85rem;
    color: #888;
    border-top: 1px solid #333;
    padding-top: 1rem;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      text-align: center;
      gap: 1rem;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-legal {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    address {
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
    }
    .footer-links {
      justify-content: center;
    }
  }

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

    .cookie-cv15__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

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

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

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

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

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

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

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

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

.identity-cv1 {
        padding: clamp(56px, 8vw, 104px) clamp(16px, 4vw, 40px);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

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

    .identity-cv1__head {
        text-align: center;
        margin-bottom: 18px;
    }

    .identity-cv1__head p {
        margin: 0;
        opacity: .9;
        letter-spacing: .08em;
        text-transform: uppercase;
    }

    .identity-cv1__head h2 {
        margin: 8px 0;
        font-size: clamp(30px, 5vw, 52px);
    }

    .identity-cv1__head span {
        display: block;
        max-width: 74ch;
        margin: 0 auto;
        opacity: .92;
    }

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

    .identity-cv1__grid article {
        border: 1px solid rgba(255, 255, 255, 0.25);
        background: rgba(255, 255, 255, 0.12);
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-md);
    }

    .identity-cv1__icon {
        font-size: 1.6rem;
        margin-bottom: 8px;
    }

    .identity-cv1__grid h3 {
        margin: 0;
    }

    .identity-cv1__grid p {
        margin: 7px 0;
        opacity: .92;
    }

    .identity-cv1__grid small {
        opacity: .9;
    }

.team-section {
        padding: clamp(48px, 8vw, 80px) 0;
    }

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

    .team-section__title {
        text-align: center;
        margin-bottom: calc(var(--space-y) * 2);
        font-size: clamp(28px, 4vw, 40px);
        color: var(--fg-on-page);
    }

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

    .team-card {
        background-color: var(--surface-1);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        overflow: hidden;
        text-align: center;
        transition: all var(--anim-duration) var(--anim-ease);
        border: 1px solid var(--border-on-surface);
    }

    .team-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-lg);
    }

    .team-card__photo {
        width: 100%;
        height: 300px;
        object-fit: cover;
    }

    .team-card__info {
        padding: clamp(16px, 3vw, 28px);
    }

    .team-card__info h3 {
        margin-bottom: 0.5rem;
        color: var(--fg-on-surface);
    }

    .team-card__role {
        color: var(--brand);
        font-weight: 500;
        margin-bottom: var(--space-y);
    }

    .team-card__info p {
        margin: 0 auto;
        color: var(--fg-on-surface-light);
        font-size: 0.95rem;
    }

.about-mission {

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

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

    .about-mission .about-mission__q {
        font-size: clamp(22px, 4.5vw, 40px);
        margin: 0 0 .6rem;
        font-weight: 700;
    }

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

.about-timeline {

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

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

    .about-timeline .about-timeline__tbl {
        width: 100%;
        border-collapse: collapse;
    }

    .about-timeline .about-timeline__tbl td {
        border-bottom: 1px solid var(--ring);
        padding: .7rem .8rem;
    }

header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) var(--space-x);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
  }
  .nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }
  .nav-menu a {
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    line-height: var(--line-height-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(--brand);
  }
  .header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .search-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--fg-on-surface);
    padding: 0.5rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .search-toggle:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-md);
    flex-direction: column;
    gap: 4px;
  }
  .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.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
  }

  @media (max-width: 767px) {
    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1);
      border-bottom: 1px solid var(--border-on-surface);
      box-shadow: var(--shadow-md);
      padding: var(--space-y) var(--space-x);
      display: none;
    }
    .nav-menu.open {
      display: block;
    }
    .nav-menu ul {
      flex-direction: column;
      gap: 0.5rem;
    }
    .nav-menu a {
      display: block;
      padding: 0.75rem 1rem;
    }
    .burger {
      display: flex;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid #333;
    padding-bottom: 1.5rem;
  }
  .footer-logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .footer-logo a:hover {
    color: #ffc107;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  .footer-nav ul li a:hover {
    color: #f0a500;
  }
  .footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
  }
  address {
    font-style: normal;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
  }
  .contact-item {
    display: inline-block;
  }
  .contact-item a {
    color: #e0e0e0;
    text-decoration: none;
    border-bottom: 1px dotted #555;
  }
  .contact-item a:hover {
    color: #f0a500;
    border-bottom-color: #f0a500;
  }
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }
  .footer-links a:hover {
    color: #f0a500;
  }
  .footer-disclaimer {
    background-color: #16213e;
    padding: 1rem;
    border-radius: 4px;
    font-size: 0.85rem;
    color: #b0b0b0;
    text-align: center;
    border-left: 3px solid #f0a500;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  .footer-copyright {
    text-align: center;
    font-size: 0.85rem;
    color: #888;
    border-top: 1px solid #333;
    padding-top: 1rem;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      text-align: center;
      gap: 1rem;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-legal {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    address {
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
    }
    .footer-links {
      justify-content: center;
    }
  }

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

    .cookie-cv15__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

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

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

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

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

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

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

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

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

.nfsocial-v10 {
        padding: clamp(48px, 8vw, 80px) 0;
        background: var(--surface-1);
    }

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

    .nfsocial-v10__grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: calc(var(--gap) * 2);
        align-items: start;
    }

    .nfsocial-v10__text {
        border-left: 2px solid var(--border-on-surface);
        padding-left: var(--space-x);
    }

    .nfsocial-v10__text:first-child {
        border-left: 0;
        padding-left: 0;
    }

    .nfsocial-v10__text h2 {
        margin-bottom: var(--space-y);
        color: var(--fg-on-page);
    }

    .nfsocial-v10__text p {
        margin-bottom: var(--space-y);
        color: var(--neutral-600);
    }

    @media (max-width: 840px) {
        .nfsocial-v10__grid {
            grid-template-columns: 1fr;
        }

        .nfsocial-v10__text {
            border-left: 0;
            padding-left: 0;
        }
    }

.capabilities {

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

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

    .capabilities .capabilities__h {
        text-align: center;
        margin-bottom: clamp(40px, 6vw, 72px);

    }

    .capabilities h2 {
        font-size: clamp(32px, 5vw, 48px);
        font-weight: 800;
        margin: 0 0 1rem;
    }

    .capabilities .capabilities__subtitle {
        font-size: clamp(16px, 2vw, 20px);
        margin: 0;
        opacity: 0.9;
    }

    .capabilities .capabilities__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: clamp(20px, 3vw, 32px);
    }

    .capabilities .capabilities__card {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: clamp(28px, 4vw, 40px);
        border-radius: var(--radius-xl);
        position: relative;

        transform: translateY(40px);
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .capabilities .capabilities__card:hover {
        transform: translateY(-8px);
    }

    .capabilities .capabilities__step {
        position: absolute;
        top: -16px;
        right: 24px;
        width: 48px;
        height: 48px;
        background: var(--accent);
        color: var(--accent-contrast);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 800;
        font-size: 20px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .capabilities .capabilities__icon {
        font-size: 40px;
        margin-bottom: 1.5rem;
    }

    .capabilities .capabilities__card h3 {
        font-size: clamp(20px, 2.5vw, 24px);
        font-weight: 700;
        margin: 0 0 1rem;
    }

    .capabilities .capabilities__card p {
        margin: 0;
        line-height: var(--line-height-base);
    }

.hiw-column-l5 {
        padding: clamp(3.2rem, 7vw, 5.8rem) var(--space-x);
        background: linear-gradient(180deg, var(--surface-1), var(--bg-alt));
        color: var(--fg-on-page);
    }

    .hiw-column-l5__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1.15fr .85fr;
        gap: 1.25rem;
    }

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

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

    .hiw-column-l5__copy {
        margin: .85rem 0 0;
        color: var(--neutral-600);
    }

    .hiw-column-l5__side {
        padding: 1rem;
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
        box-shadow: var(--shadow-sm);
    }

    .hiw-column-l5__side img {
        display: block;
        width: 100%;
        border-radius: var(--radius-lg);
    }

    .hiw-column-l5__side strong {
        display: block;
        margin-top: .9rem;
        color: var(--brand);
    }

    .hiw-column-l5__item {
        margin-top: .65rem;
        padding: .75rem .85rem;
        border-radius: var(--radius-md);
        background: var(--surface-2);
    }

    @media (max-width: 840px) {
        .hiw-column-l5__wrap {
            grid-template-columns: 1fr;
        }
    }

header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) var(--space-x);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
  }
  .nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }
  .nav-menu a {
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    line-height: var(--line-height-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(--brand);
  }
  .header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .search-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--fg-on-surface);
    padding: 0.5rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .search-toggle:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-md);
    flex-direction: column;
    gap: 4px;
  }
  .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.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
  }

  @media (max-width: 767px) {
    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1);
      border-bottom: 1px solid var(--border-on-surface);
      box-shadow: var(--shadow-md);
      padding: var(--space-y) var(--space-x);
      display: none;
    }
    .nav-menu.open {
      display: block;
    }
    .nav-menu ul {
      flex-direction: column;
      gap: 0.5rem;
    }
    .nav-menu a {
      display: block;
      padding: 0.75rem 1rem;
    }
    .burger {
      display: flex;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid #333;
    padding-bottom: 1.5rem;
  }
  .footer-logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .footer-logo a:hover {
    color: #ffc107;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  .footer-nav ul li a:hover {
    color: #f0a500;
  }
  .footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
  }
  address {
    font-style: normal;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
  }
  .contact-item {
    display: inline-block;
  }
  .contact-item a {
    color: #e0e0e0;
    text-decoration: none;
    border-bottom: 1px dotted #555;
  }
  .contact-item a:hover {
    color: #f0a500;
    border-bottom-color: #f0a500;
  }
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }
  .footer-links a:hover {
    color: #f0a500;
  }
  .footer-disclaimer {
    background-color: #16213e;
    padding: 1rem;
    border-radius: 4px;
    font-size: 0.85rem;
    color: #b0b0b0;
    text-align: center;
    border-left: 3px solid #f0a500;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  .footer-copyright {
    text-align: center;
    font-size: 0.85rem;
    color: #888;
    border-top: 1px solid #333;
    padding-top: 1rem;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      text-align: center;
      gap: 1rem;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-legal {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    address {
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
    }
    .footer-links {
      justify-content: center;
    }
  }

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

    .cookie-cv15__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

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

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

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

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

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

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

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

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

.clarifications-l2 {

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

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

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

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

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

    .clarifications-l2__panel {
        position: relative;
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-lg);
        overflow: hidden;
    }

    /* permanent scan */
    .clarifications-l2__scan {
        position: absolute;
        left: 0;
        top: -40%;
        width: 100%;
        height: 42%;
        background: linear-gradient(180deg, transparent, rgba(0, 86, 179, 0.08), transparent);
        animation: l2Scan 4.8s linear infinite;
        pointer-events: none;
    }

    @keyframes l2Scan {
        0% {
            transform: translateY(0%)
        }
        100% {
            transform: translateY(240%)
        }
    }

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

    .clarifications-l2__row {
        display: grid;
        grid-template-columns: 110px 1fr;
        gap: 12px;
        padding: 12px 14px;
        text-align: left;
        border-radius: var(--radius-lg);
        background: var(--surface-2);
        border: 1px solid var(--border-on-surface);
        cursor: pointer;
        transition: transform var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
    }

    .clarifications-l2__row:hover {
        transform: translateY(-2px);
        border-color: rgba(0, 86, 179, 0.35);
    }

    .clarifications-l2__k {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        height: 34px;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border: 1px solid rgba(0, 0, 0, 0.06);
        font-weight: 900;
    }

    .clarifications-l2__q {
        display: block;
        font-weight: 900;
        color: var(--fg-on-page);
        letter-spacing: -.01em;
        margin-bottom: 6px;
    }

    .clarifications-l2__a {
        display: block;
        color: var(--neutral-600);
        line-height: var(--line-height-base);
    }

    /* JS adds floating highlight for active row */
    .clarifications-l2__row.is-focus {
        border-color: rgba(255, 107, 53, 0.45);
        box-shadow: 0 0 0 6px rgba(255, 107, 53, 0.08);
    }

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

        .clarifications-l2__k {
            justify-self: start;
            padding: 0 12px
        }
    }

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

.contact-layout-a {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--gradient-accent);
        color: var(--accent-contrast);
    }

    .contact-layout-a .wrap {
        max-width: 900px;
        margin: 0 auto;
    }

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

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

    .contact-layout-a .section-head p {
        margin: 10px auto 0;
        max-width: 70ch;
        opacity: .92;
    }

    .contact-layout-a .panel {
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .3);
        border-radius: var(--radius-lg);
        padding: 18px;
        backdrop-filter: blur(6px);
    }

    .contact-layout-a h3 {
        margin: 0 0 12px;
    }

    .contact-layout-a .list p {
        margin: 0 0 10px;
        display: grid;
        gap: 2px;
    }

    .contact-layout-a .list span {
        opacity: .94;
    }

    .contact-layout-a .social-row {
        margin-top: 14px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        align-items: center;
    }

    .contact-layout-a .social-row a {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        display: grid;
        place-items: center;
        text-decoration: none;
        color: var(--fg-on-primary);
        border: 1px solid rgba(255, 255, 255, .4);
    }

    .contact-layout-a .social-row a:hover {
        background: rgba(255, 255, 255, .15);
    }

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

    .nftouch-v12__wrap {
        max-width: 860px;
        margin: 0 auto;
    }

    .nftouch-v12__header {
        margin-bottom: 14px;
    }

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

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

    .nftouch-v12 ul {
        margin: 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 8px;
    }

    .nftouch-v12 li {
        border: 1px solid var(--border-on-surface);
        border-radius: 12px;
        background: var(--neutral-0);
        padding: 10px 12px;
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 8px;
        align-items: center;
    }

    .nftouch-v12 li span {
        color: var(--neutral-600);
        font-size: .85rem;
    }

    .nftouch-v12 li a {
        color: var(--bg-primary);
        text-decoration: none;
    }

    .nftouch-v12__cta {
        display: inline-block;
        margin-top: 12px;
        text-decoration: none;
        background: var(--bg-primary);
        color: var(--neutral-0);
        border-radius: 10px;
        padding: 10px 14px;
    }

    @media (max-width: 680px) {
        .nftouch-v12 li {
            grid-template-columns: 1fr;
        }
    }

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

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

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

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

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

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

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

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

header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) var(--space-x);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
  }
  .nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }
  .nav-menu a {
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    line-height: var(--line-height-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(--brand);
  }
  .header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .search-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--fg-on-surface);
    padding: 0.5rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .search-toggle:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-md);
    flex-direction: column;
    gap: 4px;
  }
  .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.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
  }

  @media (max-width: 767px) {
    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1);
      border-bottom: 1px solid var(--border-on-surface);
      box-shadow: var(--shadow-md);
      padding: var(--space-y) var(--space-x);
      display: none;
    }
    .nav-menu.open {
      display: block;
    }
    .nav-menu ul {
      flex-direction: column;
      gap: 0.5rem;
    }
    .nav-menu a {
      display: block;
      padding: 0.75rem 1rem;
    }
    .burger {
      display: flex;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid #333;
    padding-bottom: 1.5rem;
  }
  .footer-logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .footer-logo a:hover {
    color: #ffc107;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  .footer-nav ul li a:hover {
    color: #f0a500;
  }
  .footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
  }
  address {
    font-style: normal;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
  }
  .contact-item {
    display: inline-block;
  }
  .contact-item a {
    color: #e0e0e0;
    text-decoration: none;
    border-bottom: 1px dotted #555;
  }
  .contact-item a:hover {
    color: #f0a500;
    border-bottom-color: #f0a500;
  }
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }
  .footer-links a:hover {
    color: #f0a500;
  }
  .footer-disclaimer {
    background-color: #16213e;
    padding: 1rem;
    border-radius: 4px;
    font-size: 0.85rem;
    color: #b0b0b0;
    text-align: center;
    border-left: 3px solid #f0a500;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  .footer-copyright {
    text-align: center;
    font-size: 0.85rem;
    color: #888;
    border-top: 1px solid #333;
    padding-top: 1rem;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      text-align: center;
      gap: 1rem;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-legal {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    address {
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
    }
    .footer-links {
      justify-content: center;
    }
  }

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

    .cookie-cv15__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

    .policy-layout-b ol {
        margin: 0;
        padding-left: 18px;
        display: grid;
        gap: 10px;
    }

    .policy-layout-b li {
        background: var(--bg-alt);
        border-radius: var(--radius-md);
        border: 1px solid var(--border-on-surface);
        padding: 12px;
    }

    .policy-layout-b h3 {
        margin: 0;
        color: var(--brand);
        font-size: 1rem;
    }

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

header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) var(--space-x);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
  }
  .nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }
  .nav-menu a {
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    line-height: var(--line-height-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(--brand);
  }
  .header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .search-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--fg-on-surface);
    padding: 0.5rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .search-toggle:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-md);
    flex-direction: column;
    gap: 4px;
  }
  .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.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
  }

  @media (max-width: 767px) {
    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1);
      border-bottom: 1px solid var(--border-on-surface);
      box-shadow: var(--shadow-md);
      padding: var(--space-y) var(--space-x);
      display: none;
    }
    .nav-menu.open {
      display: block;
    }
    .nav-menu ul {
      flex-direction: column;
      gap: 0.5rem;
    }
    .nav-menu a {
      display: block;
      padding: 0.75rem 1rem;
    }
    .burger {
      display: flex;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid #333;
    padding-bottom: 1.5rem;
  }
  .footer-logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .footer-logo a:hover {
    color: #ffc107;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  .footer-nav ul li a:hover {
    color: #f0a500;
  }
  .footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
  }
  address {
    font-style: normal;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
  }
  .contact-item {
    display: inline-block;
  }
  .contact-item a {
    color: #e0e0e0;
    text-decoration: none;
    border-bottom: 1px dotted #555;
  }
  .contact-item a:hover {
    color: #f0a500;
    border-bottom-color: #f0a500;
  }
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }
  .footer-links a:hover {
    color: #f0a500;
  }
  .footer-disclaimer {
    background-color: #16213e;
    padding: 1rem;
    border-radius: 4px;
    font-size: 0.85rem;
    color: #b0b0b0;
    text-align: center;
    border-left: 3px solid #f0a500;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  .footer-copyright {
    text-align: center;
    font-size: 0.85rem;
    color: #888;
    border-top: 1px solid #333;
    padding-top: 1rem;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      text-align: center;
      gap: 1rem;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-legal {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    address {
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
    }
    .footer-links {
      justify-content: center;
    }
  }

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

    .cookie-cv15__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

    .policy-layout-a .grid {
        display: grid;
        gap: var(--gap);
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

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

    .policy-layout-a .meta {
        margin: 0;
        color: var(--brand);
        font-weight: 600;
    }

    .policy-layout-a h3 {
        margin: 8px 0;
    }

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

header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) var(--space-x);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
  }
  .nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }
  .nav-menu a {
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    line-height: var(--line-height-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(--brand);
  }
  .header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .search-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--fg-on-surface);
    padding: 0.5rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .search-toggle:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-md);
    flex-direction: column;
    gap: 4px;
  }
  .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.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
  }

  @media (max-width: 767px) {
    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1);
      border-bottom: 1px solid var(--border-on-surface);
      box-shadow: var(--shadow-md);
      padding: var(--space-y) var(--space-x);
      display: none;
    }
    .nav-menu.open {
      display: block;
    }
    .nav-menu ul {
      flex-direction: column;
      gap: 0.5rem;
    }
    .nav-menu a {
      display: block;
      padding: 0.75rem 1rem;
    }
    .burger {
      display: flex;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid #333;
    padding-bottom: 1.5rem;
  }
  .footer-logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .footer-logo a:hover {
    color: #ffc107;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  .footer-nav ul li a:hover {
    color: #f0a500;
  }
  .footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
  }
  address {
    font-style: normal;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
  }
  .contact-item {
    display: inline-block;
  }
  .contact-item a {
    color: #e0e0e0;
    text-decoration: none;
    border-bottom: 1px dotted #555;
  }
  .contact-item a:hover {
    color: #f0a500;
    border-bottom-color: #f0a500;
  }
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }
  .footer-links a:hover {
    color: #f0a500;
  }
  .footer-disclaimer {
    background-color: #16213e;
    padding: 1rem;
    border-radius: 4px;
    font-size: 0.85rem;
    color: #b0b0b0;
    text-align: center;
    border-left: 3px solid #f0a500;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  .footer-copyright {
    text-align: center;
    font-size: 0.85rem;
    color: #888;
    border-top: 1px solid #333;
    padding-top: 1rem;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      text-align: center;
      gap: 1rem;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-legal {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    address {
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
    }
    .footer-links {
      justify-content: center;
    }
  }

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

    .cookie-cv15__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) var(--space-x);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
  }
  .nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }
  .nav-menu a {
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    line-height: var(--line-height-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(--brand);
  }
  .header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .search-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--fg-on-surface);
    padding: 0.5rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .search-toggle:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-md);
    flex-direction: column;
    gap: 4px;
  }
  .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.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
  }

  @media (max-width: 767px) {
    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1);
      border-bottom: 1px solid var(--border-on-surface);
      box-shadow: var(--shadow-md);
      padding: var(--space-y) var(--space-x);
      display: none;
    }
    .nav-menu.open {
      display: block;
    }
    .nav-menu ul {
      flex-direction: column;
      gap: 0.5rem;
    }
    .nav-menu a {
      display: block;
      padding: 0.75rem 1rem;
    }
    .burger {
      display: flex;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid #333;
    padding-bottom: 1.5rem;
  }
  .footer-logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .footer-logo a:hover {
    color: #ffc107;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  .footer-nav ul li a:hover {
    color: #f0a500;
  }
  .footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
  }
  address {
    font-style: normal;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
  }
  .contact-item {
    display: inline-block;
  }
  .contact-item a {
    color: #e0e0e0;
    text-decoration: none;
    border-bottom: 1px dotted #555;
  }
  .contact-item a:hover {
    color: #f0a500;
    border-bottom-color: #f0a500;
  }
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }
  .footer-links a:hover {
    color: #f0a500;
  }
  .footer-disclaimer {
    background-color: #16213e;
    padding: 1rem;
    border-radius: 4px;
    font-size: 0.85rem;
    color: #b0b0b0;
    text-align: center;
    border-left: 3px solid #f0a500;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  .footer-copyright {
    text-align: center;
    font-size: 0.85rem;
    color: #888;
    border-top: 1px solid #333;
    padding-top: 1rem;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      text-align: center;
      gap: 1rem;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-legal {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    address {
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
    }
    .footer-links {
      justify-content: center;
    }
  }

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

    .cookie-cv15__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

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

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

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

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

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

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

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

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

.err-slab-c {
        padding: clamp(56px, 10vw, 114px) 20px;
        background: linear-gradient(180deg, var(--bg-accent), var(--bg-page));
        color: var(--fg-on-page);
    }

    .err-slab-c .tile {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(28px, 4vw, 44px);
        background: var(--surface-1);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
        border-top: 8px solid var(--accent);
    }

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

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

    .err-slab-c a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 18px;
        border-radius: 999px;
        border: 1px solid var(--neutral-300);
        color: var(--fg-on-page);
        text-decoration: none;
    }