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

  --max-w: 1200px;
  --space-x: 0.83rem;
  --space-y: 1.23rem;
  --gap: 1.07rem;

  --radius-xl: 1.05rem;
  --radius-lg: 0.67rem;
  --radius-md: 0.4rem;
  --radius-sm: 0.21rem;

  --shadow-sm: 0 1px 4px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 18px rgba(0,0,0,0.13);
  --shadow-lg: 0 12px 24px rgba(0,0,0,0.15);

  --overlay: rgba(10, 20, 40, 0.7);
  --anim-duration: 280ms;
  --anim-ease: ease-in-out;
  --random-number: 1;

  --brand: #0A2540;
  --brand-contrast: #FFFFFF;
  --accent: #1B8C5E;
  --accent-contrast: #FFFFFF;

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

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

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

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

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

  --bg-primary: #0A2540;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #0B2D4F;
  --ring: #1B8C5E;

  --bg-accent: #1B8C5E;
  --fg-on-accent: #FFFFFF;
  --bg-accent-hover: #147A50;

  --link: #1B8C5E;
  --link-hover: #147A50;

  --gradient-hero: linear-gradient(135deg, #0A2540 0%, #1B8C5E 100%);
  --gradient-accent: linear-gradient(135deg, #1B8C5E 0%, #147A50 100%);

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

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

footer {
    background: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1.5rem;
    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;
    align-items: flex-start;
    gap: 2rem;
  }
  .footer-left {
    flex: 1 1 250px;
  }
  .footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f0a500;
    letter-spacing: 1px;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .footer-legal a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-legal a:hover {
    color: #f0a500;
  }
  .footer-bottom {
    flex: 0 0 100%;
    margin-top: 1.5rem;
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    text-align: center;
  }
  .footer-contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
  }
  .footer-contact address {
    font-style: normal;
    color: #e0e0e0;
  }
  .footer-contact a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-contact a:hover {
    color: #f0a500;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #999;
    margin: 0.5rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-copy {
    font-size: 0.85rem;
    color: #777;
    margin: 0.5rem 0 0;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-legal {
      justify-content: center;
    }
    .footer-contact {
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
    }
  }

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

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

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

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

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

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

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

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

.nfintro-v7 {
        padding: clamp(3.8rem, 8vw, 6.8rem) var(--space-x);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

    .nfintro-v7__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1.15fr .85fr;
        gap: 1rem;
    }

    .nfintro-v7__copy,
    .nfintro-v7__meta {
        padding: 1.1rem;
        border-radius: var(--radius-xl);
        background: rgba(17, 24, 39, .18);
        border: 1px solid rgba(255, 255, 255, .18);
    }

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

    .nfintro-v7__copy h1 {
        margin: .65rem 0 0;
        font-size: clamp(2.5rem, 5vw, 4.8rem);
        line-height: 1.02;
    }

    .nfintro-v7__copy span {
        display: block;
        margin-top: .95rem;
        max-width: 38rem;
    }

    .nfintro-v7__actions {
        margin-top: 1.1rem;
        display: flex;
        gap: .75rem;
        flex-wrap: wrap;
    }

    .nfintro-v7__actions a {
        display: inline-flex;
        min-height: 2.8rem;
        align-items: center;
        justify-content: center;
        padding: 0 1rem;
        border-radius: var(--radius-md);
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, .22);
        color: var(--fg-on-primary);
        background: rgba(255, 255, 255, .12);
    }

    .nfintro-v7__actions a:first-child {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

    .nfintro-v7__meta {
        display: grid;
        align-content: center;
        gap: .7rem;
    }

    .nfintro-v7__meta p,
    .nfintro-v7__meta div {margin: 0; color: rgba(255, 255, 255, .88);}

    @media (max-width: 860px) {
        .nfintro-v7__wrap {grid-template-columns: 1fr;}
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.why-choose {

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

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

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

    .why-choose__top {
        display: grid;
        grid-template-columns:1.35fr 0.65fr;
        gap: clamp(14px, 2vw, 20px);
        align-items: start;
        margin-bottom: clamp(14px, 2.4vw, 26px);
    }

    .why-choose__title {
        margin: 0;
        font-size: clamp(26px, 4.6vw, 42px);
        line-height: 1.1;
        color: var(--fg-on-primary);
        letter-spacing: -0.02em;
    }

    .why-choose__subtitle {
        margin: 10px 0 0;
        color: rgba(255, 255, 255, 0.8);
        max-width: 68ch;
    }

    .why-choose__stats {
        display: grid;
        gap: 12px;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.16);
        box-shadow: var(--shadow-md);
    }

    .why-choose__statValue {
        font-size: clamp(20px, 2.8vw, 28px);
        font-weight: 700;
        color: var(--fg-on-primary);
    }

    .why-choose__statLabel {
        margin-top: 4px;
        color: rgba(255, 255, 255, 0.78);
        font-size: 0.9rem;
    }

    .why-choose__list {
        display: grid;
        gap: 12px;
    }

    .why-choose__row {
        position: relative;
        display: grid;
        grid-template-columns:18px 1fr;
        gap: 12px;
        padding: clamp(14px, 2vw, 18px);
        border-radius: var(--radius-xl);
        background: rgba(0, 0, 0, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.14);
        box-shadow: var(--shadow-sm);
        overflow: hidden;
        transition: transform var(--anim-duration) var(--anim-ease);
        will-change: transform;
    }

    .why-choose__row:hover {
        transform: translateY(-3px);
    }

    /* SHIMMER SWEEP */
    .why-choose__row::after {
        content: '';
        position: absolute;
        inset: -40px -60px;
        transform: translateX(-120%) rotate(12deg);
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);

        pointer-events: none;
    }

    .why-choose__row:hover::after {
        opacity: 1;
        animation: whyChooseShimmer 900ms var(--anim-ease) 1;
    }

    @keyframes whyChooseShimmer {
        0% {
            transform: translateX(-120%) rotate(12deg);
        }
        100% {
            transform: translateX(120%) rotate(12deg);
        }
    }

    .why-choose__bullet {
        width: 12px;
        height: 12px;
        border-radius: 999px;
        margin-top: 6px;
        background: var(--accent);
        box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.12);
    }

    .why-choose__rowTitle {
        font-weight: 700;
        color: var(--fg-on-primary);
        margin-bottom: 6px;
    }

    .why-choose__rowText {
        color: rgba(255, 255, 255, 0.78);
        line-height: var(--line-height-base);
    }

    @media (max-width: 920px) {
        .why-choose__top {
            grid-template-columns:1fr;
        }
    }

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

        .why-choose__row::after {
            display: none;
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

footer {
    background: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1.5rem;
    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;
    align-items: flex-start;
    gap: 2rem;
  }
  .footer-left {
    flex: 1 1 250px;
  }
  .footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f0a500;
    letter-spacing: 1px;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .footer-legal a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-legal a:hover {
    color: #f0a500;
  }
  .footer-bottom {
    flex: 0 0 100%;
    margin-top: 1.5rem;
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    text-align: center;
  }
  .footer-contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
  }
  .footer-contact address {
    font-style: normal;
    color: #e0e0e0;
  }
  .footer-contact a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-contact a:hover {
    color: #f0a500;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #999;
    margin: 0.5rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-copy {
    font-size: 0.85rem;
    color: #777;
    margin: 0.5rem 0 0;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-legal {
      justify-content: center;
    }
    .footer-contact {
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
    }
  }

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

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

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

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

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

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

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

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

.post-list {

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

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

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

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

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

    .post-list .post-list__category {
        padding: 0.5rem 1rem;
        border-radius: var(--radius-md);
        background: var(--surface-light);
        color: var(--fg-on-page);
        text-decoration: none;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .post-list .post-list__category:hover {
        background: var(--bg-primary);
        color: var(--fg-on-page) fff;
    }

    .post-list .post-list__list {
        display: flex;
        flex-direction: column;
        gap: var(--space-x);
    }

    .post-list .post-list__item {
        background: var(--surface-light);
        border: 1px solid var(--ring);
        border-radius: var(--radius-lg);
        padding: clamp(16px, 2vw, 24px);
        box-shadow: var(--shadow-sm);
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .post-list .post-list__item:hover {
        box-shadow: var(--shadow-md);
        transform: translateX(4px);
    }

    .post-list .post-list__meta {
        display: flex;
        gap: 1rem;
        color: var(--neutral-600);
        font-size: 0.875rem;
        margin-bottom: 0.75rem;
    }

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

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

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

    .post-list p {
        color: var(--neutral-600);
        margin: 0;
    }

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

footer {
    background: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1.5rem;
    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;
    align-items: flex-start;
    gap: 2rem;
  }
  .footer-left {
    flex: 1 1 250px;
  }
  .footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f0a500;
    letter-spacing: 1px;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .footer-legal a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-legal a:hover {
    color: #f0a500;
  }
  .footer-bottom {
    flex: 0 0 100%;
    margin-top: 1.5rem;
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    text-align: center;
  }
  .footer-contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
  }
  .footer-contact address {
    font-style: normal;
    color: #e0e0e0;
  }
  .footer-contact a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-contact a:hover {
    color: #f0a500;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #999;
    margin: 0.5rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-copy {
    font-size: 0.85rem;
    color: #777;
    margin: 0.5rem 0 0;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-legal {
      justify-content: center;
    }
    .footer-contact {
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
    }
  }

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

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

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

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

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

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

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

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

.post-item {

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

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

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

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

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

        font-size: 0.875rem;
    }

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

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

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

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

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

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

    .post-item .post-item__comment-text {

        margin-bottom: 0.5rem;
    }

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

    }

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

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

    }

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

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

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

footer {
    background: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1.5rem;
    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;
    align-items: flex-start;
    gap: 2rem;
  }
  .footer-left {
    flex: 1 1 250px;
  }
  .footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f0a500;
    letter-spacing: 1px;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .footer-legal a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-legal a:hover {
    color: #f0a500;
  }
  .footer-bottom {
    flex: 0 0 100%;
    margin-top: 1.5rem;
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    text-align: center;
  }
  .footer-contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
  }
  .footer-contact address {
    font-style: normal;
    color: #e0e0e0;
  }
  .footer-contact a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-contact a:hover {
    color: #f0a500;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #999;
    margin: 0.5rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-copy {
    font-size: 0.85rem;
    color: #777;
    margin: 0.5rem 0 0;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-legal {
      justify-content: center;
    }
    .footer-contact {
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
    }
  }

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

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

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

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

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

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

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

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

.post-item {

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

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

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

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

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

        font-size: 0.875rem;
    }

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

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

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

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

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

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

    .post-item .post-item__comment-text {

        margin-bottom: 0.5rem;
    }

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

    }

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

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

    }

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

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

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

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

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

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

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

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

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

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

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

    .identity-ux12__grid h3 {
        margin: 0;
    }

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

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

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

footer {
    background: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1.5rem;
    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;
    align-items: flex-start;
    gap: 2rem;
  }
  .footer-left {
    flex: 1 1 250px;
  }
  .footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f0a500;
    letter-spacing: 1px;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .footer-legal a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-legal a:hover {
    color: #f0a500;
  }
  .footer-bottom {
    flex: 0 0 100%;
    margin-top: 1.5rem;
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    text-align: center;
  }
  .footer-contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
  }
  .footer-contact address {
    font-style: normal;
    color: #e0e0e0;
  }
  .footer-contact a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-contact a:hover {
    color: #f0a500;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #999;
    margin: 0.5rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-copy {
    font-size: 0.85rem;
    color: #777;
    margin: 0.5rem 0 0;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-legal {
      justify-content: center;
    }
    .footer-contact {
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
    }
  }

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

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

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

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

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

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

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

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

.post-item {

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

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

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

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

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

        font-size: 0.875rem;
    }

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

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

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

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

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

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

    .post-item .post-item__comment-text {

        margin-bottom: 0.5rem;
    }

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

    }

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

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

    }

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

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

.plans-cv2 {
        padding: clamp(54px, 7vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

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

    .plans-cv2__head {
        margin-bottom: 16px;
    }

    .plans-cv2__head h2 {
        margin: 0;
        font-size: clamp(30px, 5vw, 48px);
    }

    .plans-cv2__head p {
        margin: 8px 0 0;
        opacity: .92;
    }

    .plans-cv2__grid {
        display: grid;
        gap: var(--gap);
        grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    }

    .plans-cv2__card {
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.12);
        padding: var(--space-y) var(--space-x);
        transition: transform var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
    }

    .plans-cv2__card.is-active {
        transform: translateY(-4px);
        border-color: var(--bg-accent);
    }

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

    .plans-cv2__line h3 {
        margin: 0;
    }

    .plans-cv2__line span {
        font-size: .82rem;
        padding: 4px 8px;
        border-radius: 999px;
        background: var(--chip-bg);
    }

    .plans-cv2__list p {
        margin: 10px 0 6px;
        opacity: .92;
    }

    .plans-cv2__card button {
        width: 100%;
        margin-top: 8px;
        border: 0;
        border-radius: var(--radius-sm);
        padding: 9px 12px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

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

footer {
    background: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1.5rem;
    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;
    align-items: flex-start;
    gap: 2rem;
  }
  .footer-left {
    flex: 1 1 250px;
  }
  .footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f0a500;
    letter-spacing: 1px;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .footer-legal a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-legal a:hover {
    color: #f0a500;
  }
  .footer-bottom {
    flex: 0 0 100%;
    margin-top: 1.5rem;
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    text-align: center;
  }
  .footer-contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
  }
  .footer-contact address {
    font-style: normal;
    color: #e0e0e0;
  }
  .footer-contact a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-contact a:hover {
    color: #f0a500;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #999;
    margin: 0.5rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-copy {
    font-size: 0.85rem;
    color: #777;
    margin: 0.5rem 0 0;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-legal {
      justify-content: center;
    }
    .footer-contact {
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
    }
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.blog-card__image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

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

.blog-card__content h3 {
    margin-bottom: var(--space-y);
    color: var(--fg-on-surface);
}

.blog-card__content p {
    color: var(--fg-on-surface-light);
    margin-bottom: var(--space-y);
}

.blog-card__meta {
    color: var(--neutral-600);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

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

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

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

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

    .faq-layout-a .section-head {
        margin-bottom: 14px;
    }

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

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

    .faq-layout-a .list {
        display: grid;
        gap: 10px;
    }

    .faq-layout-a .item {
        border-radius: var(--radius-md);
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, .3);
        background: rgba(255, 255, 255, .1);
    }

    .faq-layout-a .q {
        width: 100%;
        border: 0;
        background: transparent;
        text-align: left;
        padding: 12px;
        font: inherit;
        font-weight: 600;
        cursor: pointer;
    }

    .faq-layout-a .a {
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease);
    }

    .faq-layout-a .a p {
        margin: 0;
        padding: 0 12px 12px;
        opacity: .95;
    }

    .faq-layout-a .item.open .a {
        max-height: 240px;
    }

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

footer {
    background: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1.5rem;
    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;
    align-items: flex-start;
    gap: 2rem;
  }
  .footer-left {
    flex: 1 1 250px;
  }
  .footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f0a500;
    letter-spacing: 1px;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .footer-legal a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-legal a:hover {
    color: #f0a500;
  }
  .footer-bottom {
    flex: 0 0 100%;
    margin-top: 1.5rem;
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    text-align: center;
  }
  .footer-contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
  }
  .footer-contact address {
    font-style: normal;
    color: #e0e0e0;
  }
  .footer-contact a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-contact a:hover {
    color: #f0a500;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #999;
    margin: 0.5rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-copy {
    font-size: 0.85rem;
    color: #777;
    margin: 0.5rem 0 0;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-legal {
      justify-content: center;
    }
    .footer-contact {
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
    }
  }

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

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

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

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

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

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

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

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

.touch-stream {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 3vw, 36px);
        background: linear-gradient(160deg, var(--bg-primary), var(--bg-primary-hover));
        color: var(--fg-on-primary);
    }

    .touch-stream .wrap {
        max-width: 980px;
        margin: 0 auto;
    }

    .touch-stream .touch-header {
        margin-bottom: 12px;
    }

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

    .touch-stream .touhc-header p {
        margin: 10px 0 0;
        opacity: .9;
    }

    .touch-stream .stream {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
        gap: 8px;
    }

    .touch-stream .chip {
        text-decoration: none;
        color: var(--fg-on-primary);
        border: 1px solid rgba(255, 255, 255, .35);
        border-radius: 999px;
        background: rgba(255, 255, 255, .12);
        padding: 10px 12px;
        display: flex;
        gap: 8px;
        align-items: center;
        justify-content: space-between;
    }

    .touch-stream .chip em {
        font-style: normal;
        opacity: .85;
    }

    .touch-stream .foot {
        margin-top: 12px;
    }

    .touch-stream .foot a {
        text-decoration: none;
        color: var(--fg-on-primary);
        border: 1px solid rgba(255, 255, 255, .45);
        border-radius: var(--radius-md);
        padding: 10px 14px;
        display: inline-block;
    }

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

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

    .connect .connect__title {
        font-size: clamp(28px, 5vw, 48px);
        text-align: center;
        margin: 0 0 clamp(48px, 7vw, 72px);
        color: var(--fg-on-page);
    }

    .connect .connect__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
        gap: clamp(20px, 3vw, 28px);
    }

    .connect .connect__item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: clamp(12px, 2vw, 16px);
        padding: var(--space-x);
        background: var(--surface-1);
        border-radius: var(--radius-xl);
        border: 2px solid var(--border-on-surface);
        text-decoration: none;
        color: inherit;
        transition: all 0.3s;
    }

    .connect .connect__item:hover {
        transform: translateY(-6px);
        border-color: var(--bg-accent);
        box-shadow: var(--shadow-md);
    }

    .connect .connect__item span {
        font-size: clamp(17px, 2.8vw, 20px);
        font-weight: 600;
        color: var(--fg-on-surface);
    }

body{margin:0;padding:0;font-family:var(--font-family);box-sizing:border-box;}
*{box-sizing:border-box;}
.contacts-u9{padding:calc(var(--space-y)*2.9) var(--space-x);background:var(--bg-primary);color:var(--fg-on-primary)} .contacts-u9 .shell{max-width:var(--max-w);margin:0 auto;display:grid;gap:var(--gap)} .contacts-u9 h2{margin:0;font-size:clamp(1.85rem,3.6vw,2.8rem);line-height:1.1} .contacts-u9 .sub{margin:.35rem 0 0;opacity:.9;} .contacts-u9 article,.contacts-u9 li{padding:.85rem;border-radius:var(--radius-sm);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);list-style:none} .contacts-u9 p{margin:0} .contacts-u9 a{text-decoration:none;color:inherit;font-weight:700} .contacts-u9 .media{display:grid;grid-template-columns:.95fr 1.05fr;gap:var(--gap)} .contacts-u9 .media img{width:100%;height:100%;min-height:280px;object-fit:cover;border-radius:var(--radius-xl)} .contacts-u9 .grid{display:grid;gap:.5rem;margin-top:.55rem} .contacts-u9 article{transition:transform var(--anim-duration) var(--anim-ease),box-shadow var(--anim-duration) var(--anim-ease)} .contacts-u9 article:hover{transform:translateY(-4px);box-shadow:var(--shadow-md)} @media (max-width:860px){.contacts-u9 .split,.contacts-u9 .media,.contacts-u9 .grid,.contacts-u9 .cards,.contacts-u9 .bento,.contacts-u9 .foot{grid-template-columns:1fr}}

body{margin:0;padding:0;font-family:var(--font-family);font-size:var(--font-size-base);line-height:var(--line-height-base);box-sizing:border-box;background:var(--bg-page);color:var(--fg-on-page)}
*{box-sizing:border-box;}
.frm-lx10{padding:calc(var(--space-y)*2.7) var(--space-x)}
.frm-lx10 .frm-bounds{max-width:var(--max-w);margin:0 auto;display:grid;gap:.8rem}
.frm-lx10 .frm-copy{display:flex;justify-content:space-between;gap:1rem;align-items:end}
.frm-lx10 h2{margin:0;font-size:clamp(1.75rem,3.1vw,2.45rem)}
.frm-lx10 .frm-copy p{margin:0;color:var(--fg-on-surface-light);max-width:55ch}
.frm-lx10 .frm-frame{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:.6rem;padding:.9rem;border-radius:var(--radius-xl);background:var(--surface-2);border:1px solid var(--border-on-surface)}
.frm-lx10 label{grid-column:span 2;display:grid;gap:.22rem;padding:.65rem;border:1px solid var(--border-on-surface-light);border-radius:var(--radius-md);background:var(--surface-1)}
.frm-lx10 label span{font-size:.8rem;font-weight:700;color:var(--fg-on-surface-light)}
.frm-lx10 input,.frm-lx10 textarea{width:100%;padding:.64rem .72rem;border:1px solid var(--border-on-surface-light);border-radius:var(--radius-sm);font:inherit;background:var(--surface-1);color:var(--fg-on-surface)}
.frm-lx10 .frm-wide{grid-column:1/-1}
.frm-lx10 textarea{min-height:130px;resize:vertical}
.frm-lx10 button{grid-column:1/-1;justify-self:start;padding:.82rem 1.15rem;border-radius:var(--radius-md);border:0;background:var(--bg-primary);color:var(--fg-on-primary);font-weight:700;cursor:pointer}
@keyframes frmPulse{0%,100%{box-shadow:0 0 0 0 color-mix(in srgb,var(--ring) 0%, transparent)}50%{box-shadow:0 0 0 6px color-mix(in srgb,var(--ring) 18%, transparent)}}
.frm-lx10 button:focus-visible{animation:frmPulse .8s ease-out 1}
@media (max-width:900px){.frm-lx10 .frm-copy{display:grid}.frm-lx10 .frm-frame{grid-template-columns:1fr}.frm-lx10 label{grid-column:1/-1}}

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

footer {
    background: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1.5rem;
    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;
    align-items: flex-start;
    gap: 2rem;
  }
  .footer-left {
    flex: 1 1 250px;
  }
  .footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f0a500;
    letter-spacing: 1px;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .footer-legal a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-legal a:hover {
    color: #f0a500;
  }
  .footer-bottom {
    flex: 0 0 100%;
    margin-top: 1.5rem;
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    text-align: center;
  }
  .footer-contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
  }
  .footer-contact address {
    font-style: normal;
    color: #e0e0e0;
  }
  .footer-contact a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-contact a:hover {
    color: #f0a500;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #999;
    margin: 0.5rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-copy {
    font-size: 0.85rem;
    color: #777;
    margin: 0.5rem 0 0;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-legal {
      justify-content: center;
    }
    .footer-contact {
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
    }
  }

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

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

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

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

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

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

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

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

body{margin:0;padding:0;font-family:var(--font-family);font-size:var(--font-size-base);line-height:var(--line-height-base);box-sizing:border-box;background:var(--bg-page);color:var(--fg-on-page)}
*{box-sizing:border-box;}
.pol-lx4{padding:calc(var(--space-y)*3) var(--space-x);background:var(--bg-alt)}
.pol-lx4 .pol-max{max-width:var(--max-w);margin:0 auto;display:grid;gap:.82rem}
.pol-lx4 h2{margin:0;font-size:clamp(1.72rem,3.1vw,2.42rem)}
.pol-lx4 .pol-head p{margin:.38rem 0 0;color:var(--fg-on-surface-light)}
.pol-lx4 .pol-stream{display:grid;gap:.54rem}
.pol-lx4 article{padding:.85rem .9rem;border-inline-start:4px solid var(--bg-primary);border-radius:var(--radius-sm);background:var(--surface-1);border:1px solid var(--border-on-surface)}
.pol-lx4 h3{margin:0 0 .24rem;font-size:1rem}
.pol-lx4 article p{margin:0;color:var(--fg-on-surface-light)}
.pol-lx4 .pol-contact{margin:0;padding:.85rem;border-radius:var(--radius-md);background:var(--surface-1);border:1px dashed var(--border-on-surface-light)}

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

footer {
    background: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1.5rem;
    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;
    align-items: flex-start;
    gap: 2rem;
  }
  .footer-left {
    flex: 1 1 250px;
  }
  .footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f0a500;
    letter-spacing: 1px;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .footer-legal a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-legal a:hover {
    color: #f0a500;
  }
  .footer-bottom {
    flex: 0 0 100%;
    margin-top: 1.5rem;
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    text-align: center;
  }
  .footer-contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
  }
  .footer-contact address {
    font-style: normal;
    color: #e0e0e0;
  }
  .footer-contact a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-contact a:hover {
    color: #f0a500;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #999;
    margin: 0.5rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-copy {
    font-size: 0.85rem;
    color: #777;
    margin: 0.5rem 0 0;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-legal {
      justify-content: center;
    }
    .footer-contact {
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
    }
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

footer {
    background: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1.5rem;
    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;
    align-items: flex-start;
    gap: 2rem;
  }
  .footer-left {
    flex: 1 1 250px;
  }
  .footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f0a500;
    letter-spacing: 1px;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .footer-legal a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-legal a:hover {
    color: #f0a500;
  }
  .footer-bottom {
    flex: 0 0 100%;
    margin-top: 1.5rem;
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    text-align: center;
  }
  .footer-contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
  }
  .footer-contact address {
    font-style: normal;
    color: #e0e0e0;
  }
  .footer-contact a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-contact a:hover {
    color: #f0a500;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #999;
    margin: 0.5rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-copy {
    font-size: 0.85rem;
    color: #777;
    margin: 0.5rem 0 0;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-legal {
      justify-content: center;
    }
    .footer-contact {
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
    }
  }

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

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

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

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

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

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

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

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

body{margin:0;padding:0;font-family:var(--font-family);box-sizing:border-box;}
*{box-sizing:border-box;}
.thank-u3{padding:calc(var(--space-y)*2.9) var(--space-x);background:var(--bg-primary);color:var(--fg-on-primary)} .thank-u3 .shell{max-width:var(--max-w);margin:0 auto;display:grid;gap:var(--gap)} .thank-u3 h2{margin:0;font-size:clamp(1.85rem,3.6vw,2.8rem);line-height:1.1} .thank-u3 .sub{margin:.35rem 0 0;opacity:.9;} .thank-u3 article,.thank-u3 li{padding:.85rem;border-radius:var(--radius-sm);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);list-style:none} .thank-u3 p{margin:0} .thank-u3 a{text-decoration:none;color:inherit;font-weight:700} .thank-u3 .hero{padding:1rem;border-radius:var(--radius-lg);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover)} .thank-u3 .stack{display:grid;gap:.45rem;margin-top:.7rem} .thank-u3 .stack p{padding:.65rem;border-radius:var(--radius-sm);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover)} .thank-u3 article{transition:transform var(--anim-duration) var(--anim-ease),box-shadow var(--anim-duration) var(--anim-ease)} .thank-u3 article:hover{transform:translateY(-4px);box-shadow:var(--shadow-md)} @media (max-width:860px){.thank-u3 .split,.thank-u3 .media,.thank-u3 .grid,.thank-u3 .cards,.thank-u3 .bento,.thank-u3 .foot{grid-template-columns:1fr}}

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

footer {
    background: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1.5rem;
    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;
    align-items: flex-start;
    gap: 2rem;
  }
  .footer-left {
    flex: 1 1 250px;
  }
  .footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f0a500;
    letter-spacing: 1px;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .footer-legal a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-legal a:hover {
    color: #f0a500;
  }
  .footer-bottom {
    flex: 0 0 100%;
    margin-top: 1.5rem;
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    text-align: center;
  }
  .footer-contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
  }
  .footer-contact address {
    font-style: normal;
    color: #e0e0e0;
  }
  .footer-contact a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-contact a:hover {
    color: #f0a500;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #999;
    margin: 0.5rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-copy {
    font-size: 0.85rem;
    color: #777;
    margin: 0.5rem 0 0;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-legal {
      justify-content: center;
    }
    .footer-contact {
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
    }
  }

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

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

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

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

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

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

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

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

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

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

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

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

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