:root {
  --font-family: "IBM Plex Sans", sans-serif;
  --font-size-base: 16.5px;
  --line-height-base: 1.62;

  --max-w: 900px;
  --space-x: 1.16rem;
  --space-y: 1.5rem;
  --gap: 1.02rem;

  --radius-xl: 0.82rem;
  --radius-lg: 0.56rem;
  --radius-md: 0.44rem;
  --radius-sm: 0.24rem;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 3px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 28px rgba(0,0,0,0.1);

  --overlay: rgba(0,0,0,0.5);
  --anim-duration: 330ms;
  --anim-ease: ease-in-out;
  --random-number: 1;

  --brand: #1A73E8;
  --brand-contrast: #FFFFFF;
  --accent: #FF6B35;
  --accent-contrast: #FFFFFF;

  --neutral-0: #FFFFFF;
  --neutral-100: #F5F7FA;
  --neutral-300: #D1D5DB;
  --neutral-600: #6B7280;
  --neutral-800: #374151;
  --neutral-900: #111827;

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

  --bg-alt: #F0F4FF;
  --fg-on-alt: #1E3A5F;

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

  --surface-light: #F3F4F6;
  --fg-on-surface-light: #374151;
  --border-on-surface-light: #D1D5DB;

  --bg-primary: #1A73E8;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #1557B0;
  --ring: #1A73E8;

  --bg-accent: #FF6B35;
  --fg-on-accent: #FFFFFF;
  --bg-accent-hover: #E55A2B;

  --link: #1A73E8;
  --link-hover: #1557B0;

  --gradient-hero: linear-gradient(135deg, #1A73E8 0%, #FF6B35 100%);
  --gradient-accent: linear-gradient(135deg, #FF6B35 0%, #E55A2B 100%);

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

header {
    position: relative;
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    padding: var(--space-y) var(--space-x);
  }
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-w);
    margin: 0 auto;
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    line-height: 1.2;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 28px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
  }
  .burger span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
  }
  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration) var(--anim-ease);
    z-index: 9;
  }
  .nav-menu.open {
    max-height: 300px;
  }
  .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: var(--space-y) var(--space-x);
    color: var(--neutral-800);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-menu a:hover,
  .nav-menu a:focus {
    background: var(--bg-primary-hover);
    color: var(--fg-on-primary);
  }
  @media (min-width: 768px) {
    .burger {
      display: flex;
    }
    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease);
    }
    .nav-menu.open {
      max-height: 300px;
    }
    .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 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
  }
  .footer-col {
    flex: 1 1 250px;
    min-width: 200px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #e74c3c;
  }
  .footer-offer {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #bdc3c7;
  }
  .footer-nav h4,
  .footer-contact h4 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    border-bottom: 2px solid #e74c3c;
    display: inline-block;
    padding-bottom: 0.25rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
  }
  .footer-nav ul li {
    margin-bottom: 0.4rem;
  }
  .footer-nav ul li a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-nav ul li a:hover {
    color: #e74c3c;
  }
  .contact-details p {
    margin: 0.3rem 0;
    font-size: 0.95rem;
  }
  .contact-details a {
    color: #ecf0f1;
    text-decoration: none;
  }
  .contact-details a:hover {
    color: #e74c3c;
  }
  .footer-social {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
  }
  .footer-social a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-social a:hover {
    color: #e74c3c;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #95a5a6;
    margin-top: 1rem;
    line-height: 1.4;
  }
  .footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    border-top: 1px solid #7f8c8d;
    font-size: 0.85rem;
    color: #95a5a6;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-col {
      flex: 1 1 100%;
    }
    .footer-nav h4,
    .footer-contact h4 {
      display: block;
    }
    .footer-social {
      justify-content: center;
    }
  }

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

    .nfcookie-v12__shell {
        max-width: 720px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
    }

    .nfcookie-v12__meta {display: flex; align-items: center; gap: 8px;}

    .nfcookie-v12__shell p {margin: 8px 0 0; color: var(--fg-on-surface-light);}

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

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

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

.wp-lang-switcher-v10 {
        position: fixed;
        left: 2rem;

        bottom: clamp(14px, 2vw, 24px);
        z-index: 99999;
    }

    .wp-lang-switcher-v10__btn {
        border: 1px solid rgba(255, 255, 255, 0.28);
        border-radius: 999px;
        background: linear-gradient(145deg, #111827, #1f2937);
        color: #f9fafb;
        box-shadow: var(--shadow-lg);
        padding: 9px 14px;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        cursor: pointer;
    }

    .wp-lang-switcher-v10__emoji {
        font-size: 16px;
        line-height: 1;
    }

    .wp-lang-switcher-v10__value {
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.08em;
    }

    .wp-lang-switcher-v10__dropdown {
        position: absolute;
        bottom: 52px;
        left: 50%;
        transform: translate(-50%, 10px);
        opacity: 0;
        pointer-events: none;
        display: flex;
        gap: 6px;
        transition: opacity var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
    }

    .wp-lang-switcher-v10__dropdown.open {
        opacity: 1;
        pointer-events: auto;
        transform: translate(-50%, 0);
    }

    .wp-lang-switcher-v10__dropdown button,
    .wp-lang-switcher-v10__dropdown a {
        width: 42px;
        height: 34px;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(17, 24, 39, 0.92);
        color: #e5e7eb;
        text-decoration: none;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.04em;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .wp-lang-switcher-v10__dropdown button:hover,
    .wp-lang-switcher-v10__dropdown a:hover {
        background: #38bdf8;
        border-color: transparent;
        color: #06263a;
    }

.hero-arc-v2 {
        padding: calc(var(--space-y) * 2.6) var(--space-x) 0;
        background: var(--bg-page);
        color: var(--fg-on-page);
    }

    .hero-arc-v2 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: var(--gap);
    }

    .hero-arc-v2 h1 {
        margin: 0;
        font-size: clamp(2rem, 4.2vw, 3.4rem);
        line-height: 1.08;
        max-width: 18ch;
    }

    .hero-arc-v2 .subtitle {
        margin: 0;
        max-width: 58ch;
        color: var(--fg-on-surface-light);
    }

    .hero-arc-v2 .split {
        display: grid;
        grid-template-columns:1.1fr .9fr;
        gap: calc(var(--gap) * 1.4);
        align-items: start;
    }

    .hero-arc-v2 .desc {
        margin: 0;
        max-width: 60ch;
    }

    .hero-arc-v2 .actions {
        display: grid;
        gap: .7rem;
        justify-items: start;
    }

    .hero-arc-v2 .actions a {
        display: inline-flex;
        padding: .66rem 1.1rem;
        border-radius: var(--radius-lg);
        text-decoration: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 700;
    }

    .hero-arc-v2 .actions a:nth-child(even) {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

    .hero-arc-v2 .media {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        padding: var(--gap);
        background: var(--surface-2);
        box-shadow: var(--shadow-sm);
    }

    .hero-arc-v2 .media img {
        width: 100%;
        display: block;
        border-radius: var(--radius-lg);
        aspect-ratio: 16/9;
        object-fit: cover;
    }

    .hero-arc-v2 .rail {
        margin-top: calc(var(--space-y) * 1.4);
        background: var(--surface-2);
        border-top: 1px solid var(--border-on-surface);
        display: grid;
        grid-template-columns:repeat(4, minmax(0, 1fr));
        gap: 1px;
    }

    .hero-arc-v2 .rail div {
        padding: 1rem var(--space-x);
        background: var(--surface-1);
        display: grid;
        gap: .3rem;
    }

    .hero-arc-v2 em {
        font-style: normal;
        color: var(--fg-on-surface-light);
        font-size: .88rem;
    }

    .hero-arc-v2 strong {
        font-size: 1.05rem;
    }

    @media (max-width: 900px) {
        .hero-arc-v2 .split {
            grid-template-columns:1fr;
        }

        .hero-arc-v2 .rail {
            grid-template-columns:repeat(2, minmax(0, 1fr));
        }
    }

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

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

    .next-pins-l4__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .next-pins-l4__head {
        margin-bottom: 1.1rem;
    }

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

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

    .next-pins-l4__head span {
        display: block;
        margin-top: .8rem;
        color: var(--neutral-600);
        max-width: 38rem;
    }

    .next-pins-l4__pins {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
        gap: var(--gap);
    }

    .next-pins-l4__pins article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
    }

    .next-pins-l4__pins div {
        display: inline-flex;
        width: 2.4rem;
        height: 2.4rem;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: var(--surface-2);
    }

    .next-pins-l4__pins h3 {
        margin: .75rem 0 .35rem;
    }

    .next-pins-l4__pins a {
        color: var(--link);
        text-decoration: none;
    }

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

.nfsocial-v11 {
        padding: clamp(48px, 8vw, 80px) 0;
        background: linear-gradient(145deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
    }

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

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

    .nfsocial-v11__media img {
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        width: 100%;
        display: block;
    }

    .nfsocial-v11__text h2 {
        margin-bottom: var(--space-y);
    }

    .nfsocial-v11__text p {
        margin-bottom: var(--space-y);
        opacity: .92;
    }

    .nfsocial-v11__text a {
        display: inline-block;
        padding: 12px 24px;
        border-radius: var(--radius-md);
        text-decoration: none;
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

header {
    position: relative;
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    padding: var(--space-y) var(--space-x);
  }
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-w);
    margin: 0 auto;
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    line-height: 1.2;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 28px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
  }
  .burger span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
  }
  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration) var(--anim-ease);
    z-index: 9;
  }
  .nav-menu.open {
    max-height: 300px;
  }
  .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: var(--space-y) var(--space-x);
    color: var(--neutral-800);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-menu a:hover,
  .nav-menu a:focus {
    background: var(--bg-primary-hover);
    color: var(--fg-on-primary);
  }
  @media (min-width: 768px) {
    .burger {
      display: flex;
    }
    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease);
    }
    .nav-menu.open {
      max-height: 300px;
    }
    .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 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
  }
  .footer-col {
    flex: 1 1 250px;
    min-width: 200px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #e74c3c;
  }
  .footer-offer {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #bdc3c7;
  }
  .footer-nav h4,
  .footer-contact h4 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    border-bottom: 2px solid #e74c3c;
    display: inline-block;
    padding-bottom: 0.25rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
  }
  .footer-nav ul li {
    margin-bottom: 0.4rem;
  }
  .footer-nav ul li a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-nav ul li a:hover {
    color: #e74c3c;
  }
  .contact-details p {
    margin: 0.3rem 0;
    font-size: 0.95rem;
  }
  .contact-details a {
    color: #ecf0f1;
    text-decoration: none;
  }
  .contact-details a:hover {
    color: #e74c3c;
  }
  .footer-social {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
  }
  .footer-social a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-social a:hover {
    color: #e74c3c;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #95a5a6;
    margin-top: 1rem;
    line-height: 1.4;
  }
  .footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    border-top: 1px solid #7f8c8d;
    font-size: 0.85rem;
    color: #95a5a6;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-col {
      flex: 1 1 100%;
    }
    .footer-nav h4,
    .footer-contact h4 {
      display: block;
    }
    .footer-social {
      justify-content: center;
    }
  }

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

    .nfcookie-v12__shell {
        max-width: 720px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
    }

    .nfcookie-v12__meta {display: flex; align-items: center; gap: 8px;}

    .nfcookie-v12__shell p {margin: 8px 0 0; color: var(--fg-on-surface-light);}

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

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

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

.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 {
    position: relative;
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    padding: var(--space-y) var(--space-x);
  }
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-w);
    margin: 0 auto;
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    line-height: 1.2;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 28px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
  }
  .burger span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
  }
  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration) var(--anim-ease);
    z-index: 9;
  }
  .nav-menu.open {
    max-height: 300px;
  }
  .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: var(--space-y) var(--space-x);
    color: var(--neutral-800);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-menu a:hover,
  .nav-menu a:focus {
    background: var(--bg-primary-hover);
    color: var(--fg-on-primary);
  }
  @media (min-width: 768px) {
    .burger {
      display: flex;
    }
    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease);
    }
    .nav-menu.open {
      max-height: 300px;
    }
    .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 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
  }
  .footer-col {
    flex: 1 1 250px;
    min-width: 200px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #e74c3c;
  }
  .footer-offer {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #bdc3c7;
  }
  .footer-nav h4,
  .footer-contact h4 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    border-bottom: 2px solid #e74c3c;
    display: inline-block;
    padding-bottom: 0.25rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
  }
  .footer-nav ul li {
    margin-bottom: 0.4rem;
  }
  .footer-nav ul li a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-nav ul li a:hover {
    color: #e74c3c;
  }
  .contact-details p {
    margin: 0.3rem 0;
    font-size: 0.95rem;
  }
  .contact-details a {
    color: #ecf0f1;
    text-decoration: none;
  }
  .contact-details a:hover {
    color: #e74c3c;
  }
  .footer-social {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
  }
  .footer-social a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-social a:hover {
    color: #e74c3c;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #95a5a6;
    margin-top: 1rem;
    line-height: 1.4;
  }
  .footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    border-top: 1px solid #7f8c8d;
    font-size: 0.85rem;
    color: #95a5a6;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-col {
      flex: 1 1 100%;
    }
    .footer-nav h4,
    .footer-contact h4 {
      display: block;
    }
    .footer-social {
      justify-content: center;
    }
  }

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

    .nfcookie-v12__shell {
        max-width: 720px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
    }

    .nfcookie-v12__meta {display: flex; align-items: center; gap: 8px;}

    .nfcookie-v12__shell p {margin: 8px 0 0; color: var(--fg-on-surface-light);}

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

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

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

.post-item--light-v6 {

    padding: 48px 20px;
    background: var(--bg-page);
    color: var(--fg-on-page);
}

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

.post-item__inner h1 {
    margin: 0 0 4px;
    font-size: clamp(24px,4vw,32px);
}

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

.post-item__lead {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

header {
    position: relative;
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    padding: var(--space-y) var(--space-x);
  }
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-w);
    margin: 0 auto;
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    line-height: 1.2;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 28px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
  }
  .burger span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
  }
  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration) var(--anim-ease);
    z-index: 9;
  }
  .nav-menu.open {
    max-height: 300px;
  }
  .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: var(--space-y) var(--space-x);
    color: var(--neutral-800);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-menu a:hover,
  .nav-menu a:focus {
    background: var(--bg-primary-hover);
    color: var(--fg-on-primary);
  }
  @media (min-width: 768px) {
    .burger {
      display: flex;
    }
    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease);
    }
    .nav-menu.open {
      max-height: 300px;
    }
    .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 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
  }
  .footer-col {
    flex: 1 1 250px;
    min-width: 200px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #e74c3c;
  }
  .footer-offer {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #bdc3c7;
  }
  .footer-nav h4,
  .footer-contact h4 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    border-bottom: 2px solid #e74c3c;
    display: inline-block;
    padding-bottom: 0.25rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
  }
  .footer-nav ul li {
    margin-bottom: 0.4rem;
  }
  .footer-nav ul li a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-nav ul li a:hover {
    color: #e74c3c;
  }
  .contact-details p {
    margin: 0.3rem 0;
    font-size: 0.95rem;
  }
  .contact-details a {
    color: #ecf0f1;
    text-decoration: none;
  }
  .contact-details a:hover {
    color: #e74c3c;
  }
  .footer-social {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
  }
  .footer-social a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-social a:hover {
    color: #e74c3c;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #95a5a6;
    margin-top: 1rem;
    line-height: 1.4;
  }
  .footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    border-top: 1px solid #7f8c8d;
    font-size: 0.85rem;
    color: #95a5a6;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-col {
      flex: 1 1 100%;
    }
    .footer-nav h4,
    .footer-contact h4 {
      display: block;
    }
    .footer-social {
      justify-content: center;
    }
  }

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

    .nfcookie-v12__shell {
        max-width: 720px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
    }

    .nfcookie-v12__meta {display: flex; align-items: center; gap: 8px;}

    .nfcookie-v12__shell p {margin: 8px 0 0; color: var(--fg-on-surface-light);}

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

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

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

.post-item--light-v6 {

    padding: 48px 20px;
    background: var(--bg-page);
    color: var(--fg-on-page);
}

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

.post-item__inner h1 {
    margin: 0 0 4px;
    font-size: clamp(24px,4vw,32px);
}

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

.post-item__lead {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

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

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

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

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

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

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

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

    .identity-nv7__grid h3 {
        margin: 0;
    }

    .identity-nv7__grid p {
        margin: 7px 0;
        opacity: .94;
    }

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

header {
    position: relative;
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    padding: var(--space-y) var(--space-x);
  }
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-w);
    margin: 0 auto;
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    line-height: 1.2;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 28px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
  }
  .burger span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
  }
  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration) var(--anim-ease);
    z-index: 9;
  }
  .nav-menu.open {
    max-height: 300px;
  }
  .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: var(--space-y) var(--space-x);
    color: var(--neutral-800);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-menu a:hover,
  .nav-menu a:focus {
    background: var(--bg-primary-hover);
    color: var(--fg-on-primary);
  }
  @media (min-width: 768px) {
    .burger {
      display: flex;
    }
    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease);
    }
    .nav-menu.open {
      max-height: 300px;
    }
    .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 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
  }
  .footer-col {
    flex: 1 1 250px;
    min-width: 200px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #e74c3c;
  }
  .footer-offer {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #bdc3c7;
  }
  .footer-nav h4,
  .footer-contact h4 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    border-bottom: 2px solid #e74c3c;
    display: inline-block;
    padding-bottom: 0.25rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
  }
  .footer-nav ul li {
    margin-bottom: 0.4rem;
  }
  .footer-nav ul li a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-nav ul li a:hover {
    color: #e74c3c;
  }
  .contact-details p {
    margin: 0.3rem 0;
    font-size: 0.95rem;
  }
  .contact-details a {
    color: #ecf0f1;
    text-decoration: none;
  }
  .contact-details a:hover {
    color: #e74c3c;
  }
  .footer-social {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
  }
  .footer-social a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-social a:hover {
    color: #e74c3c;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #95a5a6;
    margin-top: 1rem;
    line-height: 1.4;
  }
  .footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    border-top: 1px solid #7f8c8d;
    font-size: 0.85rem;
    color: #95a5a6;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-col {
      flex: 1 1 100%;
    }
    .footer-nav h4,
    .footer-contact h4 {
      display: block;
    }
    .footer-social {
      justify-content: center;
    }
  }

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

    .nfcookie-v12__shell {
        max-width: 720px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
    }

    .nfcookie-v12__meta {display: flex; align-items: center; gap: 8px;}

    .nfcookie-v12__shell p {margin: 8px 0 0; color: var(--fg-on-surface-light);}

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

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

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

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

.plans-lv4 {
        padding: clamp(50px, 7vw, 90px) clamp(16px, 4vw, 36px);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    .plans-lv4__wrap {
        max-width: 920px;
        margin: 0 auto;
    }

    .plans-lv4__head {
        text-align: center;
        margin-bottom: 14px;
    }

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

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

    .plans-lv4__stack {
        display: grid;
        gap: 10px;
    }

    .plans-lv4__stack article {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--surface-light);
        padding: 12px;
    }

    .plans-lv4__line {
        display: flex;
        justify-content: space-between;
        align-items: baseline;
        gap: 8px;
    }

    .plans-lv4__line h3 {
        margin: 0;
    }

    .plans-lv4__line p {
        margin: 0;
        color: var(--brand);
        font-weight: 700;
    }

    .plans-lv4__chips {
        margin-top: 8px;
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
    }

    .plans-lv4__chips span {
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        padding: 5px 9px;
        font-size: .88rem;
    }

    .plans-lv4__stack button {
        margin-top: 10px;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 8px 11px;
    }

header {
    position: relative;
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    padding: var(--space-y) var(--space-x);
  }
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-w);
    margin: 0 auto;
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    line-height: 1.2;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 28px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
  }
  .burger span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
  }
  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration) var(--anim-ease);
    z-index: 9;
  }
  .nav-menu.open {
    max-height: 300px;
  }
  .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: var(--space-y) var(--space-x);
    color: var(--neutral-800);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-menu a:hover,
  .nav-menu a:focus {
    background: var(--bg-primary-hover);
    color: var(--fg-on-primary);
  }
  @media (min-width: 768px) {
    .burger {
      display: flex;
    }
    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease);
    }
    .nav-menu.open {
      max-height: 300px;
    }
    .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 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
  }
  .footer-col {
    flex: 1 1 250px;
    min-width: 200px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #e74c3c;
  }
  .footer-offer {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #bdc3c7;
  }
  .footer-nav h4,
  .footer-contact h4 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    border-bottom: 2px solid #e74c3c;
    display: inline-block;
    padding-bottom: 0.25rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
  }
  .footer-nav ul li {
    margin-bottom: 0.4rem;
  }
  .footer-nav ul li a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-nav ul li a:hover {
    color: #e74c3c;
  }
  .contact-details p {
    margin: 0.3rem 0;
    font-size: 0.95rem;
  }
  .contact-details a {
    color: #ecf0f1;
    text-decoration: none;
  }
  .contact-details a:hover {
    color: #e74c3c;
  }
  .footer-social {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
  }
  .footer-social a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-social a:hover {
    color: #e74c3c;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #95a5a6;
    margin-top: 1rem;
    line-height: 1.4;
  }
  .footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    border-top: 1px solid #7f8c8d;
    font-size: 0.85rem;
    color: #95a5a6;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-col {
      flex: 1 1 100%;
    }
    .footer-nav h4,
    .footer-contact h4 {
      display: block;
    }
    .footer-social {
      justify-content: center;
    }
  }

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

    .nfcookie-v12__shell {
        max-width: 720px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
    }

    .nfcookie-v12__meta {display: flex; align-items: center; gap: 8px;}

    .nfcookie-v12__shell p {margin: 8px 0 0; color: var(--fg-on-surface-light);}

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

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

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

.article-list {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .article-list .article-list__date {
        color: var(--neutral-600);
        font-size: 0.875rem;
    }

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

    .article-list h3 a {
        text-decoration: none;
    }

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

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

    .article-list .article-list__read-more {
        color: var(--bg-primary);
        text-decoration: none;
        font-weight: 600;
    }

    .article-list .article-list__read-more:hover {
        text-decoration: underline;
    }

.faq-fresh-v6 {
        padding: calc(var(--space-y) * 2.8) var(--space-x);
        background: var(--surface-2);
        color: var(--fg-on-surface);
    }

    .faq-fresh-v6 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: 1rem;
    }

    .faq-fresh-v6 h2 {
        margin: 0;
        font-size: clamp(1.8rem, 3.3vw, 2.5rem);
    }

    .faq-fresh-v6 .bands {
        display: grid;
        grid-template-columns:repeat(3, minmax(0, 1fr));
        gap: var(--gap);
    }

    .faq-fresh-v6 article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        box-shadow: var(--shadow-sm);
    }

    .faq-fresh-v6 h3 {
        margin: 0 0 .45rem;
        font-size: 1rem;
    }

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

    @media (max-width: 980px) {
        .faq-fresh-v6 .bands {
            grid-template-columns:repeat(2, minmax(0, 1fr));
        }
    }

    @media (max-width: 680px) {
        .faq-fresh-v6 .bands {
            grid-template-columns:1fr;
        }
    }

header {
    position: relative;
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    padding: var(--space-y) var(--space-x);
  }
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-w);
    margin: 0 auto;
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    line-height: 1.2;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 28px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
  }
  .burger span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
  }
  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration) var(--anim-ease);
    z-index: 9;
  }
  .nav-menu.open {
    max-height: 300px;
  }
  .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: var(--space-y) var(--space-x);
    color: var(--neutral-800);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-menu a:hover,
  .nav-menu a:focus {
    background: var(--bg-primary-hover);
    color: var(--fg-on-primary);
  }
  @media (min-width: 768px) {
    .burger {
      display: flex;
    }
    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease);
    }
    .nav-menu.open {
      max-height: 300px;
    }
    .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 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
  }
  .footer-col {
    flex: 1 1 250px;
    min-width: 200px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #e74c3c;
  }
  .footer-offer {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #bdc3c7;
  }
  .footer-nav h4,
  .footer-contact h4 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    border-bottom: 2px solid #e74c3c;
    display: inline-block;
    padding-bottom: 0.25rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
  }
  .footer-nav ul li {
    margin-bottom: 0.4rem;
  }
  .footer-nav ul li a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-nav ul li a:hover {
    color: #e74c3c;
  }
  .contact-details p {
    margin: 0.3rem 0;
    font-size: 0.95rem;
  }
  .contact-details a {
    color: #ecf0f1;
    text-decoration: none;
  }
  .contact-details a:hover {
    color: #e74c3c;
  }
  .footer-social {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
  }
  .footer-social a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-social a:hover {
    color: #e74c3c;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #95a5a6;
    margin-top: 1rem;
    line-height: 1.4;
  }
  .footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    border-top: 1px solid #7f8c8d;
    font-size: 0.85rem;
    color: #95a5a6;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-col {
      flex: 1 1 100%;
    }
    .footer-nav h4,
    .footer-contact h4 {
      display: block;
    }
    .footer-social {
      justify-content: center;
    }
  }

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

    .nfcookie-v12__shell {
        max-width: 720px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
    }

    .nfcookie-v12__meta {display: flex; align-items: center; gap: 8px;}

    .nfcookie-v12__shell p {margin: 8px 0 0; color: var(--fg-on-surface-light);}

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

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

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

.nftouch-v7 {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 3vw, 36px);
        background: var(--gradient-accent);
        color: var(--accent-contrast);
    }

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

    .nftouch-v7__head {
        margin-bottom: 14px;
        text-align: center;
    }

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

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

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

    .nftouch-v7__grid article {
        border: 1px solid rgba(255, 255, 255, .32);
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .12);
        padding: 12px;
    }

    .nftouch-v7__grid h3 {
        margin: 0 0 7px;
    }

    .nftouch-v7__grid p {
        margin: 0;
    }

    .nftouch-v7__grid a {
        display: inline-block;
        margin-top: 8px;
        color: var(--accent-contrast);
        text-decoration: underline;
    }

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

.form-fresh-v6 {
        padding: calc(var(--space-y) * 2.9) var(--space-x);
        background: var(--surface-2);
        color: var(--fg-on-surface);
    }

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

    .form-fresh-v6 h2 {
        margin: 0;
        font-size: clamp(1.8rem, 3.2vw, 2.4rem);
    }

    .form-fresh-v6 form {
        display: grid;
        gap: .85rem;
    }

    .form-fresh-v6 .rows {
        display: grid;
        gap: .6rem;
    }

    .form-fresh-v6 label {
        display: grid;
        grid-template-columns:180px 1fr;
        gap: .8rem;
        align-items: center;
        padding: .6rem .8rem;
        border-radius: var(--radius-sm);
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
    }

    .form-fresh-v6 b {
        font-size: .9rem;
    }

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

    .form-fresh-v6 button {
        justify-self: start;
        padding: .68rem 1rem;
        border: 0;
        border-radius: var(--radius-sm);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 700;
        cursor: pointer;
    }

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

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

    .contacts-fresh-v4 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
    }

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

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

    .contacts-fresh-v4 article {
        background: var(--chip-bg);
        border: 1px solid var(--btn-ghost-bg-hover);
        padding: 1rem;
        border-radius: var(--radius-lg);
    }

    .contacts-fresh-v4 .tag {
        margin: 0;
        font-size: .86rem;
        opacity: .9;
    }

    .contacts-fresh-v4 .value {
        margin: .45rem 0 .8rem;
        font-size: 1.1rem;
        font-weight: 700;
    }

    .contacts-fresh-v4 a {
        color: var(--brand-contrast);
        text-decoration: underline;
    }

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

header {
    position: relative;
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    padding: var(--space-y) var(--space-x);
  }
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-w);
    margin: 0 auto;
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    line-height: 1.2;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 28px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
  }
  .burger span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
  }
  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration) var(--anim-ease);
    z-index: 9;
  }
  .nav-menu.open {
    max-height: 300px;
  }
  .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: var(--space-y) var(--space-x);
    color: var(--neutral-800);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-menu a:hover,
  .nav-menu a:focus {
    background: var(--bg-primary-hover);
    color: var(--fg-on-primary);
  }
  @media (min-width: 768px) {
    .burger {
      display: flex;
    }
    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease);
    }
    .nav-menu.open {
      max-height: 300px;
    }
    .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 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
  }
  .footer-col {
    flex: 1 1 250px;
    min-width: 200px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #e74c3c;
  }
  .footer-offer {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #bdc3c7;
  }
  .footer-nav h4,
  .footer-contact h4 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    border-bottom: 2px solid #e74c3c;
    display: inline-block;
    padding-bottom: 0.25rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
  }
  .footer-nav ul li {
    margin-bottom: 0.4rem;
  }
  .footer-nav ul li a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-nav ul li a:hover {
    color: #e74c3c;
  }
  .contact-details p {
    margin: 0.3rem 0;
    font-size: 0.95rem;
  }
  .contact-details a {
    color: #ecf0f1;
    text-decoration: none;
  }
  .contact-details a:hover {
    color: #e74c3c;
  }
  .footer-social {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
  }
  .footer-social a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-social a:hover {
    color: #e74c3c;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #95a5a6;
    margin-top: 1rem;
    line-height: 1.4;
  }
  .footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    border-top: 1px solid #7f8c8d;
    font-size: 0.85rem;
    color: #95a5a6;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-col {
      flex: 1 1 100%;
    }
    .footer-nav h4,
    .footer-contact h4 {
      display: block;
    }
    .footer-social {
      justify-content: center;
    }
  }

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

    .nfcookie-v12__shell {
        max-width: 720px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
    }

    .nfcookie-v12__meta {display: flex; align-items: center; gap: 8px;}

    .nfcookie-v12__shell p {margin: 8px 0 0; color: var(--fg-on-surface-light);}

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

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

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

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

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

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

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

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

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

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

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

header {
    position: relative;
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    padding: var(--space-y) var(--space-x);
  }
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-w);
    margin: 0 auto;
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    line-height: 1.2;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 28px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
  }
  .burger span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
  }
  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration) var(--anim-ease);
    z-index: 9;
  }
  .nav-menu.open {
    max-height: 300px;
  }
  .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: var(--space-y) var(--space-x);
    color: var(--neutral-800);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-menu a:hover,
  .nav-menu a:focus {
    background: var(--bg-primary-hover);
    color: var(--fg-on-primary);
  }
  @media (min-width: 768px) {
    .burger {
      display: flex;
    }
    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease);
    }
    .nav-menu.open {
      max-height: 300px;
    }
    .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 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
  }
  .footer-col {
    flex: 1 1 250px;
    min-width: 200px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #e74c3c;
  }
  .footer-offer {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #bdc3c7;
  }
  .footer-nav h4,
  .footer-contact h4 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    border-bottom: 2px solid #e74c3c;
    display: inline-block;
    padding-bottom: 0.25rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
  }
  .footer-nav ul li {
    margin-bottom: 0.4rem;
  }
  .footer-nav ul li a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-nav ul li a:hover {
    color: #e74c3c;
  }
  .contact-details p {
    margin: 0.3rem 0;
    font-size: 0.95rem;
  }
  .contact-details a {
    color: #ecf0f1;
    text-decoration: none;
  }
  .contact-details a:hover {
    color: #e74c3c;
  }
  .footer-social {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
  }
  .footer-social a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-social a:hover {
    color: #e74c3c;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #95a5a6;
    margin-top: 1rem;
    line-height: 1.4;
  }
  .footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    border-top: 1px solid #7f8c8d;
    font-size: 0.85rem;
    color: #95a5a6;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-col {
      flex: 1 1 100%;
    }
    .footer-nav h4,
    .footer-contact h4 {
      display: block;
    }
    .footer-social {
      justify-content: center;
    }
  }

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

    .nfcookie-v12__shell {
        max-width: 720px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
    }

    .nfcookie-v12__meta {display: flex; align-items: center; gap: 8px;}

    .nfcookie-v12__shell p {margin: 8px 0 0; color: var(--fg-on-surface-light);}

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

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

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

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

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

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

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

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

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

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

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

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

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

header {
    position: relative;
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    padding: var(--space-y) var(--space-x);
  }
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-w);
    margin: 0 auto;
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    line-height: 1.2;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 28px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
  }
  .burger span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
  }
  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration) var(--anim-ease);
    z-index: 9;
  }
  .nav-menu.open {
    max-height: 300px;
  }
  .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: var(--space-y) var(--space-x);
    color: var(--neutral-800);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-menu a:hover,
  .nav-menu a:focus {
    background: var(--bg-primary-hover);
    color: var(--fg-on-primary);
  }
  @media (min-width: 768px) {
    .burger {
      display: flex;
    }
    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease);
    }
    .nav-menu.open {
      max-height: 300px;
    }
    .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 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
  }
  .footer-col {
    flex: 1 1 250px;
    min-width: 200px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #e74c3c;
  }
  .footer-offer {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #bdc3c7;
  }
  .footer-nav h4,
  .footer-contact h4 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    border-bottom: 2px solid #e74c3c;
    display: inline-block;
    padding-bottom: 0.25rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
  }
  .footer-nav ul li {
    margin-bottom: 0.4rem;
  }
  .footer-nav ul li a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-nav ul li a:hover {
    color: #e74c3c;
  }
  .contact-details p {
    margin: 0.3rem 0;
    font-size: 0.95rem;
  }
  .contact-details a {
    color: #ecf0f1;
    text-decoration: none;
  }
  .contact-details a:hover {
    color: #e74c3c;
  }
  .footer-social {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
  }
  .footer-social a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-social a:hover {
    color: #e74c3c;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #95a5a6;
    margin-top: 1rem;
    line-height: 1.4;
  }
  .footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    border-top: 1px solid #7f8c8d;
    font-size: 0.85rem;
    color: #95a5a6;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-col {
      flex: 1 1 100%;
    }
    .footer-nav h4,
    .footer-contact h4 {
      display: block;
    }
    .footer-social {
      justify-content: center;
    }
  }

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

    .nfcookie-v12__shell {
        max-width: 720px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
    }

    .nfcookie-v12__meta {display: flex; align-items: center; gap: 8px;}

    .nfcookie-v12__shell p {margin: 8px 0 0; color: var(--fg-on-surface-light);}

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

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

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

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

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

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

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

    .nfthank-v12 a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 16px;
        border-radius: var(--radius-md);
        text-decoration: none;
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

header {
    position: relative;
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    padding: var(--space-y) var(--space-x);
  }
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-w);
    margin: 0 auto;
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    line-height: 1.2;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 28px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
  }
  .burger span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
  }
  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration) var(--anim-ease);
    z-index: 9;
  }
  .nav-menu.open {
    max-height: 300px;
  }
  .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: var(--space-y) var(--space-x);
    color: var(--neutral-800);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-menu a:hover,
  .nav-menu a:focus {
    background: var(--bg-primary-hover);
    color: var(--fg-on-primary);
  }
  @media (min-width: 768px) {
    .burger {
      display: flex;
    }
    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease);
    }
    .nav-menu.open {
      max-height: 300px;
    }
    .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 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
  }
  .footer-col {
    flex: 1 1 250px;
    min-width: 200px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #e74c3c;
  }
  .footer-offer {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #bdc3c7;
  }
  .footer-nav h4,
  .footer-contact h4 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    border-bottom: 2px solid #e74c3c;
    display: inline-block;
    padding-bottom: 0.25rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
  }
  .footer-nav ul li {
    margin-bottom: 0.4rem;
  }
  .footer-nav ul li a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-nav ul li a:hover {
    color: #e74c3c;
  }
  .contact-details p {
    margin: 0.3rem 0;
    font-size: 0.95rem;
  }
  .contact-details a {
    color: #ecf0f1;
    text-decoration: none;
  }
  .contact-details a:hover {
    color: #e74c3c;
  }
  .footer-social {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
  }
  .footer-social a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-social a:hover {
    color: #e74c3c;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #95a5a6;
    margin-top: 1rem;
    line-height: 1.4;
  }
  .footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    border-top: 1px solid #7f8c8d;
    font-size: 0.85rem;
    color: #95a5a6;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-col {
      flex: 1 1 100%;
    }
    .footer-nav h4,
    .footer-contact h4 {
      display: block;
    }
    .footer-social {
      justify-content: center;
    }
  }

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

    .nfcookie-v12__shell {
        max-width: 720px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
    }

    .nfcookie-v12__meta {display: flex; align-items: center; gap: 8px;}

    .nfcookie-v12__shell p {margin: 8px 0 0; color: var(--fg-on-surface-light);}

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

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

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

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

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

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

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

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