:root {
  --font-family: "Alegreya", sans-serif;
  --font-size-base: 15.6px;
  --line-height-base: 1.9;

  --max-w: 880px;
  --space-x: 1.3rem;
  --space-y: 1.5rem;
  --gap: 0.7rem;

  --radius-xl: 0.72rem;
  --radius-lg: 0.52rem;
  --radius-md: 0.41rem;
  --radius-sm: 0.23rem;

  --shadow-sm: 0 0px 1px rgba(0,0,0,0.05);
  --shadow-md: 0 5px 12px rgba(0,0,0,0.06);
  --shadow-lg: 0 14px 20px rgba(0,0,0,0.08);

  --overlay: rgba(0,0,0,0.5);
  --anim-duration: 470ms;
  --anim-ease: cubic-bezier(0.16,1,0.3,1);
  --random-number: 1;

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

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

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

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

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

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

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

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

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

  --gradient-hero: linear-gradient(135deg, #1E3A5F 0%, #2563EB 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: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--surface-1);
    box-shadow: var(--shadow-sm);
    padding: var(--space-y) var(--space-x);
  }

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

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

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

  .header__burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
  }

  .header__burger-line {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
  }

  .header__burger.active .header__burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

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

  .header__burger.active .header__burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .header__nav {
    display: flex;
    align-items: center;
  }

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

  .header__nav-item {
    margin: 0;
  }

  .header__nav-link {
    text-decoration: none;
    font-size: var(--font-size-base);
    font-weight: 500;
    color: var(--fg-on-surface);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }

  .header__nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--brand);
  }

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

    .header__nav {
      position: fixed;
      top: 0;
      right: -100%;
      width: 280px;
      height: 100vh;
      background-color: var(--surface-1);
      box-shadow: var(--shadow-lg);
      padding: 5rem 2rem 2rem;
      transition: right var(--anim-duration) var(--anim-ease);
      flex-direction: column;
      align-items: flex-start;
    }

    .header__nav.open {
      right: 0;
    }

    .header__nav-list {
      flex-direction: column;
      gap: 0.5rem;
      width: 100%;
    }

    .header__nav-link {
      display: block;
      width: 100%;
      padding: 0.75rem 1rem;
      font-size: calc(var(--font-size-base) * 1.1);
    }
  }

.site-footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
  }
  .footer-brand {
    flex: 1 1 250px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f5a623;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 0.5rem;
  }
  .footer-logo:hover {
    color: #ffb84d;
  }
  .footer-tagline {
    font-size: 0.95rem;
    color: #b0b0b0;
    margin: 0;
  }
  .footer-right {
    flex: 2 1 300px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
  }
  .footer-menu a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-menu a:hover {
    color: #f5a623;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
  }
  .footer-legal a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-legal a:hover {
    color: #f5a623;
  }
  .footer-contact {
    flex: 1 1 100%;
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    margin-top: 0.5rem;
  }
  .contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
    align-items: center;
  }
  .contact-item {
    color: #e0e0e0;
    font-size: 0.95rem;
  }
  .contact-item a {
    color: #e0e0e0;
    text-decoration: none;
  }
  .contact-item a:hover {
    color: #f5a623;
  }
  .footer-bottom {
    flex: 1 1 100%;
    margin-top: 1.5rem;
    text-align: center;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #888;
    margin: 0 0 0.5rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-copyright {
    font-size: 0.85rem;
    color: #888;
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-brand {
      flex: 1 1 auto;
    }
    .footer-right {
      flex: 1 1 auto;
      align-items: center;
    }
    .footer-menu {
      justify-content: center;
    }
    .footer-legal {
      justify-content: center;
    }
    .contact-info {
      justify-content: center;
    }
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.values-spine-c1 {
        padding: clamp(3.5rem, 8vw, 6.2rem) var(--space-x);
        background: var(--gradient-hero);
        color: var(--gradient-accent);
    }

    .values-spine-c1__wrap {
        max-width: 58rem;
        margin: 0 auto;
    }

    .values-spine-c1__head {
        text-align: center;
        margin-bottom: 1.2rem;
    }

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

    .values-spine-c1__head h2 {
        margin: .55rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .values-spine-c1__head span {
        display: block;
        margin-top: .8rem;
    }

    .values-spine-c1__list {
        display: grid;
        gap: .8rem;
    }

    .values-spine-c1__list article {
        display: grid;
        grid-template-columns: 3rem 1fr;
        gap: .9rem;
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .values-spine-c1__list strong {
        display: grid;
        place-items: center;
        width: 3rem;
        height: 3rem;
        border-radius: var(--radius-md);
        background: var(--bg-accent);
    }

    .values-spine-c1__list h3 {
        margin: 0;
    }

    .values-spine-c1__list p {
        margin: .35rem 0 0;
    }

    .values-spine-c1__list small {
        display: block;
        margin-top: .55rem;
    }

.why-choose {

        padding: clamp(16px, 3vw, 44px);
    }

    .why-choose--light.why-choose--v2 {
        background: var(--fg-on-primary);
        color: var(--bg-primary);
    }

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

    .why-choose__wrap {
        border-radius: var(--radius-xl);
        padding: clamp(16px, 2.6vw, 26px);
        background: var(--bg-alt);
        border: 1px solid var(--neutral-300);
        box-shadow: var(--shadow-md);
    }

    .why-choose__h {
        margin-bottom: clamp(14px, 2vw, 22px);
    }

    .why-choose__pill {
        display: inline-flex;
        padding: 7px 12px;
        border-radius: 999px;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-sm);
        margin-bottom: 12px;
        font-size: 0.9rem;
    }

    .why-choose__title {
        margin: 0;
        font-size: clamp(24px, 4.2vw, 40px);
        line-height: 1.1;
        color: var(--bg-primary);
        letter-spacing: -0.02em;
    }

    .why-choose__subtitle {
        margin: 10px 0 0;
        color: var(--neutral-600);
        max-width: 70ch;
    }

    .why-choose__cards {
        display: grid;
        grid-template-columns:repeat(12, 1fr);
        gap: 14px;
    }

    .why-choose__card {
        grid-column: span 6;
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-sm);
        overflow: hidden;
        transform: perspective(900px) rotateX(0) rotateY(0) translateY(0);
        transition: transform 180ms var(--anim-ease),
        box-shadow 180ms var(--anim-ease),
        border-color 180ms var(--anim-ease);
        will-change: transform;
        position: relative;
    }

    .why-choose__cardHead {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 16px;
        background: rgba(0, 0, 0, 0.03);
        border-bottom: 1px solid var(--border-on-surface);
    }

    .why-choose__num {
        width: 36px;
        height: 36px;
        border-radius: 12px;
        display: grid;
        place-items: center;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-weight: 700;
    }

    .why-choose__mini {
        color: var(--neutral-600);
        font-size: 0.9rem;
    }

    .why-choose__cardBody {
        padding: 14px 16px;
    }

    .why-choose__cardTitle {
        margin: 0 0 8px;
        color: var(--bg-primary);
        font-size: clamp(18px, 2.2vw, 20px);
    }

    .why-choose__cardText {
        margin: 0;
        color: var(--neutral-600);
        line-height: var(--line-height-base);
    }

    @media (max-width: 860px) {
        .why-choose__card {
            grid-column: span 12;
        }
    }

    @media (prefers-reduced-motion: reduce) {
        .why-choose__card {
            transition: none;
            transform: none;
        }
    }

.visual-film-c1 {
        padding: clamp(3.5rem, 8vw, 6rem) var(--space-x);
        background: var(--gradient-hero);
        color: var(--gradient-accent);
    }

    .visual-film-c1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .visual-film-c1__head {
        text-align: center;
        margin-bottom: 1.1rem;
    }

    .visual-film-c1__head p {
        margin: 0;
        text-transform: uppercase;
        letter-spacing: .1em;
        font-size: .82rem;
    }

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

    .visual-film-c1__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
        gap: var(--gap);
    }

    .visual-film-c1__grid figure {
        margin: 0;
        overflow: hidden;
        border-radius: var(--radius-xl);
        background: var(--neutral-100);
        border: 1px solid var(--neutral-300);

    }

    .visual-film-c1__media {
        position: relative;
    }

    .visual-film-c1__media img {
        display: block;
        width: 100%;
        height: 14rem;
        object-fit: cover;
    }

    .visual-film-c1__media span {
        position: absolute;
        top: .8rem;
        left: .8rem;
        padding: .35rem .7rem;
        border-radius: 999px;
        background: rgba(0, 0, 0, .28);
    }

    .visual-film-c1__grid figcaption {
        padding: 1rem;
    }

    .visual-film-c1__grid h3 {
        margin: .5rem 0 .35rem;
    }

.next-pins-l4 {
        padding: clamp(3.2rem, 7vw, 5.7rem) var(--space-x);
        background: var(--neutral-100);
        color: var(--neutral-900);
    }

    .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(--neutral-100);
        border: 1px solid var(--neutral-300);
    }

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

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

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--surface-1);
    box-shadow: var(--shadow-sm);
    padding: var(--space-y) var(--space-x);
  }

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

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

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

  .header__burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
  }

  .header__burger-line {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
  }

  .header__burger.active .header__burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

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

  .header__burger.active .header__burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .header__nav {
    display: flex;
    align-items: center;
  }

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

  .header__nav-item {
    margin: 0;
  }

  .header__nav-link {
    text-decoration: none;
    font-size: var(--font-size-base);
    font-weight: 500;
    color: var(--fg-on-surface);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }

  .header__nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--brand);
  }

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

    .header__nav {
      position: fixed;
      top: 0;
      right: -100%;
      width: 280px;
      height: 100vh;
      background-color: var(--surface-1);
      box-shadow: var(--shadow-lg);
      padding: 5rem 2rem 2rem;
      transition: right var(--anim-duration) var(--anim-ease);
      flex-direction: column;
      align-items: flex-start;
    }

    .header__nav.open {
      right: 0;
    }

    .header__nav-list {
      flex-direction: column;
      gap: 0.5rem;
      width: 100%;
    }

    .header__nav-link {
      display: block;
      width: 100%;
      padding: 0.75rem 1rem;
      font-size: calc(var(--font-size-base) * 1.1);
    }
  }

.site-footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
  }
  .footer-brand {
    flex: 1 1 250px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f5a623;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 0.5rem;
  }
  .footer-logo:hover {
    color: #ffb84d;
  }
  .footer-tagline {
    font-size: 0.95rem;
    color: #b0b0b0;
    margin: 0;
  }
  .footer-right {
    flex: 2 1 300px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
  }
  .footer-menu a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-menu a:hover {
    color: #f5a623;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
  }
  .footer-legal a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-legal a:hover {
    color: #f5a623;
  }
  .footer-contact {
    flex: 1 1 100%;
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    margin-top: 0.5rem;
  }
  .contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
    align-items: center;
  }
  .contact-item {
    color: #e0e0e0;
    font-size: 0.95rem;
  }
  .contact-item a {
    color: #e0e0e0;
    text-decoration: none;
  }
  .contact-item a:hover {
    color: #f5a623;
  }
  .footer-bottom {
    flex: 1 1 100%;
    margin-top: 1.5rem;
    text-align: center;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #888;
    margin: 0 0 0.5rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-copyright {
    font-size: 0.85rem;
    color: #888;
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-brand {
      flex: 1 1 auto;
    }
    .footer-right {
      flex: 1 1 auto;
      align-items: center;
    }
    .footer-menu {
      justify-content: center;
    }
    .footer-legal {
      justify-content: center;
    }
    .contact-info {
      justify-content: center;
    }
  }

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

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

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

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

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

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

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

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

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

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

.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: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--surface-1);
    box-shadow: var(--shadow-sm);
    padding: var(--space-y) var(--space-x);
  }

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

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

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

  .header__burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
  }

  .header__burger-line {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
  }

  .header__burger.active .header__burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

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

  .header__burger.active .header__burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .header__nav {
    display: flex;
    align-items: center;
  }

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

  .header__nav-item {
    margin: 0;
  }

  .header__nav-link {
    text-decoration: none;
    font-size: var(--font-size-base);
    font-weight: 500;
    color: var(--fg-on-surface);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }

  .header__nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--brand);
  }

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

    .header__nav {
      position: fixed;
      top: 0;
      right: -100%;
      width: 280px;
      height: 100vh;
      background-color: var(--surface-1);
      box-shadow: var(--shadow-lg);
      padding: 5rem 2rem 2rem;
      transition: right var(--anim-duration) var(--anim-ease);
      flex-direction: column;
      align-items: flex-start;
    }

    .header__nav.open {
      right: 0;
    }

    .header__nav-list {
      flex-direction: column;
      gap: 0.5rem;
      width: 100%;
    }

    .header__nav-link {
      display: block;
      width: 100%;
      padding: 0.75rem 1rem;
      font-size: calc(var(--font-size-base) * 1.1);
    }
  }

.site-footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
  }
  .footer-brand {
    flex: 1 1 250px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f5a623;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 0.5rem;
  }
  .footer-logo:hover {
    color: #ffb84d;
  }
  .footer-tagline {
    font-size: 0.95rem;
    color: #b0b0b0;
    margin: 0;
  }
  .footer-right {
    flex: 2 1 300px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
  }
  .footer-menu a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-menu a:hover {
    color: #f5a623;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
  }
  .footer-legal a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-legal a:hover {
    color: #f5a623;
  }
  .footer-contact {
    flex: 1 1 100%;
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    margin-top: 0.5rem;
  }
  .contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
    align-items: center;
  }
  .contact-item {
    color: #e0e0e0;
    font-size: 0.95rem;
  }
  .contact-item a {
    color: #e0e0e0;
    text-decoration: none;
  }
  .contact-item a:hover {
    color: #f5a623;
  }
  .footer-bottom {
    flex: 1 1 100%;
    margin-top: 1.5rem;
    text-align: center;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #888;
    margin: 0 0 0.5rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-copyright {
    font-size: 0.85rem;
    color: #888;
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-brand {
      flex: 1 1 auto;
    }
    .footer-right {
      flex: 1 1 auto;
      align-items: center;
    }
    .footer-menu {
      justify-content: center;
    }
    .footer-legal {
      justify-content: center;
    }
    .contact-info {
      justify-content: center;
    }
  }

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

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

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

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

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

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

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

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

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

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

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

.author {

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

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

    .author .author__card {
        max-width: 600px;
        margin: 0 auto;
        text-align: center;
        background: var(--surface-1);
        padding: clamp(32px, 5vw, 48px);
        border-radius: var(--radius-xl);
    }

    .author .author__image {
        width: clamp(140px, 20vw, 200px);
        height: clamp(140px, 20vw, 200px);
        margin: 0 auto clamp(24px, 4vw, 32px);
        border-radius: 50%;
        overflow: hidden;
    }

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

    .author .author__info h3 {
        font-size: clamp(26px, 4.5vw, 36px);
        margin: 0 0 0.5rem;
        color: var(--fg-on-surface);
    }

    .author .author__role {
        font-size: clamp(16px, 2.5vw, 18px);
        color: var(--bg-accent);
        margin: 0 0 1.5rem;
        font-weight: 600;
    }

    .author .author__bio {
        font-size: clamp(15px, 2.2vw, 17px);
        line-height: 1.7;
        color: var(--neutral-600);
        margin: 0;
    }

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--surface-1);
    box-shadow: var(--shadow-sm);
    padding: var(--space-y) var(--space-x);
  }

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

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

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

  .header__burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
  }

  .header__burger-line {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
  }

  .header__burger.active .header__burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

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

  .header__burger.active .header__burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .header__nav {
    display: flex;
    align-items: center;
  }

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

  .header__nav-item {
    margin: 0;
  }

  .header__nav-link {
    text-decoration: none;
    font-size: var(--font-size-base);
    font-weight: 500;
    color: var(--fg-on-surface);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }

  .header__nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--brand);
  }

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

    .header__nav {
      position: fixed;
      top: 0;
      right: -100%;
      width: 280px;
      height: 100vh;
      background-color: var(--surface-1);
      box-shadow: var(--shadow-lg);
      padding: 5rem 2rem 2rem;
      transition: right var(--anim-duration) var(--anim-ease);
      flex-direction: column;
      align-items: flex-start;
    }

    .header__nav.open {
      right: 0;
    }

    .header__nav-list {
      flex-direction: column;
      gap: 0.5rem;
      width: 100%;
    }

    .header__nav-link {
      display: block;
      width: 100%;
      padding: 0.75rem 1rem;
      font-size: calc(var(--font-size-base) * 1.1);
    }
  }

.site-footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
  }
  .footer-brand {
    flex: 1 1 250px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f5a623;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 0.5rem;
  }
  .footer-logo:hover {
    color: #ffb84d;
  }
  .footer-tagline {
    font-size: 0.95rem;
    color: #b0b0b0;
    margin: 0;
  }
  .footer-right {
    flex: 2 1 300px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
  }
  .footer-menu a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-menu a:hover {
    color: #f5a623;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
  }
  .footer-legal a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-legal a:hover {
    color: #f5a623;
  }
  .footer-contact {
    flex: 1 1 100%;
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    margin-top: 0.5rem;
  }
  .contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
    align-items: center;
  }
  .contact-item {
    color: #e0e0e0;
    font-size: 0.95rem;
  }
  .contact-item a {
    color: #e0e0e0;
    text-decoration: none;
  }
  .contact-item a:hover {
    color: #f5a623;
  }
  .footer-bottom {
    flex: 1 1 100%;
    margin-top: 1.5rem;
    text-align: center;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #888;
    margin: 0 0 0.5rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-copyright {
    font-size: 0.85rem;
    color: #888;
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-brand {
      flex: 1 1 auto;
    }
    .footer-right {
      flex: 1 1 auto;
      align-items: center;
    }
    .footer-menu {
      justify-content: center;
    }
    .footer-legal {
      justify-content: center;
    }
    .contact-info {
      justify-content: center;
    }
  }

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

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

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

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

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

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

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

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

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

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

.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: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--surface-1);
    box-shadow: var(--shadow-sm);
    padding: var(--space-y) var(--space-x);
  }

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

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

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

  .header__burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
  }

  .header__burger-line {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
  }

  .header__burger.active .header__burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

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

  .header__burger.active .header__burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .header__nav {
    display: flex;
    align-items: center;
  }

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

  .header__nav-item {
    margin: 0;
  }

  .header__nav-link {
    text-decoration: none;
    font-size: var(--font-size-base);
    font-weight: 500;
    color: var(--fg-on-surface);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }

  .header__nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--brand);
  }

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

    .header__nav {
      position: fixed;
      top: 0;
      right: -100%;
      width: 280px;
      height: 100vh;
      background-color: var(--surface-1);
      box-shadow: var(--shadow-lg);
      padding: 5rem 2rem 2rem;
      transition: right var(--anim-duration) var(--anim-ease);
      flex-direction: column;
      align-items: flex-start;
    }

    .header__nav.open {
      right: 0;
    }

    .header__nav-list {
      flex-direction: column;
      gap: 0.5rem;
      width: 100%;
    }

    .header__nav-link {
      display: block;
      width: 100%;
      padding: 0.75rem 1rem;
      font-size: calc(var(--font-size-base) * 1.1);
    }
  }

.site-footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
  }
  .footer-brand {
    flex: 1 1 250px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f5a623;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 0.5rem;
  }
  .footer-logo:hover {
    color: #ffb84d;
  }
  .footer-tagline {
    font-size: 0.95rem;
    color: #b0b0b0;
    margin: 0;
  }
  .footer-right {
    flex: 2 1 300px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
  }
  .footer-menu a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-menu a:hover {
    color: #f5a623;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
  }
  .footer-legal a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-legal a:hover {
    color: #f5a623;
  }
  .footer-contact {
    flex: 1 1 100%;
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    margin-top: 0.5rem;
  }
  .contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
    align-items: center;
  }
  .contact-item {
    color: #e0e0e0;
    font-size: 0.95rem;
  }
  .contact-item a {
    color: #e0e0e0;
    text-decoration: none;
  }
  .contact-item a:hover {
    color: #f5a623;
  }
  .footer-bottom {
    flex: 1 1 100%;
    margin-top: 1.5rem;
    text-align: center;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #888;
    margin: 0 0 0.5rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-copyright {
    font-size: 0.85rem;
    color: #888;
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-brand {
      flex: 1 1 auto;
    }
    .footer-right {
      flex: 1 1 auto;
      align-items: center;
    }
    .footer-menu {
      justify-content: center;
    }
    .footer-legal {
      justify-content: center;
    }
    .contact-info {
      justify-content: center;
    }
  }

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

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

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

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

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

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

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

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

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

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

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

.clar-ux5{padding:clamp(20px,3vw,44px);background:var(--gradient-accent);color:var(--accent-contrast)}.clar-ux5__wrap{max-width:var(--max-w);margin:0 auto}.clar-ux5__head{margin-bottom:12px}.clar-ux5__head h2{margin:0}.clar-ux5__head p{margin:8px 0 0;color:rgba(255,255,255,.88)}.clar-ux5__grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:10px}.clar-ux5__grid article{border:1px solid rgba(255,255,255,.3);background:rgba(255,255,255,.1);border-radius:var(--radius-md);padding:12px}.clar-ux5__grid span,.clar-ux5__grid small{display:inline-flex;font-size:.82rem;opacity:.9}.clar-ux5__grid h3{margin:6px 0}.clar-ux5__grid p{margin:0;opacity:.93}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--surface-1);
    box-shadow: var(--shadow-sm);
    padding: var(--space-y) var(--space-x);
  }

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

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

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

  .header__burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
  }

  .header__burger-line {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
  }

  .header__burger.active .header__burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

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

  .header__burger.active .header__burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .header__nav {
    display: flex;
    align-items: center;
  }

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

  .header__nav-item {
    margin: 0;
  }

  .header__nav-link {
    text-decoration: none;
    font-size: var(--font-size-base);
    font-weight: 500;
    color: var(--fg-on-surface);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }

  .header__nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--brand);
  }

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

    .header__nav {
      position: fixed;
      top: 0;
      right: -100%;
      width: 280px;
      height: 100vh;
      background-color: var(--surface-1);
      box-shadow: var(--shadow-lg);
      padding: 5rem 2rem 2rem;
      transition: right var(--anim-duration) var(--anim-ease);
      flex-direction: column;
      align-items: flex-start;
    }

    .header__nav.open {
      right: 0;
    }

    .header__nav-list {
      flex-direction: column;
      gap: 0.5rem;
      width: 100%;
    }

    .header__nav-link {
      display: block;
      width: 100%;
      padding: 0.75rem 1rem;
      font-size: calc(var(--font-size-base) * 1.1);
    }
  }

.site-footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
  }
  .footer-brand {
    flex: 1 1 250px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f5a623;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 0.5rem;
  }
  .footer-logo:hover {
    color: #ffb84d;
  }
  .footer-tagline {
    font-size: 0.95rem;
    color: #b0b0b0;
    margin: 0;
  }
  .footer-right {
    flex: 2 1 300px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
  }
  .footer-menu a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-menu a:hover {
    color: #f5a623;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
  }
  .footer-legal a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-legal a:hover {
    color: #f5a623;
  }
  .footer-contact {
    flex: 1 1 100%;
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    margin-top: 0.5rem;
  }
  .contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
    align-items: center;
  }
  .contact-item {
    color: #e0e0e0;
    font-size: 0.95rem;
  }
  .contact-item a {
    color: #e0e0e0;
    text-decoration: none;
  }
  .contact-item a:hover {
    color: #f5a623;
  }
  .footer-bottom {
    flex: 1 1 100%;
    margin-top: 1.5rem;
    text-align: center;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #888;
    margin: 0 0 0.5rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-copyright {
    font-size: 0.85rem;
    color: #888;
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-brand {
      flex: 1 1 auto;
    }
    .footer-right {
      flex: 1 1 auto;
      align-items: center;
    }
    .footer-menu {
      justify-content: center;
    }
    .footer-legal {
      justify-content: center;
    }
    .contact-info {
      justify-content: center;
    }
  }

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

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

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

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

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

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

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

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

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

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

.article-list--colored-v5 {

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

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

.article-list__header {
    margin-bottom: 20px;
}

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

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

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

.article-list__card {
    background: rgba(15,23,42,0.9);
    border-radius: var(--radius-lg);
    padding: 16px 18px;
    border: 1px solid rgba(148,163,184,0.6);
}

.article-list__card h3 {
    margin: 0 0 6px;
    font-size: 1rem;
    color: var(--brand-contrast);
}

.article-list__card p {
    margin: 0 0 10px;
    font-size: 0.9rem;
    color: rgba(226,232,240,0.9);
}

.article-list__link {
    font-size: 0.85rem;
    color: var(--bg-accent);
    text-decoration: none;
}

.faq-fresh-v1 {
        padding: calc(var(--space-y) * 2.8) var(--space-x);
        background: var(--bg-page);
        color: var(--fg-on-page);
    }

    .faq-fresh-v1 .shell {
        max-width: 860px;
        margin: 0 auto;
        display: grid;
        gap: var(--gap);
    }

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

    .faq-fresh-v1 .items {
        display: grid;
        gap: .8rem;
    }

    .faq-fresh-v1 details {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
        padding: .85rem 1rem;
        background: var(--surface-1);
    }

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

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

.recommendations-u5{padding:calc(var(--space-y)*2.9) var(--space-x);background:var(--neutral-900);color:var(--neutral-0)} .recommendations-u5 .shell{max-width:var(--max-w);margin:0 auto;display:grid;gap:var(--gap)} .recommendations-u5 h2{margin:0;font-size:clamp(1.85rem,3.6vw,2.8rem);line-height:1.1} .recommendations-u5 .sub{margin:.35rem 0 0;opacity:.9;} .recommendations-u5 article,.recommendations-u5 li{padding:.85rem;border-radius:var(--radius-sm);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);list-style:none} .recommendations-u5 p{margin:0} .recommendations-u5 a{text-decoration:none;color:inherit;font-weight:700} .recommendations-u5 .table{display:grid;gap:.5rem} .recommendations-u5 .foot{display:grid;grid-template-columns:1fr 1fr;gap:.5rem;margin-top:.65rem} .recommendations-u5 .foot p{padding:.65rem;border-radius:var(--radius-sm);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover)} @media (max-width:860px){.recommendations-u5 .split,.recommendations-u5 .media,.recommendations-u5 .grid,.recommendations-u5 .cards,.recommendations-u5 .bento,.recommendations-u5 .foot{grid-template-columns:1fr}}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--surface-1);
    box-shadow: var(--shadow-sm);
    padding: var(--space-y) var(--space-x);
  }

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

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

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

  .header__burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
  }

  .header__burger-line {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
  }

  .header__burger.active .header__burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

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

  .header__burger.active .header__burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .header__nav {
    display: flex;
    align-items: center;
  }

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

  .header__nav-item {
    margin: 0;
  }

  .header__nav-link {
    text-decoration: none;
    font-size: var(--font-size-base);
    font-weight: 500;
    color: var(--fg-on-surface);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }

  .header__nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--brand);
  }

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

    .header__nav {
      position: fixed;
      top: 0;
      right: -100%;
      width: 280px;
      height: 100vh;
      background-color: var(--surface-1);
      box-shadow: var(--shadow-lg);
      padding: 5rem 2rem 2rem;
      transition: right var(--anim-duration) var(--anim-ease);
      flex-direction: column;
      align-items: flex-start;
    }

    .header__nav.open {
      right: 0;
    }

    .header__nav-list {
      flex-direction: column;
      gap: 0.5rem;
      width: 100%;
    }

    .header__nav-link {
      display: block;
      width: 100%;
      padding: 0.75rem 1rem;
      font-size: calc(var(--font-size-base) * 1.1);
    }
  }

.site-footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
  }
  .footer-brand {
    flex: 1 1 250px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f5a623;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 0.5rem;
  }
  .footer-logo:hover {
    color: #ffb84d;
  }
  .footer-tagline {
    font-size: 0.95rem;
    color: #b0b0b0;
    margin: 0;
  }
  .footer-right {
    flex: 2 1 300px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
  }
  .footer-menu a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-menu a:hover {
    color: #f5a623;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
  }
  .footer-legal a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-legal a:hover {
    color: #f5a623;
  }
  .footer-contact {
    flex: 1 1 100%;
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    margin-top: 0.5rem;
  }
  .contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
    align-items: center;
  }
  .contact-item {
    color: #e0e0e0;
    font-size: 0.95rem;
  }
  .contact-item a {
    color: #e0e0e0;
    text-decoration: none;
  }
  .contact-item a:hover {
    color: #f5a623;
  }
  .footer-bottom {
    flex: 1 1 100%;
    margin-top: 1.5rem;
    text-align: center;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #888;
    margin: 0 0 0.5rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-copyright {
    font-size: 0.85rem;
    color: #888;
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-brand {
      flex: 1 1 auto;
    }
    .footer-right {
      flex: 1 1 auto;
      align-items: center;
    }
    .footer-menu {
      justify-content: center;
    }
    .footer-legal {
      justify-content: center;
    }
    .contact-info {
      justify-content: center;
    }
  }

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

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

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

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

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

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

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

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

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

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

.support-lv4 {
        padding: clamp(48px, 6vw, 80px) clamp(16px, 4vw, 36px);
        background: var(--neutral-100);
        color: var(--neutral-900);
    }

    .support-lv4__wrap {
        max-width: 900px;
        margin: 0 auto;
        display: grid;
        gap: 12px;
        grid-template-columns: 1fr 1fr;
    }

    .support-lv4__wrap article {
        border: 1px solid var(--neutral-300);
        border-radius: var(--radius-lg);
        background: var(--neutral-100);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-sm);
    }

    .support-lv4__wrap h3 {
        margin: 0 0 7px;
        color: var(--brand);
    }

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

    @media (max-width: 700px) {
        .support-lv4__wrap {
            grid-template-columns: 1fr;
        }
    }

.map-shell-c4 {
        padding: clamp(3.5rem, 8vw, 6rem) var(--space-x);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

    .map-shell-c4__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .map-shell-c4__band {
        margin-bottom: 1rem;
        display: flex;
        justify-content: space-between;
        align-items: end;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .map-shell-c4__band h2 {
        margin: 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .map-shell-c4__band p {
        margin: 0;
        color: rgba(255, 255, 255, .82);
    }

    .map-shell-c4__shell {
        display: grid;
        grid-template-columns: 1.2fr .8fr;
        gap: 1rem;
    }

    .map-shell-c4__shell iframe {
        display: block;
        width: 100%;
        min-height: 24rem;
        border-radius: var(--radius-xl);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .map-shell-c4__cards {
        display: grid;
        gap: .75rem;
    }

    .map-shell-c4__cards article {
        padding: .95rem;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .map-shell-c4__cards p {
        margin: .35rem 0 0;
        color: rgba(255, 255, 255, .84);
    }

    @media (max-width: 840px) {
        .map-shell-c4__shell {
            grid-template-columns: 1fr;
        }
    }

.con-lx8{padding:calc(var(--space-y)*2.9) var(--space-x);background:var(--bg-alt)}
.con-lx8 .con-stage{max-width:var(--max-w);margin:0 auto;padding:1.1rem;border-radius:var(--radius-xl);background:var(--surface-1);border:1px solid var(--border-on-surface)}
.con-lx8 .con-head h2{margin:0;font-size:clamp(1.75rem,3.1vw,2.45rem)}
.con-lx8 .con-head p{margin:.4rem 0 .95rem;color:var(--fg-on-surface-light)}
.con-lx8 .con-columns{display:grid;grid-template-columns:1.2fr .8fr;gap:.75rem}
.con-lx8 .con-essentials{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.6rem}
.con-lx8 .con-essentials article{padding:.9rem;border-radius:var(--radius-md);background:var(--surface-2)}
.con-lx8 small{display:block;color:var(--fg-on-surface-light);margin-bottom:.2rem}
.con-lx8 a{text-decoration:none;color:var(--link);font-weight:700}
.con-lx8 .con-side{padding:.9rem;border-radius:var(--radius-md);border:1px solid var(--border-on-surface)}
.con-lx8 .con-side p{margin:0 0 .55rem}
.con-lx8 .con-side p:last-child{margin:0}
.con-lx8 .con-tags{display:flex;flex-wrap:wrap;gap:.45rem;margin-top:.85rem}
.con-lx8 .con-tags a{padding:.35rem .6rem;border-radius:99px;background:var(--surface-2);border:1px solid var(--border-on-surface);font-weight:600}
@media (max-width:860px){.con-lx8 .con-columns,.con-lx8 .con-essentials{grid-template-columns:1fr}}

.form-u5{padding:calc(var(--space-y)*2.9) var(--space-x);background:var(--neutral-900);color:var(--neutral-0)} .form-u5 .shell{max-width:var(--max-w);margin:0 auto;display:grid;gap:var(--gap)} .form-u5 h2{margin:0;font-size:clamp(1.85rem,3.6vw,2.8rem);line-height:1.1} .form-u5 .sub{margin:.35rem 0 0;opacity:.9;} .form-u5 .panel,.form-u5 .box{padding:1.1rem;border-radius:var(--radius-xl);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);box-shadow:var(--shadow-md)} .form-u5 form{display:grid;gap:.75rem} .form-u5 .field{display:grid;gap:.28rem} .form-u5 .field span{font-size:.82rem;font-weight:700;color:var(--fg-on-surface-light)} .form-u5 input,.form-u5 textarea{width:100%;padding:.8rem .85rem;border-radius:var(--radius-md);border:1px solid var(--border-on-surface-light);background:var(--surface-1);color:var(--fg-on-surface);font:inherit;outline:none;transition:border-color var(--anim-duration) var(--anim-ease),box-shadow var(--anim-duration) var(--anim-ease)} .form-u5 input:focus,.form-u5 textarea:focus{border-color:var(--ring);box-shadow:0 0 0 3px color-mix(in srgb,var(--ring) 22%, transparent)} .form-u5 textarea{min-height:120px;resize:vertical} .form-u5 button{padding:.82rem 1rem;border:0;border-radius:var(--radius-md);background:var(--bg-primary);color:var(--fg-on-primary);font-weight:700;cursor:pointer;transition:transform var(--anim-duration) var(--anim-ease),background var(--anim-duration) var(--anim-ease)} .form-u5 button:hover{transform:translateY(-1px);background:var(--bg-primary-hover)} .form-u5 .split{display:grid;grid-template-columns:1fr 1fr;gap:var(--gap)} .form-u5 .grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.65rem} .form-u5 .line{padding:1rem;border-radius:var(--radius-lg);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover)} .form-u5 .bar{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.65rem;padding:1rem;border-radius:var(--radius-lg);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover)} .form-u5 .stack{padding:1rem;border-radius:var(--radius-lg);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover)} .form-u5 .steps{display:flex;gap:.45rem;flex-wrap:wrap} .form-u5 .steps span{padding:.33rem .55rem;border-radius:var(--radius-sm);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);font-size:.8rem} .form-u5 .agree{display:flex;align-items:center;gap:.45rem;font-size:.86rem} .form-u5 .media{display:grid;grid-template-columns:.9fr 1.1fr;gap:var(--gap)} .form-u5 .media img,.form-u5 .frame img{width:100%;height:100%;min-height:320px;object-fit:cover;border-radius:var(--radius-xl)} .form-u5 .frame{display:grid;grid-template-columns:1.1fr .9fr;gap:var(--gap)} .form-u5 .full{grid-column:1/-1} @media (max-width:860px){.form-u5 .split,.form-u5 .media,.form-u5 .frame{grid-template-columns:1fr} .form-u5 .grid,.form-u5 .bar{grid-template-columns:1fr}}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--surface-1);
    box-shadow: var(--shadow-sm);
    padding: var(--space-y) var(--space-x);
  }

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

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

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

  .header__burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
  }

  .header__burger-line {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
  }

  .header__burger.active .header__burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

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

  .header__burger.active .header__burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .header__nav {
    display: flex;
    align-items: center;
  }

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

  .header__nav-item {
    margin: 0;
  }

  .header__nav-link {
    text-decoration: none;
    font-size: var(--font-size-base);
    font-weight: 500;
    color: var(--fg-on-surface);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }

  .header__nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--brand);
  }

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

    .header__nav {
      position: fixed;
      top: 0;
      right: -100%;
      width: 280px;
      height: 100vh;
      background-color: var(--surface-1);
      box-shadow: var(--shadow-lg);
      padding: 5rem 2rem 2rem;
      transition: right var(--anim-duration) var(--anim-ease);
      flex-direction: column;
      align-items: flex-start;
    }

    .header__nav.open {
      right: 0;
    }

    .header__nav-list {
      flex-direction: column;
      gap: 0.5rem;
      width: 100%;
    }

    .header__nav-link {
      display: block;
      width: 100%;
      padding: 0.75rem 1rem;
      font-size: calc(var(--font-size-base) * 1.1);
    }
  }

.site-footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
  }
  .footer-brand {
    flex: 1 1 250px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f5a623;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 0.5rem;
  }
  .footer-logo:hover {
    color: #ffb84d;
  }
  .footer-tagline {
    font-size: 0.95rem;
    color: #b0b0b0;
    margin: 0;
  }
  .footer-right {
    flex: 2 1 300px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
  }
  .footer-menu a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-menu a:hover {
    color: #f5a623;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
  }
  .footer-legal a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-legal a:hover {
    color: #f5a623;
  }
  .footer-contact {
    flex: 1 1 100%;
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    margin-top: 0.5rem;
  }
  .contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
    align-items: center;
  }
  .contact-item {
    color: #e0e0e0;
    font-size: 0.95rem;
  }
  .contact-item a {
    color: #e0e0e0;
    text-decoration: none;
  }
  .contact-item a:hover {
    color: #f5a623;
  }
  .footer-bottom {
    flex: 1 1 100%;
    margin-top: 1.5rem;
    text-align: center;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #888;
    margin: 0 0 0.5rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-copyright {
    font-size: 0.85rem;
    color: #888;
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-brand {
      flex: 1 1 auto;
    }
    .footer-right {
      flex: 1 1 auto;
      align-items: center;
    }
    .footer-menu {
      justify-content: center;
    }
    .footer-legal {
      justify-content: center;
    }
    .contact-info {
      justify-content: center;
    }
  }

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

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

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

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

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

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

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

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

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

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

.pol-lx2{padding:calc(var(--space-y)*2.8) var(--space-x)}
.pol-lx2 .pol-shell{max-width:var(--max-w);margin:0 auto;display:grid;gap:.75rem}
.pol-lx2 h2{margin:0;font-size:clamp(1.8rem,3.4vw,2.55rem)}
.pol-lx2 .pol-core{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.65rem}
.pol-lx2 .pol-core article{padding:.9rem;border-radius:var(--radius-lg);background:var(--surface-2);border:1px solid var(--border-on-surface)}
.pol-lx2 h3{margin:0 0 .28rem;font-size:1rem}
.pol-lx2 p{margin:0;color:var(--fg-on-surface-light)}
.pol-lx2 .pol-list{list-style:none;margin:0;padding:0;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.58rem}
.pol-lx2 .pol-list li{padding:.85rem;border-radius:var(--radius-md);background:var(--surface-1);border:1px solid var(--border-on-surface)}
@media (max-width:860px){.pol-lx2 .pol-core,.pol-lx2 .pol-list{grid-template-columns:1fr}}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--surface-1);
    box-shadow: var(--shadow-sm);
    padding: var(--space-y) var(--space-x);
  }

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

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

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

  .header__burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
  }

  .header__burger-line {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
  }

  .header__burger.active .header__burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

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

  .header__burger.active .header__burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .header__nav {
    display: flex;
    align-items: center;
  }

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

  .header__nav-item {
    margin: 0;
  }

  .header__nav-link {
    text-decoration: none;
    font-size: var(--font-size-base);
    font-weight: 500;
    color: var(--fg-on-surface);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }

  .header__nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--brand);
  }

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

    .header__nav {
      position: fixed;
      top: 0;
      right: -100%;
      width: 280px;
      height: 100vh;
      background-color: var(--surface-1);
      box-shadow: var(--shadow-lg);
      padding: 5rem 2rem 2rem;
      transition: right var(--anim-duration) var(--anim-ease);
      flex-direction: column;
      align-items: flex-start;
    }

    .header__nav.open {
      right: 0;
    }

    .header__nav-list {
      flex-direction: column;
      gap: 0.5rem;
      width: 100%;
    }

    .header__nav-link {
      display: block;
      width: 100%;
      padding: 0.75rem 1rem;
      font-size: calc(var(--font-size-base) * 1.1);
    }
  }

.site-footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
  }
  .footer-brand {
    flex: 1 1 250px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f5a623;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 0.5rem;
  }
  .footer-logo:hover {
    color: #ffb84d;
  }
  .footer-tagline {
    font-size: 0.95rem;
    color: #b0b0b0;
    margin: 0;
  }
  .footer-right {
    flex: 2 1 300px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
  }
  .footer-menu a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-menu a:hover {
    color: #f5a623;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
  }
  .footer-legal a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-legal a:hover {
    color: #f5a623;
  }
  .footer-contact {
    flex: 1 1 100%;
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    margin-top: 0.5rem;
  }
  .contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
    align-items: center;
  }
  .contact-item {
    color: #e0e0e0;
    font-size: 0.95rem;
  }
  .contact-item a {
    color: #e0e0e0;
    text-decoration: none;
  }
  .contact-item a:hover {
    color: #f5a623;
  }
  .footer-bottom {
    flex: 1 1 100%;
    margin-top: 1.5rem;
    text-align: center;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #888;
    margin: 0 0 0.5rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-copyright {
    font-size: 0.85rem;
    color: #888;
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-brand {
      flex: 1 1 auto;
    }
    .footer-right {
      flex: 1 1 auto;
      align-items: center;
    }
    .footer-menu {
      justify-content: center;
    }
    .footer-legal {
      justify-content: center;
    }
    .contact-info {
      justify-content: center;
    }
  }

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

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

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

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

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

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

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

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

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

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

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

    .terms-layout-f .wrap {
        max-width: 980px;
        margin: 0 auto;
    }

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

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

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

    .terms-layout-f .list {
        display: grid;
        gap: 14px;
    }

    .terms-layout-f article {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: linear-gradient(180deg, var(--surface-1), var(--surface-2));
        padding: var(--space-y) var(--space-x);
    }

    .terms-layout-f h3 {
        margin: 0 0 8px;
        color: var(--brand);
    }

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

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

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--surface-1);
    box-shadow: var(--shadow-sm);
    padding: var(--space-y) var(--space-x);
  }

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

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

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

  .header__burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
  }

  .header__burger-line {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
  }

  .header__burger.active .header__burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

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

  .header__burger.active .header__burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .header__nav {
    display: flex;
    align-items: center;
  }

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

  .header__nav-item {
    margin: 0;
  }

  .header__nav-link {
    text-decoration: none;
    font-size: var(--font-size-base);
    font-weight: 500;
    color: var(--fg-on-surface);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }

  .header__nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--brand);
  }

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

    .header__nav {
      position: fixed;
      top: 0;
      right: -100%;
      width: 280px;
      height: 100vh;
      background-color: var(--surface-1);
      box-shadow: var(--shadow-lg);
      padding: 5rem 2rem 2rem;
      transition: right var(--anim-duration) var(--anim-ease);
      flex-direction: column;
      align-items: flex-start;
    }

    .header__nav.open {
      right: 0;
    }

    .header__nav-list {
      flex-direction: column;
      gap: 0.5rem;
      width: 100%;
    }

    .header__nav-link {
      display: block;
      width: 100%;
      padding: 0.75rem 1rem;
      font-size: calc(var(--font-size-base) * 1.1);
    }
  }

.site-footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
  }
  .footer-brand {
    flex: 1 1 250px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f5a623;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 0.5rem;
  }
  .footer-logo:hover {
    color: #ffb84d;
  }
  .footer-tagline {
    font-size: 0.95rem;
    color: #b0b0b0;
    margin: 0;
  }
  .footer-right {
    flex: 2 1 300px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
  }
  .footer-menu a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-menu a:hover {
    color: #f5a623;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
  }
  .footer-legal a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-legal a:hover {
    color: #f5a623;
  }
  .footer-contact {
    flex: 1 1 100%;
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    margin-top: 0.5rem;
  }
  .contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
    align-items: center;
  }
  .contact-item {
    color: #e0e0e0;
    font-size: 0.95rem;
  }
  .contact-item a {
    color: #e0e0e0;
    text-decoration: none;
  }
  .contact-item a:hover {
    color: #f5a623;
  }
  .footer-bottom {
    flex: 1 1 100%;
    margin-top: 1.5rem;
    text-align: center;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #888;
    margin: 0 0 0.5rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-copyright {
    font-size: 0.85rem;
    color: #888;
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-brand {
      flex: 1 1 auto;
    }
    .footer-right {
      flex: 1 1 auto;
      align-items: center;
    }
    .footer-menu {
      justify-content: center;
    }
    .footer-legal {
      justify-content: center;
    }
    .contact-info {
      justify-content: center;
    }
  }

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

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

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

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

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

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

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

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

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

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

.thx-lx4{padding:calc(var(--space-y)*3) var(--space-x);background:var(--bg-alt)}
.thx-lx4 .thx-wrap{max-width:900px;margin:0 auto;display:grid;gap:.72rem}
.thx-lx4 .thx-hero{padding:1rem;border-radius:var(--radius-xl);border:1px solid var(--border-on-surface);background:var(--surface-1);text-align:center}
.thx-lx4 h2{margin:0;font-size:clamp(1.75rem,3.2vw,2.45rem)}
.thx-lx4 .thx-hero p{margin:.4rem 0 0;color:var(--fg-on-surface-light)}
.thx-lx4 ul{margin:0;padding:0;list-style:none;display:grid;gap:.45rem}
.thx-lx4 li{padding:.72rem .82rem;border-radius:var(--radius-md);background:var(--surface-1);border-inline-start:4px solid var(--bg-primary)}
.thx-lx4 .thx-line{margin:0;padding:.75rem;border-radius:var(--radius-md);background:var(--surface-1);border:1px dashed var(--border-on-surface-light)}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--surface-1);
    box-shadow: var(--shadow-sm);
    padding: var(--space-y) var(--space-x);
  }

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

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

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

  .header__burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
  }

  .header__burger-line {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
  }

  .header__burger.active .header__burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

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

  .header__burger.active .header__burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .header__nav {
    display: flex;
    align-items: center;
  }

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

  .header__nav-item {
    margin: 0;
  }

  .header__nav-link {
    text-decoration: none;
    font-size: var(--font-size-base);
    font-weight: 500;
    color: var(--fg-on-surface);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }

  .header__nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--brand);
  }

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

    .header__nav {
      position: fixed;
      top: 0;
      right: -100%;
      width: 280px;
      height: 100vh;
      background-color: var(--surface-1);
      box-shadow: var(--shadow-lg);
      padding: 5rem 2rem 2rem;
      transition: right var(--anim-duration) var(--anim-ease);
      flex-direction: column;
      align-items: flex-start;
    }

    .header__nav.open {
      right: 0;
    }

    .header__nav-list {
      flex-direction: column;
      gap: 0.5rem;
      width: 100%;
    }

    .header__nav-link {
      display: block;
      width: 100%;
      padding: 0.75rem 1rem;
      font-size: calc(var(--font-size-base) * 1.1);
    }
  }

.site-footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
  }
  .footer-brand {
    flex: 1 1 250px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f5a623;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 0.5rem;
  }
  .footer-logo:hover {
    color: #ffb84d;
  }
  .footer-tagline {
    font-size: 0.95rem;
    color: #b0b0b0;
    margin: 0;
  }
  .footer-right {
    flex: 2 1 300px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
  }
  .footer-menu a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-menu a:hover {
    color: #f5a623;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
  }
  .footer-legal a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-legal a:hover {
    color: #f5a623;
  }
  .footer-contact {
    flex: 1 1 100%;
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    margin-top: 0.5rem;
  }
  .contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
    align-items: center;
  }
  .contact-item {
    color: #e0e0e0;
    font-size: 0.95rem;
  }
  .contact-item a {
    color: #e0e0e0;
    text-decoration: none;
  }
  .contact-item a:hover {
    color: #f5a623;
  }
  .footer-bottom {
    flex: 1 1 100%;
    margin-top: 1.5rem;
    text-align: center;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #888;
    margin: 0 0 0.5rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-copyright {
    font-size: 0.85rem;
    color: #888;
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-brand {
      flex: 1 1 auto;
    }
    .footer-right {
      flex: 1 1 auto;
      align-items: center;
    }
    .footer-menu {
      justify-content: center;
    }
    .footer-legal {
      justify-content: center;
    }
    .contact-info {
      justify-content: center;
    }
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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