:root {
  --font-family: "Inter", sans-serif;
  --font-size-base: 17px;
  --line-height-base: 1.89;

  --max-w: 1020px;
  --space-x: 1.08rem;
  --space-y: 1.5rem;
  --gap: 1.08rem;

  --radius-xl: 0.66rem;
  --radius-lg: 0.47rem;
  --radius-md: 0.37rem;
  --radius-sm: 0.22rem;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.07);
  --shadow-md: 0 3px 8px rgba(0,0,0,0.09);
  --shadow-lg: 0 10px 28px rgba(0,0,0,0.11);

  --overlay: rgba(0,0,0,0.5);
  --anim-duration: 530ms;
  --anim-ease: cubic-bezier(0.22,1,0.36,1);
  --random-number: 1;

  --brand: #1a3c6e;
  --brand-contrast: #ffffff;
  --accent: #d94f14;
  --accent-contrast: #ffffff;

  --neutral-0: #ffffff;
  --neutral-100: #f5f7fa;
  --neutral-300: #d0d5dd;
  --neutral-600: #667085;
  --neutral-800: #1d2939;
  --neutral-900: #0b111a;

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

  --bg-alt: #f0f4f8;
  --fg-on-alt: #344054;

  --surface-1: #ffffff;
  --surface-2: #f9fafb;
  --fg-on-surface: #1d2939;
  --border-on-surface: #e4e7ec;

  --surface-light: #fcfcfd;
  --fg-on-surface-light: #475467;
  --border-on-surface-light: #eaecf0;

  --bg-primary: #1a3c6e;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #142f56;
  --ring: #d94f14;

  --bg-accent: #d94f14;
  --fg-on-accent: #ffffff;
  --bg-accent-hover: #b83e0e;

  --link: #1a3c6e;
  --link-hover: #d94f14;

  --gradient-hero: linear-gradient(135deg, #1a3c6e 0%, #2b5a9e 100%);
  --gradient-accent: linear-gradient(135deg, #d94f14 0%, #f06a2a 100%);

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

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: var(--space-y) var(--space-x);
    background: transparent;
    transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
  }

  .header--scrolled {
    background: var(--surface-1);
    box-shadow: var(--shadow-md);
  }

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

  .header__logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .header__logo:hover {
    color: var(--brand-contrast);
  }

  .header__nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }

  .header__nav-link {
    text-decoration: none;
    color: var(--neutral-800);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: var(--space-y) calc(var(--space-x) * 0.5);
    border-radius: var(--radius-sm);
    transition: color var(--anim-duration) var(--anim-ease), background var(--anim-duration) var(--anim-ease);
  }

  .header__nav-link:hover {
    color: var(--brand);
    background: var(--surface-2);
  }

  .header__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
  }

  .header__burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--neutral-900);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

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

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

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

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

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

    .header__nav--open {
      opacity: 1;
      visibility: visible;
    }

    .header__nav-list {
      flex-direction: column;
      align-items: center;
      gap: calc(var(--gap) * 1.5);
    }

    .header__nav-link {
      font-size: calc(var(--font-size-base) * 1.25);
      padding: var(--space-y) var(--space-x);
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
  }
  .footer-col {
    flex: 1 1 250px;
    min-width: 200px;
  }
  .logo {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
  }
  .tagline {
    color: #b0b0b0;
    margin: 0;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
  }
  .footer-nav li {
    margin-bottom: 0.5rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
  .legal-links {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
  }
  .legal-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.85rem;
  }
  .legal-links a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
  .contact-block p {
    margin: 0.3rem 0;
  }
  .contact-block a {
    color: #e0e0e0;
    text-decoration: none;
  }
  .contact-block a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
  .disclaimer {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: #999;
    line-height: 1.4;
  }
  .footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 1rem;
    margin-top: 2rem;
    font-size: 0.85rem;
    color: #999;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-col {
      flex: 1 1 100%;
    }
    .legal-links {
      flex-direction: row;
      justify-content: center;
      gap: 1rem;
    }
  }

.nfcookie-v10 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .nfcookie-v10__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * .8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .nfcookie-v10__text {flex: 1 1 420px;}
    .nfcookie-v10__text strong {display: block; margin-bottom: 4px; color: var(--fg-on-surface);}
    .nfcookie-v10__text p {margin: 0; color: var(--fg-on-surface-light);}

    .nfcookie-v10__actions {display: flex; flex-wrap: wrap; gap: 8px;}

    .nfcookie-v10__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v10__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

.nfintro-v12 {
        padding: calc(var(--space-y) * 2.8) var(--space-x);
        background: var(--bg-alt);
        color: var(--fg-on-alt);
    }

    .nfintro-v12__shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
        gap: calc(var(--gap) * 2);
        align-items: stretch;
    }

    .nfintro-v12__media {
        padding: var(--gap);
        background: var(--surface-1);
        border-radius: var(--radius-xl);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
    }

    .nfintro-v12__media img {
        width: 100%;
        height: 100%;
        min-height: 320px;
        object-fit: cover;
        border-radius: var(--radius-lg);
    }

    .nfintro-v12__copy {
        display: grid;
        gap: var(--gap);
        align-content: start;
    }

    .nfintro-v12__copy h1 {
        margin: .2rem 0;
        font-size: clamp(2rem, 4vw, 3.2rem);
        line-height: 1.1;
    }

    .nfintro-v12__copy span {
        color: var(--fg-on-surface-light);
    }

    .nfintro-v12__stats {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: var(--gap);
    }

    .nfintro-v12__stats article {
        padding: 1rem;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
    }

    .nfintro-v12__stats p {
        margin: .3rem 0 0;
        color: var(--fg-on-surface-light);
        font-size: .92rem;
    }

    .nfintro-v12__actions {
        display: flex;
        flex-wrap: wrap;
        gap: var(--gap);
    }

    .nfintro-v12__actions a {
        text-decoration: none;
        padding: .7rem 1rem;
        border-radius: var(--radius-md);
        border: 1px solid var(--border-on-surface);
        color: var(--fg-on-surface);
        background: var(--surface-1);
    }

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

    @media (max-width: 940px) {
        .nfintro-v12__shell {grid-template-columns: 1fr;}
        .nfintro-v12__stats {grid-template-columns: 1fr;}
    }

.gallery--colored-v5 {

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

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

.gallery__header {
    text-align: center;
    margin-bottom: 24px;
}

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

.gallery__header p {
    margin: 0;
    color: var(--neutral-300);
}

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

.gallery__item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(148,163,184,0.6);
}

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

.gallery__item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.gallery__item figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 8px 10px;
    background: linear-gradient(to top, rgba(15,23,42,0.9), transparent);
    font-size: 0.85rem;
}

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

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

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

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

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

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

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

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

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

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

.why-choose-alt {

        background: var(--gradient-accent);
        color: var(--fg-on-primary);
        padding: clamp(40px, 6vw, 80px) clamp(16px, 3vw, 40px);
        position: relative;
        overflow: hidden;
    }

    .why-choose-alt::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);

        animation: backgroundPulse 4s ease-in-out infinite;
    }

    @keyframes backgroundPulse {
        0%, 100% {

            transform: scale(1);
        }
        50% {
            opacity: 1;
            transform: scale(1.1);
        }
    }

    .why-choose-alt .why-choose-alt__c {
        max-width: var(--max-w);
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    .why-choose-alt .why-choose-alt__h {
        color: var(--fg-on-surface-light);
        text-align: center;
        margin-bottom: clamp(32px, 5vw, 64px);

    }

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

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

    .why-choose-alt .why-choose-alt__list {
        display: flex;
        flex-direction: column;
        gap: clamp(16px, 2vw, 24px);
    }

    .why-choose-alt .why-choose-alt__item {
        display: flex;
        gap: clamp(16px, 2vw, 24px);
        background: var(--surface-light);
        padding: clamp(20px, 3vw, 32px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface-light);
        align-items: flex-start;

        position: relative;
        overflow: hidden;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .why-choose-alt .why-choose-alt__item::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.6s ease;
    }

    .why-choose-alt .why-choose-alt__item:hover {
        transform: translateX(8px);
        box-shadow: -8px 8px 24px rgba(0, 0, 0, 0.15);
    }

    .why-choose-alt .why-choose-alt__item:hover::before {
        left: 100%;
    }

    .why-choose-alt .why-choose-alt__number {
        flex-shrink: 0;
        width: 56px;
        height: 56px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-radius: var(--radius-md);
        font-size: clamp(20px, 2.5vw, 28px);
        font-weight: 700;
        position: relative;
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .why-choose-alt .why-choose-alt__item:hover .why-choose-alt__number {
        transform: rotate(360deg) scale(1.1);
    }

    .why-choose-alt .why-choose-alt__number::after {
        content: '';
        position: absolute;
        top: -3px;
        left: -3px;
        right: -3px;
        bottom: -3px;
        border-radius: var(--radius-md);
        border: 2px solid var(--bg-accent);

        animation: numberPulse 2s ease-in-out infinite;
    }

    @keyframes numberPulse {
        0%, 100% {

            transform: scale(1);
        }
        50% {
            opacity: 0.6;
            transform: scale(1.2);
        }
    }

    .why-choose-alt .why-choose-alt__content {
        flex: 1;
    }

    .why-choose-alt .why-choose-alt__item h3 {
        font-size: clamp(18px, 2.2vw, 24px);
        margin: 0 0 0.75rem;
        color: var(--fg-on-surface-light);
        transition: color var(--anim-duration) var(--anim-ease);
    }

    .why-choose-alt .why-choose-alt__item:hover h3 {
        color: var(--bg-accent);
    }

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

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: var(--space-y) var(--space-x);
    background: transparent;
    transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
  }

  .header--scrolled {
    background: var(--surface-1);
    box-shadow: var(--shadow-md);
  }

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

  .header__logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .header__logo:hover {
    color: var(--brand-contrast);
  }

  .header__nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }

  .header__nav-link {
    text-decoration: none;
    color: var(--neutral-800);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: var(--space-y) calc(var(--space-x) * 0.5);
    border-radius: var(--radius-sm);
    transition: color var(--anim-duration) var(--anim-ease), background var(--anim-duration) var(--anim-ease);
  }

  .header__nav-link:hover {
    color: var(--brand);
    background: var(--surface-2);
  }

  .header__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
  }

  .header__burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--neutral-900);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

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

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

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

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

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

    .header__nav--open {
      opacity: 1;
      visibility: visible;
    }

    .header__nav-list {
      flex-direction: column;
      align-items: center;
      gap: calc(var(--gap) * 1.5);
    }

    .header__nav-link {
      font-size: calc(var(--font-size-base) * 1.25);
      padding: var(--space-y) var(--space-x);
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
  }
  .footer-col {
    flex: 1 1 250px;
    min-width: 200px;
  }
  .logo {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
  }
  .tagline {
    color: #b0b0b0;
    margin: 0;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
  }
  .footer-nav li {
    margin-bottom: 0.5rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
  .legal-links {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
  }
  .legal-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.85rem;
  }
  .legal-links a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
  .contact-block p {
    margin: 0.3rem 0;
  }
  .contact-block a {
    color: #e0e0e0;
    text-decoration: none;
  }
  .contact-block a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
  .disclaimer {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: #999;
    line-height: 1.4;
  }
  .footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 1rem;
    margin-top: 2rem;
    font-size: 0.85rem;
    color: #999;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-col {
      flex: 1 1 100%;
    }
    .legal-links {
      flex-direction: row;
      justify-content: center;
      gap: 1rem;
    }
  }

.nfcookie-v10 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .nfcookie-v10__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * .8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .nfcookie-v10__text {flex: 1 1 420px;}
    .nfcookie-v10__text strong {display: block; margin-bottom: 4px; color: var(--fg-on-surface);}
    .nfcookie-v10__text p {margin: 0; color: var(--fg-on-surface-light);}

    .nfcookie-v10__actions {display: flex; flex-wrap: wrap; gap: 8px;}

    .nfcookie-v10__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v10__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

.project-list {

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

    .project-list .project-list__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .project-list .project-list__h {
        text-align: center;
        margin-bottom: var(--space-y);
    }

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

    .project-list .project-list__filters {
        display: flex;
        gap: 0.5rem;
        flex-wrap: wrap;
        margin-bottom: var(--space-y);
        justify-content: center;
    }

    .project-list .project-list__filter {
        padding: 0.5rem 1rem;
        border-radius: var(--radius-md);
        border: 1px solid var(--ring);
        background: var(--bg-page);
        color: var(--fg-on-page);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .project-list .project-list__filter:hover {
        background: var(--bg-primary);
        color: var(--fg-on-primary) fff;
        border-color: var(--bg-primary);
    }

    .project-list .project-list__grid {
        display: grid;
        gap: var(--space-x);
    }

    @media (min-width: 768px) {
        .project-list .project-list__grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
    }

    @media (min-width: 1024px) {
        .project-list .project-list__grid {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }
    }

    .project-list .project-list__card {
        background: var(--surface-light);
        border: 1px solid var(--ring);
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow-sm);
        transition: transform var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    }

    .project-list .project-list__card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
    }

    .project-list .project-list__image img {
        width: 100%;
        height: 250px;
        object-fit: cover;
    }

    .project-list .project-list__content {
        padding: clamp(16px, 2vw, 24px);
    }

    .project-list h3 {
        margin: 0 0 0.5rem;
        font-size: clamp(18px, 2.2vw, 22px);
    }

    .project-list h3 a {
        color: var(--fg-on-page);
        text-decoration: none;
    }

    .project-list h3 a:hover {
        color: var(--bg-primary);
    }

    .project-list p {
        color: var(--neutral-600);
        margin: 0.5rem 0 1rem;
    }

    .project-list .project-list__tags {
        display: flex;
        gap: 0.5rem;
        flex-wrap: wrap;
    }

    .project-list .project-list__tag {
        padding: 0.25rem 0.75rem;
        border-radius: var(--radius-sm);
        background: var(--bg-page);
        color: var(--neutral-600);
        font-size: 0.875rem;
    }

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

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

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

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

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

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

    .education-struct-v6 .grid a, .education-struct-v6 .tiers a, .education-struct-v6 .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-v6 .path {
        display: grid;
        gap: .65rem
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: var(--space-y) var(--space-x);
    background: transparent;
    transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
  }

  .header--scrolled {
    background: var(--surface-1);
    box-shadow: var(--shadow-md);
  }

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

  .header__logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .header__logo:hover {
    color: var(--brand-contrast);
  }

  .header__nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }

  .header__nav-link {
    text-decoration: none;
    color: var(--neutral-800);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: var(--space-y) calc(var(--space-x) * 0.5);
    border-radius: var(--radius-sm);
    transition: color var(--anim-duration) var(--anim-ease), background var(--anim-duration) var(--anim-ease);
  }

  .header__nav-link:hover {
    color: var(--brand);
    background: var(--surface-2);
  }

  .header__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
  }

  .header__burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--neutral-900);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

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

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

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

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

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

    .header__nav--open {
      opacity: 1;
      visibility: visible;
    }

    .header__nav-list {
      flex-direction: column;
      align-items: center;
      gap: calc(var(--gap) * 1.5);
    }

    .header__nav-link {
      font-size: calc(var(--font-size-base) * 1.25);
      padding: var(--space-y) var(--space-x);
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
  }
  .footer-col {
    flex: 1 1 250px;
    min-width: 200px;
  }
  .logo {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
  }
  .tagline {
    color: #b0b0b0;
    margin: 0;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
  }
  .footer-nav li {
    margin-bottom: 0.5rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
  .legal-links {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
  }
  .legal-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.85rem;
  }
  .legal-links a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
  .contact-block p {
    margin: 0.3rem 0;
  }
  .contact-block a {
    color: #e0e0e0;
    text-decoration: none;
  }
  .contact-block a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
  .disclaimer {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: #999;
    line-height: 1.4;
  }
  .footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 1rem;
    margin-top: 2rem;
    font-size: 0.85rem;
    color: #999;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-col {
      flex: 1 1 100%;
    }
    .legal-links {
      flex-direction: row;
      justify-content: center;
      gap: 1rem;
    }
  }

.nfcookie-v10 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .nfcookie-v10__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * .8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .nfcookie-v10__text {flex: 1 1 420px;}
    .nfcookie-v10__text strong {display: block; margin-bottom: 4px; color: var(--fg-on-surface);}
    .nfcookie-v10__text p {margin: 0; color: var(--fg-on-surface-light);}

    .nfcookie-v10__actions {display: flex; flex-wrap: wrap; gap: 8px;}

    .nfcookie-v10__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v10__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

.project-item {

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

    .project-item .project-item__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .project-item .project-item__header {
        text-align: center;
        margin-bottom: var(--space-y);
        color: var(--fg-on-page);
    }

    .project-item h1 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 1rem;
    }

    .project-item .project-item__subtitle {
        font-size: clamp(16px, 2.4vw, 20px);

    }

    .project-item .project-item__gallery {
        display: grid;
        gap: 1rem;
        margin-bottom: var(--space-y);
    }

    @media (min-width: 768px) {
        .project-item .project-item__gallery {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }

        /* Si randomNumber es 1 (impar) - primer hijo mantiene order: 0 */
        .project-item .project-item__gallery > *:first-child {
            order: 0;
        }
    }

    .project-item .project-item__image img {
        width: 100%;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
    }

    .project-item .project-item__description,
    .project-item .project-item__results {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        padding: clamp(24px, 3vw, 40px);
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, 0.2);
        margin-bottom: var(--space-y);
    }

    .project-item h2 {
        font-size: clamp(24px, 4vw, 32px);
        margin: 0 0 1rem;
        color: var(--fg-on-page);
    }

    .project-item .project-item__description,
    .project-item .project-item__results {
        line-height: 1.8;

    }

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: var(--space-y) var(--space-x);
    background: transparent;
    transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
  }

  .header--scrolled {
    background: var(--surface-1);
    box-shadow: var(--shadow-md);
  }

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

  .header__logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .header__logo:hover {
    color: var(--brand-contrast);
  }

  .header__nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }

  .header__nav-link {
    text-decoration: none;
    color: var(--neutral-800);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: var(--space-y) calc(var(--space-x) * 0.5);
    border-radius: var(--radius-sm);
    transition: color var(--anim-duration) var(--anim-ease), background var(--anim-duration) var(--anim-ease);
  }

  .header__nav-link:hover {
    color: var(--brand);
    background: var(--surface-2);
  }

  .header__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
  }

  .header__burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--neutral-900);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

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

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

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

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

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

    .header__nav--open {
      opacity: 1;
      visibility: visible;
    }

    .header__nav-list {
      flex-direction: column;
      align-items: center;
      gap: calc(var(--gap) * 1.5);
    }

    .header__nav-link {
      font-size: calc(var(--font-size-base) * 1.25);
      padding: var(--space-y) var(--space-x);
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
  }
  .footer-col {
    flex: 1 1 250px;
    min-width: 200px;
  }
  .logo {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
  }
  .tagline {
    color: #b0b0b0;
    margin: 0;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
  }
  .footer-nav li {
    margin-bottom: 0.5rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
  .legal-links {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
  }
  .legal-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.85rem;
  }
  .legal-links a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
  .contact-block p {
    margin: 0.3rem 0;
  }
  .contact-block a {
    color: #e0e0e0;
    text-decoration: none;
  }
  .contact-block a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
  .disclaimer {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: #999;
    line-height: 1.4;
  }
  .footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 1rem;
    margin-top: 2rem;
    font-size: 0.85rem;
    color: #999;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-col {
      flex: 1 1 100%;
    }
    .legal-links {
      flex-direction: row;
      justify-content: center;
      gap: 1rem;
    }
  }

.nfcookie-v10 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .nfcookie-v10__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * .8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .nfcookie-v10__text {flex: 1 1 420px;}
    .nfcookie-v10__text strong {display: block; margin-bottom: 4px; color: var(--fg-on-surface);}
    .nfcookie-v10__text p {margin: 0; color: var(--fg-on-surface-light);}

    .nfcookie-v10__actions {display: flex; flex-wrap: wrap; gap: 8px;}

    .nfcookie-v10__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v10__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

.project-item {

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

    .project-item .project-item__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .project-item .project-item__header {
        text-align: center;
        margin-bottom: var(--space-y);
        color: var(--fg-on-page);
    }

    .project-item h1 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 1rem;
    }

    .project-item .project-item__subtitle {
        font-size: clamp(16px, 2.4vw, 20px);

    }

    .project-item .project-item__gallery {
        display: grid;
        gap: 1rem;
        margin-bottom: var(--space-y);
    }

    @media (min-width: 768px) {
        .project-item .project-item__gallery {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }

        /* Si randomNumber es 1 (impar) - primer hijo mantiene order: 0 */
        .project-item .project-item__gallery > *:first-child {
            order: calc((var(--random-number) % 2) * 2);
        }
    }

    .project-item .project-item__image img {
        width: 100%;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
    }

    .project-item .project-item__description,
    .project-item .project-item__results {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        padding: clamp(24px, 3vw, 40px);
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, 0.2);
        margin-bottom: var(--space-y);
    }

    .project-item h2 {
        font-size: clamp(24px, 4vw, 32px);
        margin: 0 0 1rem;
        color: var(--fg-on-page);
    }

    .project-item .project-item__description,
    .project-item .project-item__results {
        line-height: 1.8;

    }

.nfsocial-v12 {
        padding: clamp(20px, 3vw, 44px);
        background: var(--bg-alt);
        color: var(--fg-on-alt);
    }

    .nfsocial-v12__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: 12px;
    }

    .nfsocial-v12 h2 {
        margin: 0;
        font-size: clamp(24px, 4.2vw, 40px);
    }

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

    .nfsocial-v12__badges {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .nfsocial-v12__badges span {
        display: inline-flex;
        align-items: center;
        padding: 7px 10px;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border: 1px solid rgba(0, 0, 0, .06);
        font-weight: 700;
    }

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

    .nfsocial-v12__logos article {
        border-radius: var(--radius-md);
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        min-height: 96px;
        display: grid;
        place-items: center;
        gap: 6px;
        padding: 10px;
    }

    .nfsocial-v12__logos img {
        max-width: 80%;
        max-height: 42px;
    }

    .nfsocial-v12__logos strong {
        font-size: .9rem;
        color: var(--neutral-700, var(--neutral-600));
    }

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: var(--space-y) var(--space-x);
    background: transparent;
    transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
  }

  .header--scrolled {
    background: var(--surface-1);
    box-shadow: var(--shadow-md);
  }

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

  .header__logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .header__logo:hover {
    color: var(--brand-contrast);
  }

  .header__nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }

  .header__nav-link {
    text-decoration: none;
    color: var(--neutral-800);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: var(--space-y) calc(var(--space-x) * 0.5);
    border-radius: var(--radius-sm);
    transition: color var(--anim-duration) var(--anim-ease), background var(--anim-duration) var(--anim-ease);
  }

  .header__nav-link:hover {
    color: var(--brand);
    background: var(--surface-2);
  }

  .header__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
  }

  .header__burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--neutral-900);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

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

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

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

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

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

    .header__nav--open {
      opacity: 1;
      visibility: visible;
    }

    .header__nav-list {
      flex-direction: column;
      align-items: center;
      gap: calc(var(--gap) * 1.5);
    }

    .header__nav-link {
      font-size: calc(var(--font-size-base) * 1.25);
      padding: var(--space-y) var(--space-x);
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
  }
  .footer-col {
    flex: 1 1 250px;
    min-width: 200px;
  }
  .logo {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
  }
  .tagline {
    color: #b0b0b0;
    margin: 0;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
  }
  .footer-nav li {
    margin-bottom: 0.5rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
  .legal-links {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
  }
  .legal-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.85rem;
  }
  .legal-links a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
  .contact-block p {
    margin: 0.3rem 0;
  }
  .contact-block a {
    color: #e0e0e0;
    text-decoration: none;
  }
  .contact-block a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
  .disclaimer {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: #999;
    line-height: 1.4;
  }
  .footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 1rem;
    margin-top: 2rem;
    font-size: 0.85rem;
    color: #999;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-col {
      flex: 1 1 100%;
    }
    .legal-links {
      flex-direction: row;
      justify-content: center;
      gap: 1rem;
    }
  }

.nfcookie-v10 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .nfcookie-v10__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * .8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .nfcookie-v10__text {flex: 1 1 420px;}
    .nfcookie-v10__text strong {display: block; margin-bottom: 4px; color: var(--fg-on-surface);}
    .nfcookie-v10__text p {margin: 0; color: var(--fg-on-surface-light);}

    .nfcookie-v10__actions {display: flex; flex-wrap: wrap; gap: 8px;}

    .nfcookie-v10__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v10__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

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

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

.article-content-section__content {
    max-width: 800px;
    margin: 0 auto;
}

.article-content-section__content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--fg-on-page);
}

.article-content-section__content p {
    max-width: 100%;
    margin-bottom: 1.5rem;
    color: var(--neutral-600);
}

.article-content-section__content ul,
.article-content-section__content ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    color: var(--neutral-600);
}

.article-content-section__content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.article-content-section__callout {
    margin-top: 2rem;
    padding: clamp(16px, 3vw, 24px);
    background-color: var(--bg-alt);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-on-surface);
}

.article-content-section__callout p {
    margin: 0;
    color: var(--fg-on-alt);
}

.article-content-section__actions {
    margin-top: 2rem;
    text-align: center;
}

.article-content-section__btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--radius-md);
    font-weight: 500;
    text-align: center;
    transition: all var(--anim-duration) var(--anim-ease);
    cursor: pointer;
    border: 1px solid var(--bg-primary);
    font-size: 1rem;
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
}

.article-content-section__btn:hover {
    background-color: var(--bg-primary-hover);
    border-color: var(--bg-primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.story-metrics-c3 {
        padding: clamp(3.6rem, 8vw, 6rem) var(--space-x);
        background: var(--gradient-accent);
        color: var(--fg-on-primary);
    }

    .story-metrics-c3__wrap {
        max-width: 60rem;
        margin: 0 auto;
    }

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

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

    .story-metrics-c3__head span {
        display: block;
        margin-top: .8rem;

    }

    .story-metrics-c3__panel {
        margin-top: 1rem;
        display: grid;
        grid-template-columns: 1.1fr .9fr;
        gap: 1rem;
        padding: 1rem;
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .story-metrics-c3__text p {
        margin: 0 0 .75rem;

    }

    .story-metrics-c3__stats {
        display: grid;
        gap: .75rem;
    }

    .story-metrics-c3__stats div {
        padding: .85rem;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .12);
    }

    .story-metrics-c3__stats span {
        display: block;
        margin-top: .25rem;
        color: rgba(255, 255, 255, .82);
    }

    .story-metrics-c3__button {
        display: inline-flex;
        margin-top: 1rem;
        min-height: 2.85rem;
        align-items: center;
        justify-content: center;
        padding: 0 1rem;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        color: var(--fg-on-page);
        text-decoration: none;
    }

    @media (max-width: 820px) {
        .story-metrics-c3__panel {
            grid-template-columns: 1fr;
        }
    }

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: var(--space-y) var(--space-x);
    background: transparent;
    transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
  }

  .header--scrolled {
    background: var(--surface-1);
    box-shadow: var(--shadow-md);
  }

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

  .header__logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .header__logo:hover {
    color: var(--brand-contrast);
  }

  .header__nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }

  .header__nav-link {
    text-decoration: none;
    color: var(--neutral-800);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: var(--space-y) calc(var(--space-x) * 0.5);
    border-radius: var(--radius-sm);
    transition: color var(--anim-duration) var(--anim-ease), background var(--anim-duration) var(--anim-ease);
  }

  .header__nav-link:hover {
    color: var(--brand);
    background: var(--surface-2);
  }

  .header__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
  }

  .header__burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--neutral-900);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

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

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

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

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

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

    .header__nav--open {
      opacity: 1;
      visibility: visible;
    }

    .header__nav-list {
      flex-direction: column;
      align-items: center;
      gap: calc(var(--gap) * 1.5);
    }

    .header__nav-link {
      font-size: calc(var(--font-size-base) * 1.25);
      padding: var(--space-y) var(--space-x);
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
  }
  .footer-col {
    flex: 1 1 250px;
    min-width: 200px;
  }
  .logo {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
  }
  .tagline {
    color: #b0b0b0;
    margin: 0;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
  }
  .footer-nav li {
    margin-bottom: 0.5rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
  .legal-links {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
  }
  .legal-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.85rem;
  }
  .legal-links a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
  .contact-block p {
    margin: 0.3rem 0;
  }
  .contact-block a {
    color: #e0e0e0;
    text-decoration: none;
  }
  .contact-block a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
  .disclaimer {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: #999;
    line-height: 1.4;
  }
  .footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 1rem;
    margin-top: 2rem;
    font-size: 0.85rem;
    color: #999;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-col {
      flex: 1 1 100%;
    }
    .legal-links {
      flex-direction: row;
      justify-content: center;
      gap: 1rem;
    }
  }

.nfcookie-v10 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .nfcookie-v10__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * .8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .nfcookie-v10__text {flex: 1 1 420px;}
    .nfcookie-v10__text strong {display: block; margin-bottom: 4px; color: var(--fg-on-surface);}
    .nfcookie-v10__text p {margin: 0; color: var(--fg-on-surface-light);}

    .nfcookie-v10__actions {display: flex; flex-wrap: wrap; gap: 8px;}

    .nfcookie-v10__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v10__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

.story-metrics-c3 {
        padding: clamp(3.6rem, 8vw, 6rem) var(--space-x);
        background: var(--gradient-accent);
        color: var(--fg-on-primary);
    }

    .story-metrics-c3__wrap {
        max-width: 60rem;
        margin: 0 auto;
    }

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

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

    .story-metrics-c3__head span {
        display: block;
        margin-top: .8rem;

    }

    .story-metrics-c3__panel {
        margin-top: 1rem;
        display: grid;
        grid-template-columns: 1.1fr .9fr;
        gap: 1rem;
        padding: 1rem;
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .story-metrics-c3__text p {
        margin: 0 0 .75rem;

    }

    .story-metrics-c3__stats {
        display: grid;
        gap: .75rem;
    }

    .story-metrics-c3__stats div {
        padding: .85rem;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .12);
    }

    .story-metrics-c3__stats span {
        display: block;
        margin-top: .25rem;
        color: rgba(255, 255, 255, .82);
    }

    .story-metrics-c3__button {
        display: inline-flex;
        margin-top: 1rem;
        min-height: 2.85rem;
        align-items: center;
        justify-content: center;
        padding: 0 1rem;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        color: var(--fg-on-page);
        text-decoration: none;
    }

    @media (max-width: 820px) {
        .story-metrics-c3__panel {
            grid-template-columns: 1fr;
        }
    }

.identity-cv5 {
        padding: clamp(52px, 8vw, 96px) clamp(16px, 4vw, 40px);
        background: linear-gradient(145deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
    }

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

    .identity-cv5__hero {
        position: relative;
        border-radius: var(--radius-xl);
        overflow: hidden;
        min-height: 220px;
    }

    .identity-cv5__hero img {
        width: 100%;
        height: 100%;
        min-height: 220px;
        object-fit: cover;
        display: block;
    }

    .identity-cv5__overlay {
        position: absolute;
        inset: auto 0 0 0;
        padding: var(--space-y) var(--space-x);
        background: linear-gradient(180deg, rgba(0, 0, 0, 0), var(--overlay));
    }

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

    .identity-cv5__overlay span {
        opacity: .92;
    }

    .identity-cv5__grid {
        margin-top: 14px;
        display: grid;
        grid-template-columns: 1.2fr .8fr;
        gap: var(--gap);
    }

    .identity-cv5__grid p {
        margin: 0 0 10px;
    }

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

    .identity-cv5__grid li {
        background: rgba(255, 255, 255, 0.16);
        border: 1px solid rgba(255, 255, 255, 0.24);
        border-radius: var(--radius-md);
        padding: 10px 12px;
    }

    @media (max-width: 800px) {
        .identity-cv5__grid {
            grid-template-columns: 1fr;
        }
    }

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: var(--space-y) var(--space-x);
    background: transparent;
    transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
  }

  .header--scrolled {
    background: var(--surface-1);
    box-shadow: var(--shadow-md);
  }

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

  .header__logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .header__logo:hover {
    color: var(--brand-contrast);
  }

  .header__nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }

  .header__nav-link {
    text-decoration: none;
    color: var(--neutral-800);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: var(--space-y) calc(var(--space-x) * 0.5);
    border-radius: var(--radius-sm);
    transition: color var(--anim-duration) var(--anim-ease), background var(--anim-duration) var(--anim-ease);
  }

  .header__nav-link:hover {
    color: var(--brand);
    background: var(--surface-2);
  }

  .header__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
  }

  .header__burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--neutral-900);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

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

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

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

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

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

    .header__nav--open {
      opacity: 1;
      visibility: visible;
    }

    .header__nav-list {
      flex-direction: column;
      align-items: center;
      gap: calc(var(--gap) * 1.5);
    }

    .header__nav-link {
      font-size: calc(var(--font-size-base) * 1.25);
      padding: var(--space-y) var(--space-x);
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
  }
  .footer-col {
    flex: 1 1 250px;
    min-width: 200px;
  }
  .logo {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
  }
  .tagline {
    color: #b0b0b0;
    margin: 0;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
  }
  .footer-nav li {
    margin-bottom: 0.5rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
  .legal-links {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
  }
  .legal-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.85rem;
  }
  .legal-links a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
  .contact-block p {
    margin: 0.3rem 0;
  }
  .contact-block a {
    color: #e0e0e0;
    text-decoration: none;
  }
  .contact-block a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
  .disclaimer {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: #999;
    line-height: 1.4;
  }
  .footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 1rem;
    margin-top: 2rem;
    font-size: 0.85rem;
    color: #999;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-col {
      flex: 1 1 100%;
    }
    .legal-links {
      flex-direction: row;
      justify-content: center;
      gap: 1rem;
    }
  }

.nfcookie-v10 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .nfcookie-v10__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * .8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .nfcookie-v10__text {flex: 1 1 420px;}
    .nfcookie-v10__text strong {display: block; margin-bottom: 4px; color: var(--fg-on-surface);}
    .nfcookie-v10__text p {margin: 0; color: var(--fg-on-surface-light);}

    .nfcookie-v10__actions {display: flex; flex-wrap: wrap; gap: 8px;}

    .nfcookie-v10__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v10__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

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

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

    .nfcontacts-v7__head {
        margin-bottom: 16px;
        text-align: center;
    }

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

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

    .nfcontacts-v7__panel {
        border: 1px solid rgba(255, 255, 255, .26);
        border-radius: var(--radius-lg);
        background: rgba(255, 255, 255, .1);
        padding: 16px;
    }

    .nfcontacts-v7__panel h3 {
        margin: 0 0 12px;
    }

    .nfcontacts-v7__list p {
        margin: 0 0 10px;
        display: grid;
        gap: 3px;
    }

    .nfcontacts-v7__social {
        margin-top: 14px;
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        align-items: center;
    }

    .nfcontacts-v7__social a {
        text-decoration: none;
        color: var(--fg-on-primary);
        border: 1px solid rgba(255, 255, 255, .35);
        border-radius: 999px;
        padding: 6px 10px;
    }

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

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

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

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

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

    .nftouch-v10__cols {
        display: grid;
        grid-template-columns: 1.2fr .8fr;
        gap: 12px;
    }

    .nftouch-v10__left,
    .nftouch-v10__right {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        padding: 12px;
    }

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

    .nftouch-v10__left article {
        padding: 8px 0;
        border-bottom: 1px solid var(--border-on-surface-light);
        display: grid;
        gap: 6px;
    }

    .nftouch-v10__left article:last-child {
        border-bottom: 0;
    }

    .nftouch-v10__left h3 {
        margin: 0;
    }

    .nftouch-v10__left span {
        color: var(--neutral-600);
    }

    .nftouch-v10__left a {
        color: var(--link);
        text-decoration: none;
    }

    .nftouch-v10__right img {
        width: 100%;
        border-radius: var(--radius-md);
        border: 1px solid var(--border-on-surface-light);
    }

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

    @media (max-width: 860px) {
        .nftouch-v10__cols {
            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 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: var(--space-y) var(--space-x);
    background: transparent;
    transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
  }

  .header--scrolled {
    background: var(--surface-1);
    box-shadow: var(--shadow-md);
  }

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

  .header__logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .header__logo:hover {
    color: var(--brand-contrast);
  }

  .header__nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }

  .header__nav-link {
    text-decoration: none;
    color: var(--neutral-800);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: var(--space-y) calc(var(--space-x) * 0.5);
    border-radius: var(--radius-sm);
    transition: color var(--anim-duration) var(--anim-ease), background var(--anim-duration) var(--anim-ease);
  }

  .header__nav-link:hover {
    color: var(--brand);
    background: var(--surface-2);
  }

  .header__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
  }

  .header__burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--neutral-900);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

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

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

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

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

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

    .header__nav--open {
      opacity: 1;
      visibility: visible;
    }

    .header__nav-list {
      flex-direction: column;
      align-items: center;
      gap: calc(var(--gap) * 1.5);
    }

    .header__nav-link {
      font-size: calc(var(--font-size-base) * 1.25);
      padding: var(--space-y) var(--space-x);
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
  }
  .footer-col {
    flex: 1 1 250px;
    min-width: 200px;
  }
  .logo {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
  }
  .tagline {
    color: #b0b0b0;
    margin: 0;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
  }
  .footer-nav li {
    margin-bottom: 0.5rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
  .legal-links {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
  }
  .legal-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.85rem;
  }
  .legal-links a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
  .contact-block p {
    margin: 0.3rem 0;
  }
  .contact-block a {
    color: #e0e0e0;
    text-decoration: none;
  }
  .contact-block a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
  .disclaimer {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: #999;
    line-height: 1.4;
  }
  .footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 1rem;
    margin-top: 2rem;
    font-size: 0.85rem;
    color: #999;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-col {
      flex: 1 1 100%;
    }
    .legal-links {
      flex-direction: row;
      justify-content: center;
      gap: 1rem;
    }
  }

.nfcookie-v10 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .nfcookie-v10__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * .8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .nfcookie-v10__text {flex: 1 1 420px;}
    .nfcookie-v10__text strong {display: block; margin-bottom: 4px; color: var(--fg-on-surface);}
    .nfcookie-v10__text p {margin: 0; color: var(--fg-on-surface-light);}

    .nfcookie-v10__actions {display: flex; flex-wrap: wrap; gap: 8px;}

    .nfcookie-v10__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v10__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

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

    .policy-layout-c .wrap {
        max-width: 920px;
        margin: 0 auto;
    }

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

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

    .policy-layout-c .section-head p {
        margin: 10px 0 0;
        opacity: .92;
    }

    .policy-layout-c .stack {
        display: grid;
        gap: 10px;
    }

    .policy-layout-c article {
        border: 1px solid rgba(255, 255, 255, .3);
        border-radius: var(--radius-md);
        padding: 12px;
        background: rgba(255, 255, 255, .1);
    }

    .policy-layout-c h3 {
        margin: 0;
        display: flex;
        gap: 8px;
        align-items: center;
    }

    .policy-layout-c h3 span {
        display: inline-grid;
        place-items: center;
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: rgba(255, 255, 255, .18);
    }

    .policy-layout-c article p {
        margin: 8px 0 0;
        opacity: .95;
    }

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: var(--space-y) var(--space-x);
    background: transparent;
    transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
  }

  .header--scrolled {
    background: var(--surface-1);
    box-shadow: var(--shadow-md);
  }

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

  .header__logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .header__logo:hover {
    color: var(--brand-contrast);
  }

  .header__nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }

  .header__nav-link {
    text-decoration: none;
    color: var(--neutral-800);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: var(--space-y) calc(var(--space-x) * 0.5);
    border-radius: var(--radius-sm);
    transition: color var(--anim-duration) var(--anim-ease), background var(--anim-duration) var(--anim-ease);
  }

  .header__nav-link:hover {
    color: var(--brand);
    background: var(--surface-2);
  }

  .header__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
  }

  .header__burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--neutral-900);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

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

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

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

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

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

    .header__nav--open {
      opacity: 1;
      visibility: visible;
    }

    .header__nav-list {
      flex-direction: column;
      align-items: center;
      gap: calc(var(--gap) * 1.5);
    }

    .header__nav-link {
      font-size: calc(var(--font-size-base) * 1.25);
      padding: var(--space-y) var(--space-x);
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
  }
  .footer-col {
    flex: 1 1 250px;
    min-width: 200px;
  }
  .logo {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
  }
  .tagline {
    color: #b0b0b0;
    margin: 0;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
  }
  .footer-nav li {
    margin-bottom: 0.5rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
  .legal-links {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
  }
  .legal-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.85rem;
  }
  .legal-links a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
  .contact-block p {
    margin: 0.3rem 0;
  }
  .contact-block a {
    color: #e0e0e0;
    text-decoration: none;
  }
  .contact-block a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
  .disclaimer {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: #999;
    line-height: 1.4;
  }
  .footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 1rem;
    margin-top: 2rem;
    font-size: 0.85rem;
    color: #999;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-col {
      flex: 1 1 100%;
    }
    .legal-links {
      flex-direction: row;
      justify-content: center;
      gap: 1rem;
    }
  }

.nfcookie-v10 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .nfcookie-v10__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * .8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .nfcookie-v10__text {flex: 1 1 420px;}
    .nfcookie-v10__text strong {display: block; margin-bottom: 4px; color: var(--fg-on-surface);}
    .nfcookie-v10__text p {margin: 0; color: var(--fg-on-surface-light);}

    .nfcookie-v10__actions {display: flex; flex-wrap: wrap; gap: 8px;}

    .nfcookie-v10__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v10__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

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

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

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

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

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

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

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

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

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

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

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: var(--space-y) var(--space-x);
    background: transparent;
    transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
  }

  .header--scrolled {
    background: var(--surface-1);
    box-shadow: var(--shadow-md);
  }

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

  .header__logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .header__logo:hover {
    color: var(--brand-contrast);
  }

  .header__nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }

  .header__nav-link {
    text-decoration: none;
    color: var(--neutral-800);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: var(--space-y) calc(var(--space-x) * 0.5);
    border-radius: var(--radius-sm);
    transition: color var(--anim-duration) var(--anim-ease), background var(--anim-duration) var(--anim-ease);
  }

  .header__nav-link:hover {
    color: var(--brand);
    background: var(--surface-2);
  }

  .header__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
  }

  .header__burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--neutral-900);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

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

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

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

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

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

    .header__nav--open {
      opacity: 1;
      visibility: visible;
    }

    .header__nav-list {
      flex-direction: column;
      align-items: center;
      gap: calc(var(--gap) * 1.5);
    }

    .header__nav-link {
      font-size: calc(var(--font-size-base) * 1.25);
      padding: var(--space-y) var(--space-x);
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
  }
  .footer-col {
    flex: 1 1 250px;
    min-width: 200px;
  }
  .logo {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
  }
  .tagline {
    color: #b0b0b0;
    margin: 0;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
  }
  .footer-nav li {
    margin-bottom: 0.5rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
  .legal-links {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
  }
  .legal-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.85rem;
  }
  .legal-links a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
  .contact-block p {
    margin: 0.3rem 0;
  }
  .contact-block a {
    color: #e0e0e0;
    text-decoration: none;
  }
  .contact-block a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
  .disclaimer {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: #999;
    line-height: 1.4;
  }
  .footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 1rem;
    margin-top: 2rem;
    font-size: 0.85rem;
    color: #999;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-col {
      flex: 1 1 100%;
    }
    .legal-links {
      flex-direction: row;
      justify-content: center;
      gap: 1rem;
    }
  }

.nfcookie-v10 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .nfcookie-v10__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * .8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .nfcookie-v10__text {flex: 1 1 420px;}
    .nfcookie-v10__text strong {display: block; margin-bottom: 4px; color: var(--fg-on-surface);}
    .nfcookie-v10__text p {margin: 0; color: var(--fg-on-surface-light);}

    .nfcookie-v10__actions {display: flex; flex-wrap: wrap; gap: 8px;}

    .nfcookie-v10__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v10__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

.thank-mode-e {
        padding: clamp(58px, 10vw, 114px) 18px;
        background: repeating-linear-gradient(135deg, var(--bg-alt), var(--bg-alt) 16px, var(--neutral-0) 16px, var(--neutral-0) 32px);
        color: var(--fg-on-page);
    }

    .thank-mode-e .wrap {
        max-width: 720px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(28px, 4vw, 42px);
        background: var(--surface-1);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-md);
    }

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

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

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

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: var(--space-y) var(--space-x);
    background: transparent;
    transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
  }

  .header--scrolled {
    background: var(--surface-1);
    box-shadow: var(--shadow-md);
  }

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

  .header__logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .header__logo:hover {
    color: var(--brand-contrast);
  }

  .header__nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }

  .header__nav-link {
    text-decoration: none;
    color: var(--neutral-800);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: var(--space-y) calc(var(--space-x) * 0.5);
    border-radius: var(--radius-sm);
    transition: color var(--anim-duration) var(--anim-ease), background var(--anim-duration) var(--anim-ease);
  }

  .header__nav-link:hover {
    color: var(--brand);
    background: var(--surface-2);
  }

  .header__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
  }

  .header__burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--neutral-900);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

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

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

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

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

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

    .header__nav--open {
      opacity: 1;
      visibility: visible;
    }

    .header__nav-list {
      flex-direction: column;
      align-items: center;
      gap: calc(var(--gap) * 1.5);
    }

    .header__nav-link {
      font-size: calc(var(--font-size-base) * 1.25);
      padding: var(--space-y) var(--space-x);
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
  }
  .footer-col {
    flex: 1 1 250px;
    min-width: 200px;
  }
  .logo {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
  }
  .tagline {
    color: #b0b0b0;
    margin: 0;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
  }
  .footer-nav li {
    margin-bottom: 0.5rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
  .legal-links {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
  }
  .legal-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.85rem;
  }
  .legal-links a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
  .contact-block p {
    margin: 0.3rem 0;
  }
  .contact-block a {
    color: #e0e0e0;
    text-decoration: none;
  }
  .contact-block a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
  .disclaimer {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: #999;
    line-height: 1.4;
  }
  .footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 1rem;
    margin-top: 2rem;
    font-size: 0.85rem;
    color: #999;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-col {
      flex: 1 1 100%;
    }
    .legal-links {
      flex-direction: row;
      justify-content: center;
      gap: 1rem;
    }
  }

.nfcookie-v10 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .nfcookie-v10__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * .8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .nfcookie-v10__text {flex: 1 1 420px;}
    .nfcookie-v10__text strong {display: block; margin-bottom: 4px; color: var(--fg-on-surface);}
    .nfcookie-v10__text p {margin: 0; color: var(--fg-on-surface-light);}

    .nfcookie-v10__actions {display: flex; flex-wrap: wrap; gap: 8px;}

    .nfcookie-v10__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v10__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

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

.err-slab-b .frame {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    padding: clamp(28px, 4vw, 46px);
    border: 2px solid var(--border-on-surface);
    border-radius: var(--radius-xl);
    background: var(--surface-1);
    box-shadow: var(--shadow-md);
}

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

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

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