:root {
  --font-family: "Archivo", sans-serif;
  --font-size-base: 15.7px;
  --line-height-base: 1.56;

  --max-w: 1100px;
  --space-x: 1.09rem;
  --space-y: 1.5rem;
  --gap: 0.95rem;

  --radius-xl: 1.04rem;
  --radius-lg: 0.6rem;
  --radius-md: 0.42rem;
  --radius-sm: 0.29rem;

  --shadow-sm: 0 2px 4px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 18px rgba(0,0,0,0.11);
  --shadow-lg: 0 12px 26px rgba(0,0,0,0.13);

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

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

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

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

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

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

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

  --bg-primary: #1E3A5F;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #152C4A;
  --ring: #F97316;

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

  --link: #1E3A5F;
  --link-hover: #F97316;

  --gradient-hero: linear-gradient(135deg, #1E3A5F 0%, #2D5A87 100%);
  --gradient-accent: linear-gradient(135deg, #F97316 0%, #FB923C 100%);

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

header {
    background: var(--surface-1);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-y) var(--space-x);
    gap: var(--gap);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 40px;
    height: 40px;
    background: var(--btn-ghost-bg);
    border: 1px solid var(--border-on-surface);
    border-radius: var(--radius-md);
    cursor: pointer;
    padding: 8px;
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: all var(--anim-duration) var(--anim-ease);
  }
  .burger[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface-1);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    opacity: 0;
  }
  .nav-menu.open {
    max-height: 400px;
    opacity: 1;
  }
  .nav-menu ul {
    list-style: none;
    margin: 0;
    padding: var(--space-y) var(--space-x);
    display: flex;
    flex-direction: column;
    gap: var(--gap);
  }
  .nav-menu a {
    display: block;
    padding: 0.5rem 0;
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    border-bottom: 1px solid var(--border-on-surface-light);
    transition: color var(--anim-duration) var(--anim-ease);
  }
  .nav-menu a:hover {
    color: var(--link-hover);
  }
  @media (min-width: 768px) {
    .burger {
      display: flex;
    }
    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1);
      box-shadow: var(--shadow-md);
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
      opacity: 0;
    }
    .nav-menu.open {
      max-height: 400px;
      opacity: 1;
    }
    .nav-menu ul {
      flex-direction: column;
      gap: var(--gap);
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 1rem;
    font-family: Arial, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
  }
  .footer-brand .logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #e67e22;
    text-decoration: none;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 1rem;
  }
  .footer-nav a:hover {
    color: #e67e22;
  }
  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-links a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 0.95rem;
  }
  .footer-links a:hover {
    color: #e67e22;
  }
  .footer-contact p {
    margin: 0.3rem 0;
    font-size: 0.95rem;
  }
  .footer-contact a {
    color: #e67e22;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #7f8c8d;
    text-align: center;
    font-size: 0.85rem;
    color: #bdc3c7;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-links {
      align-items: center;
    }
  }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: end;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

    .cookie-cv9__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

    .cookie-cv9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

.wp-lang-switcher-v4 {
        position: fixed;
        right: clamp(16px, 2vw, 24px);
        bottom: clamp(16px, 2vw, 24px);
        z-index: 99999;

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

    .wp-lang-switcher-v4__container {
        display: flex;
        align-items: center;
        gap: 0;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: calc(var(--radius-xl) + var(--local-random) * 4px);
        padding: calc(5px + var(--local-random) * 1px);
        box-shadow: var(--shadow-lg);
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .wp-lang-switcher-v4__container.expanded {
        gap: calc(4px + var(--local-random) * 2px);
    }

    .wp-lang-switcher-v4__toggle {
        width: calc(42px + var(--local-random) * 2px);
        height: calc(42px + var(--local-random) * 2px);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
        border-radius: calc(var(--radius-lg) - var(--local-random) * 2px);
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all var(--anim-duration) var(--anim-ease);
        flex-shrink: 0;
        position: relative;
        overflow: hidden;
    }

    .wp-lang-switcher-v4__toggle::before {
        content: '';
        position: absolute;
        width: 200%;
        height: 200%;
        background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        animation: spin calc(2.8s + var(--local-random) * 0.4s) linear infinite;
    }

    @keyframes spin {
        from {
            transform: rotate(0deg);
        }
        to {
            transform: rotate(360deg);
        }
    }

    .wp-lang-switcher-v4__icon {
        font-size: calc(18px + var(--local-random) * 2px);
        position: relative;
        z-index: 1;
    }

    .wp-lang-switcher-v4__toggle:hover {
        transform: scale(calc(1.03 + var(--local-random) * 0.02));
    }

    .wp-lang-switcher-v4__list {
        display: flex;
        gap: calc(5px + var(--local-random) * 1px);
        max-width: 0;
        opacity: 0;
        transition: all var(--anim-duration) cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }

    .wp-lang-switcher-v4__container.expanded .wp-lang-switcher-v4__list {
        max-width: 300px;
        opacity: 1;
    }

    .wp-lang-switcher-v4__list button,
    .wp-lang-switcher-v4__list a {
        width: calc(38px + var(--local-random) * 2px);
        height: calc(38px + var(--local-random) * 2px);
        border: 2px solid var(--border-on-surface);
        background: var(--surface-2);
        color: var(--fg-on-surface);
        cursor: pointer;

        font-size: 12px;
        font-weight: 700;
        border-radius: calc(var(--radius-md) - var(--local-random) * 2px);
        transition: all var(--anim-duration) var(--anim-ease);
        position: relative;
        flex-shrink: 0;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .wp-lang-switcher-v4__list button::before,
    .wp-lang-switcher-v4__list a::before {
        content: '';
        position: absolute;
        inset: calc(-2px - var(--local-random) * 0.5px);
        border-radius: calc(var(--radius-md) - var(--local-random) * 2px);
        background: var(--gradient-accent);

        z-index: -1;
        transition: opacity var(--anim-duration) var(--anim-ease);
    }

    .wp-lang-switcher-v4__list button:hover,
    .wp-lang-switcher-v4__list a:hover {
        border-color: transparent;
        color: var(--fg-on-primary);
        transform: translateY(calc(-2px - var(--local-random) * 1px));
    }

    .wp-lang-switcher-v4__list button:hover::before,
    .wp-lang-switcher-v4__list a:hover::before {
        opacity: 1;
    }

    .wp-lang-switcher-v4__list button span,
    .wp-lang-switcher-v4__list a span {
        position: relative;
        z-index: 1;
    }

.intro-stack-l12 {
        padding: clamp(3.6rem, 8vw, 6.5rem) var(--space-x);
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

    .intro-stack-l12__wrap {
        max-width: 58rem;
        margin: 0 auto;
    }

    .intro-stack-l12__hero {
        text-align: center;
    }

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

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

    .intro-stack-l12__hero strong {
        display: block;
        margin-top: .7rem;
    }

    .intro-stack-l12__panels {
        margin-top: 1.15rem;
        display: grid;
        gap: .8rem;
    }

    .intro-stack-l12__panels article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
        color: var(--neutral-600);
    }

.about-struct-v5 {
        padding: calc(var(--space-y) * 2) var(--space-x);
        background: var(--gradient-accent);
        color: var(--accent-contrast)
    }

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

    .about-struct-v5 h2, .about-struct-v5 h3, .about-struct-v5 p {
        margin: 0
    }

    .about-struct-v5 .split, .about-struct-v5 .duo {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: var(--gap)
    }

    .about-struct-v5 .split img, .about-struct-v5 .gallery img {
        display: block;
        width: 100%;
        object-fit: cover;
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-md)
    }

    .about-struct-v5 .split img {
        aspect-ratio: 4/3
    }

    .about-struct-v5 .split div {
        display: grid;
        gap: .5rem
    }

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

    .about-struct-v5 article, .about-struct-v5 .values div, .about-struct-v5 .facts div, .about-struct-v5 .quote, .about-struct-v5 .statement {
        background: var(--chip-bg);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        padding: .85rem
    }

    .about-struct-v5 .timeline {
        display: grid;
        gap: .65rem
    }

    .about-struct-v5 .timeline article {
        position: relative;
        padding-left: 1.25rem
    }

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

    .about-struct-v5 .values, .about-struct-v5 .facts {
        display: grid;
        gap: .6rem
    }

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

    .about-struct-v5 .gallery img {
        aspect-ratio: 1/1
    }

    .about-struct-v5 .statement {
        display: grid;
        gap: .5rem
    }

    .about-struct-v5 .actions {
        display: flex;
        flex-wrap: wrap;
        gap: .45rem
    }

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

    @media (max-width: 900px) {
        .about-struct-v5 .split, .about-struct-v5 .duo, .about-struct-v5 .cards, .about-struct-v5 .gallery {
            grid-template-columns:1fr 1fr
        }
    }

    @media (max-width: 680px) {
        .about-struct-v5 .split, .about-struct-v5 .duo, .about-struct-v5 .cards, .about-struct-v5 .gallery {
            grid-template-columns:1fr
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.nfsocial-v7 {
        padding: clamp(20px, 3vw, 44px);
        background: var(--gradient-accent);
        color: var(--accent-contrast);
    }

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

    .nfsocial-v7__head {
        margin-bottom: 14px;
    }

    .nfsocial-v7 h2 {
        margin: 0;
        font-size: clamp(24px, 4.6vw, 44px);
    }

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

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

    .nfsocial-v7__logos div {
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, .22);
        background: rgba(255, 255, 255, .1);
        min-height: 80px;
        height: 320px;
        display: grid;
        place-items: center;
        padding: 10px;
    }

    .nfsocial-v7__logos img {
        max-width: 100%;
        height: 100%;
    }

    .nfsocial-v7__stats {
        margin-top: 14px;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 10px;
    }

    .nfsocial-v7__stats article {
        border-radius: var(--radius-md);
        border: 1px solid rgba(255, 255, 255, .22);
        background: rgba(255, 255, 255, .12);
        padding: 12px;
    }

    .nfsocial-v7__stats strong,
    .nfsocial-v7__stats span {
        display: block;
    }

    .nfsocial-v7__stats span {
        margin-top: 5px;
        opacity: .92;
    }

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

    .visual-column-l6__wrap {
        max-width: 62rem;
        margin: 0 auto;
    }

    .visual-column-l6__head {
        margin-bottom: 1rem;
    }

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

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

    .visual-column-l6__list {
        display: grid;
        gap: .8rem;
    }

    .visual-column-l6__list article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
    }

    .visual-column-l6__meta {
        display: flex;
        justify-content: space-between;
        gap: .75rem;
        align-items: center;
        margin-bottom: .8rem;
    }

    .visual-column-l6__meta span {
        color: var(--neutral-600);
    }

    .visual-column-l6__content {
        display: grid;
        grid-template-columns: 13rem 1fr;
        gap: 1rem;
        align-items: center;
    }

    .visual-column-l6__content img {
        display: block;
        width: 100%;
        height: 10rem;
        object-fit: cover;
        border-radius: var(--radius-md);
    }

    .visual-column-l6__content small {
        color: var(--neutral-600);
    }

    .visual-column-l6__content h3 {
        margin: .45rem 0 .35rem;
    }

    .visual-column-l6__content p {
        margin: 0;
        color: var(--neutral-600);
    }

    @media (max-width: 680px) {
        .visual-column-l6__content {
            grid-template-columns: 1fr;
        }
    }

header {
    background: var(--surface-1);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-y) var(--space-x);
    gap: var(--gap);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 40px;
    height: 40px;
    background: var(--btn-ghost-bg);
    border: 1px solid var(--border-on-surface);
    border-radius: var(--radius-md);
    cursor: pointer;
    padding: 8px;
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: all var(--anim-duration) var(--anim-ease);
  }
  .burger[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface-1);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    opacity: 0;
  }
  .nav-menu.open {
    max-height: 400px;
    opacity: 1;
  }
  .nav-menu ul {
    list-style: none;
    margin: 0;
    padding: var(--space-y) var(--space-x);
    display: flex;
    flex-direction: column;
    gap: var(--gap);
  }
  .nav-menu a {
    display: block;
    padding: 0.5rem 0;
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    border-bottom: 1px solid var(--border-on-surface-light);
    transition: color var(--anim-duration) var(--anim-ease);
  }
  .nav-menu a:hover {
    color: var(--link-hover);
  }
  @media (min-width: 768px) {
    .burger {
      display: flex;
    }
    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1);
      box-shadow: var(--shadow-md);
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
      opacity: 0;
    }
    .nav-menu.open {
      max-height: 400px;
      opacity: 1;
    }
    .nav-menu ul {
      flex-direction: column;
      gap: var(--gap);
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 1rem;
    font-family: Arial, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
  }
  .footer-brand .logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #e67e22;
    text-decoration: none;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 1rem;
  }
  .footer-nav a:hover {
    color: #e67e22;
  }
  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-links a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 0.95rem;
  }
  .footer-links a:hover {
    color: #e67e22;
  }
  .footer-contact p {
    margin: 0.3rem 0;
    font-size: 0.95rem;
  }
  .footer-contact a {
    color: #e67e22;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #7f8c8d;
    text-align: center;
    font-size: 0.85rem;
    color: #bdc3c7;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-links {
      align-items: center;
    }
  }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: end;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

    .cookie-cv9__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

    .cookie-cv9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

.post-list--colored-v5 {

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

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

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

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

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

.post-list__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
    gap: 16px;
}

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

.post-list__card--hot {
    border-color: var(--accent);
}
.post-list__card--new {
    border-color: var(--bg-primary);
}
.post-list__card--evergreen {
    border-color: var(--accent);
}

.post-list__category {
    margin: 0 0 4px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--bg-accent);
}

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

.post-list__excerpt {
    margin: 0 0 8px;
    font-size: 0.9rem;
    color: var(--neutral-100);
}

.post-list__meta {
    margin: 0;
    font-size: 0.8rem;
    color: var(--neutral-300);
}

header {
    background: var(--surface-1);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-y) var(--space-x);
    gap: var(--gap);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 40px;
    height: 40px;
    background: var(--btn-ghost-bg);
    border: 1px solid var(--border-on-surface);
    border-radius: var(--radius-md);
    cursor: pointer;
    padding: 8px;
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: all var(--anim-duration) var(--anim-ease);
  }
  .burger[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface-1);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    opacity: 0;
  }
  .nav-menu.open {
    max-height: 400px;
    opacity: 1;
  }
  .nav-menu ul {
    list-style: none;
    margin: 0;
    padding: var(--space-y) var(--space-x);
    display: flex;
    flex-direction: column;
    gap: var(--gap);
  }
  .nav-menu a {
    display: block;
    padding: 0.5rem 0;
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    border-bottom: 1px solid var(--border-on-surface-light);
    transition: color var(--anim-duration) var(--anim-ease);
  }
  .nav-menu a:hover {
    color: var(--link-hover);
  }
  @media (min-width: 768px) {
    .burger {
      display: flex;
    }
    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1);
      box-shadow: var(--shadow-md);
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
      opacity: 0;
    }
    .nav-menu.open {
      max-height: 400px;
      opacity: 1;
    }
    .nav-menu ul {
      flex-direction: column;
      gap: var(--gap);
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 1rem;
    font-family: Arial, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
  }
  .footer-brand .logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #e67e22;
    text-decoration: none;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 1rem;
  }
  .footer-nav a:hover {
    color: #e67e22;
  }
  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-links a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 0.95rem;
  }
  .footer-links a:hover {
    color: #e67e22;
  }
  .footer-contact p {
    margin: 0.3rem 0;
    font-size: 0.95rem;
  }
  .footer-contact a {
    color: #e67e22;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #7f8c8d;
    text-align: center;
    font-size: 0.85rem;
    color: #bdc3c7;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-links {
      align-items: center;
    }
  }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: end;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

    .cookie-cv9__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

    .cookie-cv9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

.post-item--colored-v5 {
        padding: 64px 20px;
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    .post-item__inner {
        max-width: 720px;
        margin: 0 auto;
    }

    .post-item__card {
        background: rgba(15,23,42,0.98);
        border-radius: var(--radius-xl);
        padding: 20px 22px;
        border: 1px solid rgba(148,163,184,0.8);
        box-shadow: var(--shadow-lg);
    }

    .post-item__category {
        margin: 0 0 6px;
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 0.16em;
        color: var(--bg-accent);
    }

    .post-item__header h1 {
        margin: 0 0 4px;
        font-size: clamp(24px,4vw,32px);
        color: var(--brand-contrast);
    }

    .post-item__meta {
        margin: 0;
        font-size: 0.85rem;
        color: var(--neutral-300);
    }

    .post-item__lead {
        margin: 12px 0;
        font-size: 0.95rem;
        color: var(--neutral-100);
    }

    .post-item__body {
        font-size: 0.92rem;
        color: var(--neutral-200);
        line-height: 1.7;
    }

    .post-item__body h2 {
        margin: 20px 0 8px;
        font-size: 1.2rem;
        color: var(--brand-contrast);
    }

    .post-item__body p {
        margin: 0 0 12px;
    }

header {
    background: var(--surface-1);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-y) var(--space-x);
    gap: var(--gap);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 40px;
    height: 40px;
    background: var(--btn-ghost-bg);
    border: 1px solid var(--border-on-surface);
    border-radius: var(--radius-md);
    cursor: pointer;
    padding: 8px;
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: all var(--anim-duration) var(--anim-ease);
  }
  .burger[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface-1);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    opacity: 0;
  }
  .nav-menu.open {
    max-height: 400px;
    opacity: 1;
  }
  .nav-menu ul {
    list-style: none;
    margin: 0;
    padding: var(--space-y) var(--space-x);
    display: flex;
    flex-direction: column;
    gap: var(--gap);
  }
  .nav-menu a {
    display: block;
    padding: 0.5rem 0;
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    border-bottom: 1px solid var(--border-on-surface-light);
    transition: color var(--anim-duration) var(--anim-ease);
  }
  .nav-menu a:hover {
    color: var(--link-hover);
  }
  @media (min-width: 768px) {
    .burger {
      display: flex;
    }
    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1);
      box-shadow: var(--shadow-md);
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
      opacity: 0;
    }
    .nav-menu.open {
      max-height: 400px;
      opacity: 1;
    }
    .nav-menu ul {
      flex-direction: column;
      gap: var(--gap);
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 1rem;
    font-family: Arial, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
  }
  .footer-brand .logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #e67e22;
    text-decoration: none;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 1rem;
  }
  .footer-nav a:hover {
    color: #e67e22;
  }
  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-links a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 0.95rem;
  }
  .footer-links a:hover {
    color: #e67e22;
  }
  .footer-contact p {
    margin: 0.3rem 0;
    font-size: 0.95rem;
  }
  .footer-contact a {
    color: #e67e22;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #7f8c8d;
    text-align: center;
    font-size: 0.85rem;
    color: #bdc3c7;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-links {
      align-items: center;
    }
  }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: end;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

    .cookie-cv9__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

    .cookie-cv9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

.post-item {

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

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

    .post-item .post-item__header {
        margin-bottom: var(--space-y);
    }

    .post-item h1 {
        font-size: clamp(28px, 5vw, 42px);
        margin: 0 0 1rem;
        color: var(--fg-on-page);
    }

    .post-item .post-item__meta {
        display: flex;
        gap: 1rem;

        font-size: 0.875rem;
    }

    .post-item .post-item__content {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        padding: clamp(24px, 3vw, 40px);
        border-radius: var(--radius-lg);
        line-height: 1.8;
        color: var(--fg-on-page);
        margin-bottom: var(--space-y);
    }

    .post-item .post-item__comments {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        padding: clamp(24px, 3vw, 40px);
        border-radius: var(--radius-lg);
    }

    .post-item .post-item__comments h3 {
        margin: 0 0 1.5rem;
        color: var(--fg-on-page);
    }

    .post-item .post-item__comments-list {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-bottom: var(--space-y);
    }

    .post-item .post-item__comment {
        background: rgba(255, 255, 255, 0.1);
        padding: 1rem;
        border-radius: var(--radius-md);
    }

    .post-item .post-item__comment-author {
        font-weight: 600;
        color: var(--fg-on-page);
        margin-bottom: 0.5rem;
    }

    .post-item .post-item__comment-text {

        margin-bottom: 0.5rem;
    }

    .post-item .post-item__comment-date {
        font-size: 0.875rem;

    }

    .post-item .post-item__reply-form {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .post-item .post-item__reply-form textarea {
        padding: 1rem;
        border-radius: var(--radius-md);
        border: none;
        outline: none;
        min-height: 100px;

    }

    .post-item .post-item__reply-form button {
        padding: 0.875rem 2rem;
        border-radius: var(--radius-md);
        border: none;
        background: var(--bg-page);
        color: var(--bg-primary);
        font-weight: 600;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .post-item .post-item__reply-form button:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

.author--colored-v5 {

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

.author__inner {
    max-width: 520px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto minmax(0,1fr);
    gap: 16px;
    align-items: center;
}

.author__avatar {
    width: 72px;
    height: 72px;
    border-radius: 999px;
    overflow: hidden;
    border: 2px solid var(--bg-accent);
}

.author__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author__name {
    margin: 0;
    font-size: 1.05rem;
}

.author__role {
    margin: 2px 0 8px;
    font-size: 0.9rem;
    color: var(--neutral-300);
}

.author__bio {
    margin: 0;
    font-size: 0.9rem;
    color: var(--neutral-200);
}

header {
    background: var(--surface-1);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-y) var(--space-x);
    gap: var(--gap);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 40px;
    height: 40px;
    background: var(--btn-ghost-bg);
    border: 1px solid var(--border-on-surface);
    border-radius: var(--radius-md);
    cursor: pointer;
    padding: 8px;
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: all var(--anim-duration) var(--anim-ease);
  }
  .burger[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface-1);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    opacity: 0;
  }
  .nav-menu.open {
    max-height: 400px;
    opacity: 1;
  }
  .nav-menu ul {
    list-style: none;
    margin: 0;
    padding: var(--space-y) var(--space-x);
    display: flex;
    flex-direction: column;
    gap: var(--gap);
  }
  .nav-menu a {
    display: block;
    padding: 0.5rem 0;
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    border-bottom: 1px solid var(--border-on-surface-light);
    transition: color var(--anim-duration) var(--anim-ease);
  }
  .nav-menu a:hover {
    color: var(--link-hover);
  }
  @media (min-width: 768px) {
    .burger {
      display: flex;
    }
    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1);
      box-shadow: var(--shadow-md);
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
      opacity: 0;
    }
    .nav-menu.open {
      max-height: 400px;
      opacity: 1;
    }
    .nav-menu ul {
      flex-direction: column;
      gap: var(--gap);
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 1rem;
    font-family: Arial, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
  }
  .footer-brand .logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #e67e22;
    text-decoration: none;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 1rem;
  }
  .footer-nav a:hover {
    color: #e67e22;
  }
  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-links a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 0.95rem;
  }
  .footer-links a:hover {
    color: #e67e22;
  }
  .footer-contact p {
    margin: 0.3rem 0;
    font-size: 0.95rem;
  }
  .footer-contact a {
    color: #e67e22;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #7f8c8d;
    text-align: center;
    font-size: 0.85rem;
    color: #bdc3c7;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-links {
      align-items: center;
    }
  }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: end;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

    .cookie-cv9__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

    .cookie-cv9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

.post-item {

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

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

    .post-item .post-item__header {
        margin-bottom: var(--space-y);
    }

    .post-item h1 {
        font-size: clamp(28px, 5vw, 42px);
        margin: 0 0 1rem;
        color: var(--fg-on-page);
    }

    .post-item .post-item__meta {
        display: flex;
        gap: 1rem;

        font-size: 0.875rem;
    }

    .post-item .post-item__content {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        padding: clamp(24px, 3vw, 40px);
        border-radius: var(--radius-lg);
        line-height: 1.8;
        color: var(--fg-on-page);
        margin-bottom: var(--space-y);
    }

    .post-item .post-item__comments {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        padding: clamp(24px, 3vw, 40px);
        border-radius: var(--radius-lg);
    }

    .post-item .post-item__comments h3 {
        margin: 0 0 1.5rem;
        color: var(--fg-on-page);
    }

    .post-item .post-item__comments-list {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-bottom: var(--space-y);
    }

    .post-item .post-item__comment {
        background: rgba(255, 255, 255, 0.1);
        padding: 1rem;
        border-radius: var(--radius-md);
    }

    .post-item .post-item__comment-author {
        font-weight: 600;
        color: var(--fg-on-page);
        margin-bottom: 0.5rem;
    }

    .post-item .post-item__comment-text {

        margin-bottom: 0.5rem;
    }

    .post-item .post-item__comment-date {
        font-size: 0.875rem;

    }

    .post-item .post-item__reply-form {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .post-item .post-item__reply-form textarea {
        padding: 1rem;
        border-radius: var(--radius-md);
        border: none;
        outline: none;
        min-height: 100px;

    }

    .post-item .post-item__reply-form button {
        padding: 0.875rem 2rem;
        border-radius: var(--radius-md);
        border: none;
        background: var(--bg-page);
        color: var(--bg-primary);
        font-weight: 600;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .post-item .post-item__reply-form button:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

header {
    background: var(--surface-1);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-y) var(--space-x);
    gap: var(--gap);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 40px;
    height: 40px;
    background: var(--btn-ghost-bg);
    border: 1px solid var(--border-on-surface);
    border-radius: var(--radius-md);
    cursor: pointer;
    padding: 8px;
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: all var(--anim-duration) var(--anim-ease);
  }
  .burger[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface-1);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    opacity: 0;
  }
  .nav-menu.open {
    max-height: 400px;
    opacity: 1;
  }
  .nav-menu ul {
    list-style: none;
    margin: 0;
    padding: var(--space-y) var(--space-x);
    display: flex;
    flex-direction: column;
    gap: var(--gap);
  }
  .nav-menu a {
    display: block;
    padding: 0.5rem 0;
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    border-bottom: 1px solid var(--border-on-surface-light);
    transition: color var(--anim-duration) var(--anim-ease);
  }
  .nav-menu a:hover {
    color: var(--link-hover);
  }
  @media (min-width: 768px) {
    .burger {
      display: flex;
    }
    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1);
      box-shadow: var(--shadow-md);
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
      opacity: 0;
    }
    .nav-menu.open {
      max-height: 400px;
      opacity: 1;
    }
    .nav-menu ul {
      flex-direction: column;
      gap: var(--gap);
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 1rem;
    font-family: Arial, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
  }
  .footer-brand .logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #e67e22;
    text-decoration: none;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 1rem;
  }
  .footer-nav a:hover {
    color: #e67e22;
  }
  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-links a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 0.95rem;
  }
  .footer-links a:hover {
    color: #e67e22;
  }
  .footer-contact p {
    margin: 0.3rem 0;
    font-size: 0.95rem;
  }
  .footer-contact a {
    color: #e67e22;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #7f8c8d;
    text-align: center;
    font-size: 0.85rem;
    color: #bdc3c7;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-links {
      align-items: center;
    }
  }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: end;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

    .cookie-cv9__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

    .cookie-cv9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

.article-list--light-v6 {

    padding: 48px 20px;
    background: var(--surface-light);
    color: var(--fg-on-surface-light);
}

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

.article-list__title {
    margin: 0 0 16px;
    font-size: clamp(24px,4vw,30px);
}

.article-list__list {
    display: grid;
    gap: 12px;
}

.article-list__row {
    background: var(--bg-page);
    border-radius: var(--radius-lg);
    padding: 14px 16px;
    border: 1px solid var(--border-on-surface-light);
}

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

.article-list__row p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--neutral-600);
}

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

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

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

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

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

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

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

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

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

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

header {
    background: var(--surface-1);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-y) var(--space-x);
    gap: var(--gap);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 40px;
    height: 40px;
    background: var(--btn-ghost-bg);
    border: 1px solid var(--border-on-surface);
    border-radius: var(--radius-md);
    cursor: pointer;
    padding: 8px;
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: all var(--anim-duration) var(--anim-ease);
  }
  .burger[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface-1);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    opacity: 0;
  }
  .nav-menu.open {
    max-height: 400px;
    opacity: 1;
  }
  .nav-menu ul {
    list-style: none;
    margin: 0;
    padding: var(--space-y) var(--space-x);
    display: flex;
    flex-direction: column;
    gap: var(--gap);
  }
  .nav-menu a {
    display: block;
    padding: 0.5rem 0;
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    border-bottom: 1px solid var(--border-on-surface-light);
    transition: color var(--anim-duration) var(--anim-ease);
  }
  .nav-menu a:hover {
    color: var(--link-hover);
  }
  @media (min-width: 768px) {
    .burger {
      display: flex;
    }
    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1);
      box-shadow: var(--shadow-md);
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
      opacity: 0;
    }
    .nav-menu.open {
      max-height: 400px;
      opacity: 1;
    }
    .nav-menu ul {
      flex-direction: column;
      gap: var(--gap);
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 1rem;
    font-family: Arial, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
  }
  .footer-brand .logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #e67e22;
    text-decoration: none;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 1rem;
  }
  .footer-nav a:hover {
    color: #e67e22;
  }
  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-links a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 0.95rem;
  }
  .footer-links a:hover {
    color: #e67e22;
  }
  .footer-contact p {
    margin: 0.3rem 0;
    font-size: 0.95rem;
  }
  .footer-contact a {
    color: #e67e22;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #7f8c8d;
    text-align: center;
    font-size: 0.85rem;
    color: #bdc3c7;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-links {
      align-items: center;
    }
  }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: end;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

    .cookie-cv9__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

    .cookie-cv9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

.nfform-v12 {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--surface-2);
        color: var(--fg-on-page);
    }

    .nfform-v12__form {
        max-width: 760px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        padding: 16px;
        display: grid;
        gap: 10px;
    }

    .nfform-v12 h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 40px);
        color: var(--neutral-900);
    }

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

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

    .nfform-v12 input:not([type='checkbox']),
    .nfform-v12 textarea {
        width: 100%;
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 9px;
        font: inherit;
    }

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

    .nfform-v12 button {
        justify-self: start;
        border: 0;
        border-radius: var(--radius-sm);
        padding: 10px 14px;
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
        font-weight: 700;
    }

.nfcontacts-v11 {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    .nfcontacts-v11__shell {
        max-width: 860px;
        margin: 0 auto;
        display: grid;
        gap: 12px;
    }

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

    .nfcontacts-v11__head p {
        margin: 8px 0 0;
        opacity: .85;
    }

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

    .nfcontacts-v11 details {
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .08);
        border: 1px solid rgba(255, 255, 255, .2);
        padding: 10px 12px;
    }

    .nfcontacts-v11 summary {
        cursor: pointer;
        font-weight: 700;
    }

    .nfcontacts-v11 details div {
        margin-top: 8px;
        display: grid;
        gap: 6px;
    }

    .nfcontacts-v11 details p {
        margin: 0;
    }

    .nfcontacts-v11 details a {
        color: var(--neutral-0);
        text-decoration: underline;
    }

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

    .touch-bulletin .wrap {
        max-width: 860px;
        margin: 0 auto;
    }

    .touch-bulletin .touch-header {
        margin-bottom: 14px;
    }

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

    .touch-bulletin .touch-header p {
        margin: 10px 0 0;
        color: var(--neutral-600);
    }

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

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

    .touch-bulletin span {
        color: var(--neutral-600);
        font-size: .85rem;
    }

    .touch-bulletin a {
        color: var(--bg-primary);
        text-decoration: none;
    }

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

header {
    background: var(--surface-1);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-y) var(--space-x);
    gap: var(--gap);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 40px;
    height: 40px;
    background: var(--btn-ghost-bg);
    border: 1px solid var(--border-on-surface);
    border-radius: var(--radius-md);
    cursor: pointer;
    padding: 8px;
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: all var(--anim-duration) var(--anim-ease);
  }
  .burger[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface-1);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    opacity: 0;
  }
  .nav-menu.open {
    max-height: 400px;
    opacity: 1;
  }
  .nav-menu ul {
    list-style: none;
    margin: 0;
    padding: var(--space-y) var(--space-x);
    display: flex;
    flex-direction: column;
    gap: var(--gap);
  }
  .nav-menu a {
    display: block;
    padding: 0.5rem 0;
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    border-bottom: 1px solid var(--border-on-surface-light);
    transition: color var(--anim-duration) var(--anim-ease);
  }
  .nav-menu a:hover {
    color: var(--link-hover);
  }
  @media (min-width: 768px) {
    .burger {
      display: flex;
    }
    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1);
      box-shadow: var(--shadow-md);
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
      opacity: 0;
    }
    .nav-menu.open {
      max-height: 400px;
      opacity: 1;
    }
    .nav-menu ul {
      flex-direction: column;
      gap: var(--gap);
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 1rem;
    font-family: Arial, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
  }
  .footer-brand .logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #e67e22;
    text-decoration: none;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 1rem;
  }
  .footer-nav a:hover {
    color: #e67e22;
  }
  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-links a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 0.95rem;
  }
  .footer-links a:hover {
    color: #e67e22;
  }
  .footer-contact p {
    margin: 0.3rem 0;
    font-size: 0.95rem;
  }
  .footer-contact a {
    color: #e67e22;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #7f8c8d;
    text-align: center;
    font-size: 0.85rem;
    color: #bdc3c7;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-links {
      align-items: center;
    }
  }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: end;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

    .cookie-cv9__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

    .cookie-cv9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

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

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

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

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

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

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

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

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

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

header {
    background: var(--surface-1);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-y) var(--space-x);
    gap: var(--gap);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 40px;
    height: 40px;
    background: var(--btn-ghost-bg);
    border: 1px solid var(--border-on-surface);
    border-radius: var(--radius-md);
    cursor: pointer;
    padding: 8px;
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: all var(--anim-duration) var(--anim-ease);
  }
  .burger[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface-1);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    opacity: 0;
  }
  .nav-menu.open {
    max-height: 400px;
    opacity: 1;
  }
  .nav-menu ul {
    list-style: none;
    margin: 0;
    padding: var(--space-y) var(--space-x);
    display: flex;
    flex-direction: column;
    gap: var(--gap);
  }
  .nav-menu a {
    display: block;
    padding: 0.5rem 0;
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    border-bottom: 1px solid var(--border-on-surface-light);
    transition: color var(--anim-duration) var(--anim-ease);
  }
  .nav-menu a:hover {
    color: var(--link-hover);
  }
  @media (min-width: 768px) {
    .burger {
      display: flex;
    }
    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1);
      box-shadow: var(--shadow-md);
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
      opacity: 0;
    }
    .nav-menu.open {
      max-height: 400px;
      opacity: 1;
    }
    .nav-menu ul {
      flex-direction: column;
      gap: var(--gap);
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 1rem;
    font-family: Arial, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
  }
  .footer-brand .logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #e67e22;
    text-decoration: none;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 1rem;
  }
  .footer-nav a:hover {
    color: #e67e22;
  }
  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-links a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 0.95rem;
  }
  .footer-links a:hover {
    color: #e67e22;
  }
  .footer-contact p {
    margin: 0.3rem 0;
    font-size: 0.95rem;
  }
  .footer-contact a {
    color: #e67e22;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #7f8c8d;
    text-align: center;
    font-size: 0.85rem;
    color: #bdc3c7;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-links {
      align-items: center;
    }
  }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: end;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

    .cookie-cv9__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

    .cookie-cv9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

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

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

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

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

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

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

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

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

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

header {
    background: var(--surface-1);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-y) var(--space-x);
    gap: var(--gap);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 40px;
    height: 40px;
    background: var(--btn-ghost-bg);
    border: 1px solid var(--border-on-surface);
    border-radius: var(--radius-md);
    cursor: pointer;
    padding: 8px;
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: all var(--anim-duration) var(--anim-ease);
  }
  .burger[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface-1);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    opacity: 0;
  }
  .nav-menu.open {
    max-height: 400px;
    opacity: 1;
  }
  .nav-menu ul {
    list-style: none;
    margin: 0;
    padding: var(--space-y) var(--space-x);
    display: flex;
    flex-direction: column;
    gap: var(--gap);
  }
  .nav-menu a {
    display: block;
    padding: 0.5rem 0;
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    border-bottom: 1px solid var(--border-on-surface-light);
    transition: color var(--anim-duration) var(--anim-ease);
  }
  .nav-menu a:hover {
    color: var(--link-hover);
  }
  @media (min-width: 768px) {
    .burger {
      display: flex;
    }
    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1);
      box-shadow: var(--shadow-md);
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
      opacity: 0;
    }
    .nav-menu.open {
      max-height: 400px;
      opacity: 1;
    }
    .nav-menu ul {
      flex-direction: column;
      gap: var(--gap);
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 1rem;
    font-family: Arial, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
  }
  .footer-brand .logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #e67e22;
    text-decoration: none;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 1rem;
  }
  .footer-nav a:hover {
    color: #e67e22;
  }
  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-links a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 0.95rem;
  }
  .footer-links a:hover {
    color: #e67e22;
  }
  .footer-contact p {
    margin: 0.3rem 0;
    font-size: 0.95rem;
  }
  .footer-contact a {
    color: #e67e22;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #7f8c8d;
    text-align: center;
    font-size: 0.85rem;
    color: #bdc3c7;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-links {
      align-items: center;
    }
  }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: end;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

    .cookie-cv9__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

    .cookie-cv9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

.nfthank-v11 {
        padding: clamp(56px, 10vw, 114px) 18px;
        background: linear-gradient(160deg, var(--bg-primary), var(--bg-primary-hover));
        color: var(--fg-on-primary);
    }

    .nfthank-v11__box {
        max-width: 740px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(28px, 4vw, 46px);
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, .2);
        background: rgba(255, 255, 255, .08);
    }

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

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

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

header {
    background: var(--surface-1);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-y) var(--space-x);
    gap: var(--gap);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 40px;
    height: 40px;
    background: var(--btn-ghost-bg);
    border: 1px solid var(--border-on-surface);
    border-radius: var(--radius-md);
    cursor: pointer;
    padding: 8px;
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: all var(--anim-duration) var(--anim-ease);
  }
  .burger[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface-1);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    opacity: 0;
  }
  .nav-menu.open {
    max-height: 400px;
    opacity: 1;
  }
  .nav-menu ul {
    list-style: none;
    margin: 0;
    padding: var(--space-y) var(--space-x);
    display: flex;
    flex-direction: column;
    gap: var(--gap);
  }
  .nav-menu a {
    display: block;
    padding: 0.5rem 0;
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    border-bottom: 1px solid var(--border-on-surface-light);
    transition: color var(--anim-duration) var(--anim-ease);
  }
  .nav-menu a:hover {
    color: var(--link-hover);
  }
  @media (min-width: 768px) {
    .burger {
      display: flex;
    }
    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1);
      box-shadow: var(--shadow-md);
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
      opacity: 0;
    }
    .nav-menu.open {
      max-height: 400px;
      opacity: 1;
    }
    .nav-menu ul {
      flex-direction: column;
      gap: var(--gap);
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 1rem;
    font-family: Arial, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
  }
  .footer-brand .logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #e67e22;
    text-decoration: none;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 1rem;
  }
  .footer-nav a:hover {
    color: #e67e22;
  }
  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-links a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 0.95rem;
  }
  .footer-links a:hover {
    color: #e67e22;
  }
  .footer-contact p {
    margin: 0.3rem 0;
    font-size: 0.95rem;
  }
  .footer-contact a {
    color: #e67e22;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #7f8c8d;
    text-align: center;
    font-size: 0.85rem;
    color: #bdc3c7;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-links {
      align-items: center;
    }
  }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: end;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

    .cookie-cv9__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

    .cookie-cv9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

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

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

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

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

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