:root {
  --font-family: "Comfortaa", sans-serif;
  --font-size-base: 15.4px;
  --line-height-base: 1.83;

  --max-w: 880px;
  --space-x: 1.07rem;
  --space-y: 1.5rem;
  --gap: 0.95rem;

  --radius-xl: 0.69rem;
  --radius-lg: 0.57rem;
  --radius-md: 0.32rem;
  --radius-sm: 0.26rem;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 5px 8px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 20px rgba(0,0,0,0.12);

  --overlay: rgba(15, 23, 42, 0.7);
  --anim-duration: 340ms;
  --anim-ease: cubic-bezier(0.4,0,0.2,1);
  --random-number: 2;

  --brand: #00bcd4;
  --brand-contrast: #ffffff;
  --accent: #00e5ff;
  --accent-contrast: #ffffff;

  --neutral-0: #ffffff;
  --neutral-100: #f1f5f9;
  --neutral-300: #cbd5e1;
  --neutral-600: #64748b;
  --neutral-800: #1e293b;
  --neutral-900: #0f172a;

  --bg-page: #0f172a;
  --fg-on-page: #e2e8f0;

  --bg-alt: #1e293b;
  --fg-on-alt: #94a3b8;

  --surface-1: #1e293b;
  --surface-2: #334155;
  --fg-on-surface: #e2e8f0;
  --border-on-surface: #475569;

  --surface-light: #f8fafc;
  --fg-on-surface-light: #0f172a;
  --border-on-surface-light: #cbd5e1;

  --bg-primary: #00bcd4;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #00acc1;
  --ring: #00e5ff;

  --bg-accent: #00bcd4;
  --fg-on-accent: #ffffff;
  --bg-accent-hover: #00acc1;

  --link: #00e5ff;
  --link-hover: #00bcd4;

  --gradient-hero: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  --gradient-accent: linear-gradient(135deg, #00bcd4 0%, #00e5ff 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-color: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    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);
  }

  .header__left {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) * 2);
  }

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

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

  .header__nav {
    display: flex;
  }

  .header__menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: calc(var(--gap) * 1.5);
  }

  .header__menu-link {
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: var(--space-y) 0;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .header__menu-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width var(--anim-duration) var(--anim-ease);
  }

  .header__menu-link:hover {
    color: var(--accent);
  }

  .header__menu-link:hover::after {
    width: 100%;
  }

  .header__right {
    display: flex;
    align-items: center;
    gap: var(--gap);
  }

  .header__contact {
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }

  .header__contact-text {
    font-size: calc(var(--font-size-base) * 0.875);
    color: var(--neutral-600);
    line-height: var(--line-height-base);
  }

  .header__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.25rem;
    background-color: var(--accent);
    color: var(--fg-on-accent);
    font-size: calc(var(--font-size-base) * 0.875);
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-lg);
    transition: background-color var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

  .header__cta:hover {
    background-color: var(--bg-accent-hover);
    transform: translateY(-1px);
  }

  .header__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
    border-radius: var(--radius-sm);
    transition: background-color var(--anim-duration) var(--anim-ease);
  }

  .header__burger:hover {
    background-color: var(--btn-ghost-bg-hover);
  }

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

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

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

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

  @media (max-width: 767px) {
    .header__inner {
      flex-wrap: wrap;
    }

    .header__nav {
      display: none;
      width: 100%;
      order: 3;
      padding-top: var(--space-y);
      border-top: 1px solid var(--border-on-surface);
      margin-top: var(--space-y);
    }

    .header__nav.open {
      display: block;
    }

    .header__menu {
      flex-direction: column;
      gap: 0;
    }

    .header__menu-item {
      border-bottom: 1px solid var(--border-on-surface-light);
    }

    .header__menu-link {
      display: block;
      padding: 0.75rem 0;
    }

    .header__menu-link::after {
      display: none;
    }

    .header__right {
      margin-left: auto;
    }

    .header__contact {
      display: none;
    }

    .header__cta {
      font-size: calc(var(--font-size-base) * 0.8125);
      padding: 0.375rem 1rem;
    }

    .header__burger {
      display: flex;
    }
  }

  @media (min-width: 768px) {
    .header__burger {
      display: none;
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
  }
  .footer-logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f39c12;
    text-decoration: none;
  }
  .footer-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    padding: 0;
    margin: 0;
  }
  .footer-nav a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f39c12;
  }
  .footer-bottom {
    border-top: 1px solid #7f8c8d;
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-contact {
    font-style: normal;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.95rem;
  }
  .contact-item a {
    color: #f39c12;
    text-decoration: none;
  }
  .contact-item a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    text-align: center;
  }
  .disclaimer {
    font-size: 0.85rem;
    color: #95a5a6;
    margin-bottom: 0.5rem;
    line-height: 1.4;
  }
  .legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .legal-links a {
    color: #f39c12;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .legal-links a:hover {
    text-decoration: underline;
  }
  .copyright {
    font-size: 0.85rem;
    color: #95a5a6;
    margin: 0;
  }
  @media (min-width: 768px) {
    .footer-top {
      flex-direction: row;
      justify-content: space-between;
    }
    .footer-bottom {
      flex-direction: row;
      justify-content: space-between;
      align-items: flex-start;
    }
    .footer-contact {
      justify-content: flex-start;
    }
    .footer-legal {
      text-align: right;
    }
  }

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

    .cookie-lv12__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px var(--gap);
        align-items: center;
    }

    .cookie-lv12__title {
        font-weight: 700;
        color: var(--fg-on-surface);
    }

    .cookie-lv12 p {
        margin: 0;
        grid-column: 1 / 2;
        color: var(--fg-muted);
    }

    .cookie-lv12__actions {
        grid-row: 1 / 3;
        grid-column: 2 / 3;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

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

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

    @media (max-width: 760px) {
        .cookie-lv12__wrap {
            grid-template-columns: 1fr;
        }

        .cookie-lv12 p,
        .cookie-lv12__actions {
            grid-column: auto;
            grid-row: auto;
        }

        .cookie-lv12__actions {
            justify-content: flex-start;
        }
    }

.hero {
        position: relative;
        min-height: 70vh;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: var(--fg-on-primary);
        overflow: hidden;
    }

    .hero__bg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -2;
    }

    .hero__overlay {
        position: absolute;
        inset: 0;
        background: var(--gradient-hero);
        opacity: 0.7;
        z-index: -1;
    }

    .hero__content {
        max-width: 900px;
        padding: clamp(16px, 3vw, 32px);
        z-index: 1;
    }

    .hero h1 {
        font-size: clamp(28px, 5vw, 48px);
        font-weight: 700;
        margin-bottom: var(--space-y);
        text-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    }

    .hero p {
        font-size: clamp(16px, 2.5vw, 20px);
        font-weight: 400;
        margin: 0 auto calc(var(--space-y) * 1.5);
        max-width: 700px;
    }

    .hero__actions {
        display: flex;
        gap: var(--gap);
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero__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 transparent;
        font-size: 1rem;
    }

    .hero__btn--primary {
        background-color: var(--bg-primary);
        color: var(--fg-on-primary);
        border-color: var(--bg-primary);
    }

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

    .hero__btn--outline {
        background-color: transparent;
        color: var(--fg-on-primary);
        border-color: var(--fg-on-primary);
    }

    .hero__btn--outline:hover {
        background-color: var(--btn-ghost-bg-hover);
    }

.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-alt {

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

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

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

    @keyframes backgroundPulse {
        0%, 100% {

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

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

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

    }

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

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

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

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

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

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

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

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

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

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

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

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

    @keyframes numberPulse {
        0%, 100% {

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

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

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

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

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

.nfsocial-v10 {
        padding: clamp(48px, 8vw, 80px) 0;
        background: var(--surface-1);
    }

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

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

    .nfsocial-v10__text {
        border-left: 2px solid var(--border-on-surface);
        padding-left: var(--space-x);
    }

    .nfsocial-v10__text:first-child {
        border-left: 0;
        padding-left: 0;
    }

    .nfsocial-v10__text h2 {
        margin-bottom: var(--space-y);
        color: var(--fg-on-page);
    }

    .nfsocial-v10__text p {
        margin-bottom: var(--space-y);
        color: var(--neutral-600);
    }

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

        .nfsocial-v10__text {
            border-left: 0;
            padding-left: 0;
        }
    }

.header {
    background-color: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    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);
  }

  .header__left {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) * 2);
  }

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

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

  .header__nav {
    display: flex;
  }

  .header__menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: calc(var(--gap) * 1.5);
  }

  .header__menu-link {
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: var(--space-y) 0;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .header__menu-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width var(--anim-duration) var(--anim-ease);
  }

  .header__menu-link:hover {
    color: var(--accent);
  }

  .header__menu-link:hover::after {
    width: 100%;
  }

  .header__right {
    display: flex;
    align-items: center;
    gap: var(--gap);
  }

  .header__contact {
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }

  .header__contact-text {
    font-size: calc(var(--font-size-base) * 0.875);
    color: var(--neutral-600);
    line-height: var(--line-height-base);
  }

  .header__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.25rem;
    background-color: var(--accent);
    color: var(--fg-on-accent);
    font-size: calc(var(--font-size-base) * 0.875);
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-lg);
    transition: background-color var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

  .header__cta:hover {
    background-color: var(--bg-accent-hover);
    transform: translateY(-1px);
  }

  .header__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
    border-radius: var(--radius-sm);
    transition: background-color var(--anim-duration) var(--anim-ease);
  }

  .header__burger:hover {
    background-color: var(--btn-ghost-bg-hover);
  }

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

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

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

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

  @media (max-width: 767px) {
    .header__inner {
      flex-wrap: wrap;
    }

    .header__nav {
      display: none;
      width: 100%;
      order: 3;
      padding-top: var(--space-y);
      border-top: 1px solid var(--border-on-surface);
      margin-top: var(--space-y);
    }

    .header__nav.open {
      display: block;
    }

    .header__menu {
      flex-direction: column;
      gap: 0;
    }

    .header__menu-item {
      border-bottom: 1px solid var(--border-on-surface-light);
    }

    .header__menu-link {
      display: block;
      padding: 0.75rem 0;
    }

    .header__menu-link::after {
      display: none;
    }

    .header__right {
      margin-left: auto;
    }

    .header__contact {
      display: none;
    }

    .header__cta {
      font-size: calc(var(--font-size-base) * 0.8125);
      padding: 0.375rem 1rem;
    }

    .header__burger {
      display: flex;
    }
  }

  @media (min-width: 768px) {
    .header__burger {
      display: none;
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
  }
  .footer-logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f39c12;
    text-decoration: none;
  }
  .footer-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    padding: 0;
    margin: 0;
  }
  .footer-nav a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f39c12;
  }
  .footer-bottom {
    border-top: 1px solid #7f8c8d;
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-contact {
    font-style: normal;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.95rem;
  }
  .contact-item a {
    color: #f39c12;
    text-decoration: none;
  }
  .contact-item a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    text-align: center;
  }
  .disclaimer {
    font-size: 0.85rem;
    color: #95a5a6;
    margin-bottom: 0.5rem;
    line-height: 1.4;
  }
  .legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .legal-links a {
    color: #f39c12;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .legal-links a:hover {
    text-decoration: underline;
  }
  .copyright {
    font-size: 0.85rem;
    color: #95a5a6;
    margin: 0;
  }
  @media (min-width: 768px) {
    .footer-top {
      flex-direction: row;
      justify-content: space-between;
    }
    .footer-bottom {
      flex-direction: row;
      justify-content: space-between;
      align-items: flex-start;
    }
    .footer-contact {
      justify-content: flex-start;
    }
    .footer-legal {
      text-align: right;
    }
  }

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

    .cookie-lv12__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px var(--gap);
        align-items: center;
    }

    .cookie-lv12__title {
        font-weight: 700;
        color: var(--fg-on-surface);
    }

    .cookie-lv12 p {
        margin: 0;
        grid-column: 1 / 2;
        color: var(--fg-muted);
    }

    .cookie-lv12__actions {
        grid-row: 1 / 3;
        grid-column: 2 / 3;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

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

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

    @media (max-width: 760px) {
        .cookie-lv12__wrap {
            grid-template-columns: 1fr;
        }

        .cookie-lv12 p,
        .cookie-lv12__actions {
            grid-column: auto;
            grid-row: auto;
        }

        .cookie-lv12__actions {
            justify-content: flex-start;
        }
    }

.post-list--light-v6 {

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

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

.post-list__inner h2 {
    margin: 0 0 10px;
    font-size: clamp(22px,3.5vw,28px);
}

.post-list__list {
    margin: 0;
    padding: 0;
    list-style: none;
    border-radius: var(--radius-xl);
    background: var(--bg-page);
    border: 1px solid var(--border-on-surface-light);
    overflow: hidden;
}

.post-list__row {
    display: grid;
    grid-template-columns: minmax(0,1.8fr) auto;
    gap: 12px;
    padding: 8px 12px;
    border-top: 1px solid var(--border-on-surface-light);
}

.post-list__row:first-child {
    border-top: none;
}

.post-list__row-title {
    font-size: 0.9rem;
    color: var(--fg-on-page);
}

.post-list__row-meta {
    font-size: 0.85rem;
    color: var(--neutral-600);
}

.header {
    background-color: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    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);
  }

  .header__left {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) * 2);
  }

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

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

  .header__nav {
    display: flex;
  }

  .header__menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: calc(var(--gap) * 1.5);
  }

  .header__menu-link {
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: var(--space-y) 0;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .header__menu-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width var(--anim-duration) var(--anim-ease);
  }

  .header__menu-link:hover {
    color: var(--accent);
  }

  .header__menu-link:hover::after {
    width: 100%;
  }

  .header__right {
    display: flex;
    align-items: center;
    gap: var(--gap);
  }

  .header__contact {
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }

  .header__contact-text {
    font-size: calc(var(--font-size-base) * 0.875);
    color: var(--neutral-600);
    line-height: var(--line-height-base);
  }

  .header__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.25rem;
    background-color: var(--accent);
    color: var(--fg-on-accent);
    font-size: calc(var(--font-size-base) * 0.875);
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-lg);
    transition: background-color var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

  .header__cta:hover {
    background-color: var(--bg-accent-hover);
    transform: translateY(-1px);
  }

  .header__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
    border-radius: var(--radius-sm);
    transition: background-color var(--anim-duration) var(--anim-ease);
  }

  .header__burger:hover {
    background-color: var(--btn-ghost-bg-hover);
  }

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

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

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

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

  @media (max-width: 767px) {
    .header__inner {
      flex-wrap: wrap;
    }

    .header__nav {
      display: none;
      width: 100%;
      order: 3;
      padding-top: var(--space-y);
      border-top: 1px solid var(--border-on-surface);
      margin-top: var(--space-y);
    }

    .header__nav.open {
      display: block;
    }

    .header__menu {
      flex-direction: column;
      gap: 0;
    }

    .header__menu-item {
      border-bottom: 1px solid var(--border-on-surface-light);
    }

    .header__menu-link {
      display: block;
      padding: 0.75rem 0;
    }

    .header__menu-link::after {
      display: none;
    }

    .header__right {
      margin-left: auto;
    }

    .header__contact {
      display: none;
    }

    .header__cta {
      font-size: calc(var(--font-size-base) * 0.8125);
      padding: 0.375rem 1rem;
    }

    .header__burger {
      display: flex;
    }
  }

  @media (min-width: 768px) {
    .header__burger {
      display: none;
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
  }
  .footer-logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f39c12;
    text-decoration: none;
  }
  .footer-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    padding: 0;
    margin: 0;
  }
  .footer-nav a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f39c12;
  }
  .footer-bottom {
    border-top: 1px solid #7f8c8d;
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-contact {
    font-style: normal;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.95rem;
  }
  .contact-item a {
    color: #f39c12;
    text-decoration: none;
  }
  .contact-item a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    text-align: center;
  }
  .disclaimer {
    font-size: 0.85rem;
    color: #95a5a6;
    margin-bottom: 0.5rem;
    line-height: 1.4;
  }
  .legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .legal-links a {
    color: #f39c12;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .legal-links a:hover {
    text-decoration: underline;
  }
  .copyright {
    font-size: 0.85rem;
    color: #95a5a6;
    margin: 0;
  }
  @media (min-width: 768px) {
    .footer-top {
      flex-direction: row;
      justify-content: space-between;
    }
    .footer-bottom {
      flex-direction: row;
      justify-content: space-between;
      align-items: flex-start;
    }
    .footer-contact {
      justify-content: flex-start;
    }
    .footer-legal {
      text-align: right;
    }
  }

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

    .cookie-lv12__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px var(--gap);
        align-items: center;
    }

    .cookie-lv12__title {
        font-weight: 700;
        color: var(--fg-on-surface);
    }

    .cookie-lv12 p {
        margin: 0;
        grid-column: 1 / 2;
        color: var(--fg-muted);
    }

    .cookie-lv12__actions {
        grid-row: 1 / 3;
        grid-column: 2 / 3;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

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

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

    @media (max-width: 760px) {
        .cookie-lv12__wrap {
            grid-template-columns: 1fr;
        }

        .cookie-lv12 p,
        .cookie-lv12__actions {
            grid-column: auto;
            grid-row: auto;
        }

        .cookie-lv12__actions {
            justify-content: flex-start;
        }
    }

.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: 1px solid var(--fg-on-page);
        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(--fg-on-page);
        color: var(--bg-page);
        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-color: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    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);
  }

  .header__left {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) * 2);
  }

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

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

  .header__nav {
    display: flex;
  }

  .header__menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: calc(var(--gap) * 1.5);
  }

  .header__menu-link {
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: var(--space-y) 0;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .header__menu-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width var(--anim-duration) var(--anim-ease);
  }

  .header__menu-link:hover {
    color: var(--accent);
  }

  .header__menu-link:hover::after {
    width: 100%;
  }

  .header__right {
    display: flex;
    align-items: center;
    gap: var(--gap);
  }

  .header__contact {
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }

  .header__contact-text {
    font-size: calc(var(--font-size-base) * 0.875);
    color: var(--neutral-600);
    line-height: var(--line-height-base);
  }

  .header__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.25rem;
    background-color: var(--accent);
    color: var(--fg-on-accent);
    font-size: calc(var(--font-size-base) * 0.875);
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-lg);
    transition: background-color var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

  .header__cta:hover {
    background-color: var(--bg-accent-hover);
    transform: translateY(-1px);
  }

  .header__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
    border-radius: var(--radius-sm);
    transition: background-color var(--anim-duration) var(--anim-ease);
  }

  .header__burger:hover {
    background-color: var(--btn-ghost-bg-hover);
  }

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

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

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

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

  @media (max-width: 767px) {
    .header__inner {
      flex-wrap: wrap;
    }

    .header__nav {
      display: none;
      width: 100%;
      order: 3;
      padding-top: var(--space-y);
      border-top: 1px solid var(--border-on-surface);
      margin-top: var(--space-y);
    }

    .header__nav.open {
      display: block;
    }

    .header__menu {
      flex-direction: column;
      gap: 0;
    }

    .header__menu-item {
      border-bottom: 1px solid var(--border-on-surface-light);
    }

    .header__menu-link {
      display: block;
      padding: 0.75rem 0;
    }

    .header__menu-link::after {
      display: none;
    }

    .header__right {
      margin-left: auto;
    }

    .header__contact {
      display: none;
    }

    .header__cta {
      font-size: calc(var(--font-size-base) * 0.8125);
      padding: 0.375rem 1rem;
    }

    .header__burger {
      display: flex;
    }
  }

  @media (min-width: 768px) {
    .header__burger {
      display: none;
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
  }
  .footer-logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f39c12;
    text-decoration: none;
  }
  .footer-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    padding: 0;
    margin: 0;
  }
  .footer-nav a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f39c12;
  }
  .footer-bottom {
    border-top: 1px solid #7f8c8d;
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-contact {
    font-style: normal;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.95rem;
  }
  .contact-item a {
    color: #f39c12;
    text-decoration: none;
  }
  .contact-item a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    text-align: center;
  }
  .disclaimer {
    font-size: 0.85rem;
    color: #95a5a6;
    margin-bottom: 0.5rem;
    line-height: 1.4;
  }
  .legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .legal-links a {
    color: #f39c12;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .legal-links a:hover {
    text-decoration: underline;
  }
  .copyright {
    font-size: 0.85rem;
    color: #95a5a6;
    margin: 0;
  }
  @media (min-width: 768px) {
    .footer-top {
      flex-direction: row;
      justify-content: space-between;
    }
    .footer-bottom {
      flex-direction: row;
      justify-content: space-between;
      align-items: flex-start;
    }
    .footer-contact {
      justify-content: flex-start;
    }
    .footer-legal {
      text-align: right;
    }
  }

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

    .cookie-lv12__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px var(--gap);
        align-items: center;
    }

    .cookie-lv12__title {
        font-weight: 700;
        color: var(--fg-on-surface);
    }

    .cookie-lv12 p {
        margin: 0;
        grid-column: 1 / 2;
        color: var(--fg-muted);
    }

    .cookie-lv12__actions {
        grid-row: 1 / 3;
        grid-column: 2 / 3;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

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

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

    @media (max-width: 760px) {
        .cookie-lv12__wrap {
            grid-template-columns: 1fr;
        }

        .cookie-lv12 p,
        .cookie-lv12__actions {
            grid-column: auto;
            grid-row: auto;
        }

        .cookie-lv12__actions {
            justify-content: flex-start;
        }
    }

.post-item {

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

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

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

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

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

        font-size: 0.875rem;
    }

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

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

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

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

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

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

    .post-item .post-item__comment-text {

        margin-bottom: 0.5rem;
    }

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

    }

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

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

    }

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

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

.header {
    background-color: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    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);
  }

  .header__left {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) * 2);
  }

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

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

  .header__nav {
    display: flex;
  }

  .header__menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: calc(var(--gap) * 1.5);
  }

  .header__menu-link {
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: var(--space-y) 0;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .header__menu-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width var(--anim-duration) var(--anim-ease);
  }

  .header__menu-link:hover {
    color: var(--accent);
  }

  .header__menu-link:hover::after {
    width: 100%;
  }

  .header__right {
    display: flex;
    align-items: center;
    gap: var(--gap);
  }

  .header__contact {
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }

  .header__contact-text {
    font-size: calc(var(--font-size-base) * 0.875);
    color: var(--neutral-600);
    line-height: var(--line-height-base);
  }

  .header__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.25rem;
    background-color: var(--accent);
    color: var(--fg-on-accent);
    font-size: calc(var(--font-size-base) * 0.875);
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-lg);
    transition: background-color var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

  .header__cta:hover {
    background-color: var(--bg-accent-hover);
    transform: translateY(-1px);
  }

  .header__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
    border-radius: var(--radius-sm);
    transition: background-color var(--anim-duration) var(--anim-ease);
  }

  .header__burger:hover {
    background-color: var(--btn-ghost-bg-hover);
  }

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

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

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

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

  @media (max-width: 767px) {
    .header__inner {
      flex-wrap: wrap;
    }

    .header__nav {
      display: none;
      width: 100%;
      order: 3;
      padding-top: var(--space-y);
      border-top: 1px solid var(--border-on-surface);
      margin-top: var(--space-y);
    }

    .header__nav.open {
      display: block;
    }

    .header__menu {
      flex-direction: column;
      gap: 0;
    }

    .header__menu-item {
      border-bottom: 1px solid var(--border-on-surface-light);
    }

    .header__menu-link {
      display: block;
      padding: 0.75rem 0;
    }

    .header__menu-link::after {
      display: none;
    }

    .header__right {
      margin-left: auto;
    }

    .header__contact {
      display: none;
    }

    .header__cta {
      font-size: calc(var(--font-size-base) * 0.8125);
      padding: 0.375rem 1rem;
    }

    .header__burger {
      display: flex;
    }
  }

  @media (min-width: 768px) {
    .header__burger {
      display: none;
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
  }
  .footer-logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f39c12;
    text-decoration: none;
  }
  .footer-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    padding: 0;
    margin: 0;
  }
  .footer-nav a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f39c12;
  }
  .footer-bottom {
    border-top: 1px solid #7f8c8d;
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-contact {
    font-style: normal;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.95rem;
  }
  .contact-item a {
    color: #f39c12;
    text-decoration: none;
  }
  .contact-item a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    text-align: center;
  }
  .disclaimer {
    font-size: 0.85rem;
    color: #95a5a6;
    margin-bottom: 0.5rem;
    line-height: 1.4;
  }
  .legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .legal-links a {
    color: #f39c12;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .legal-links a:hover {
    text-decoration: underline;
  }
  .copyright {
    font-size: 0.85rem;
    color: #95a5a6;
    margin: 0;
  }
  @media (min-width: 768px) {
    .footer-top {
      flex-direction: row;
      justify-content: space-between;
    }
    .footer-bottom {
      flex-direction: row;
      justify-content: space-between;
      align-items: flex-start;
    }
    .footer-contact {
      justify-content: flex-start;
    }
    .footer-legal {
      text-align: right;
    }
  }

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

    .cookie-lv12__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px var(--gap);
        align-items: center;
    }

    .cookie-lv12__title {
        font-weight: 700;
        color: var(--fg-on-surface);
    }

    .cookie-lv12 p {
        margin: 0;
        grid-column: 1 / 2;
        color: var(--fg-muted);
    }

    .cookie-lv12__actions {
        grid-row: 1 / 3;
        grid-column: 2 / 3;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

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

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

    @media (max-width: 760px) {
        .cookie-lv12__wrap {
            grid-template-columns: 1fr;
        }

        .cookie-lv12 p,
        .cookie-lv12__actions {
            grid-column: auto;
            grid-row: auto;
        }

        .cookie-lv12__actions {
            justify-content: flex-start;
        }
    }

.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: 1px solid var(--fg-on-page);
        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(--fg-on-page);
        color: var(--bg-page);
        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);
    }

.clar-ux4{padding:clamp(20px,3vw,44px);background:var(--bg-primary);color:var(--fg-on-primary)}.clar-ux4__wrap{max-width:var(--max-w);margin:0 auto}.clar-ux4 h2{margin:0;font-size:clamp(24px,4vw,40px)}.clar-ux4>div>p{margin:8px 0 12px;color:rgba(255,255,255,.86)}.clar-ux4__stack{display:grid;gap:10px}.clar-ux4__stack article{border:1px solid rgba(255,255,255,.28);border-radius:var(--radius-lg);background:rgba(255,255,255,.12)}.clar-ux4__stack button{width:100%;border:0;background:transparent;color:inherit;text-align:left;padding:12px;font:inherit;font-weight:700}.clar-ux4__stack p{margin:0;max-height:0;overflow:hidden;padding:0 12px;transition:max-height var(--anim-duration) var(--anim-ease),padding var(--anim-duration) var(--anim-ease)}.clar-ux4__stack article.is-open p{max-height:220px;padding:0 12px 12px}

.header {
    background-color: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    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);
  }

  .header__left {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) * 2);
  }

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

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

  .header__nav {
    display: flex;
  }

  .header__menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: calc(var(--gap) * 1.5);
  }

  .header__menu-link {
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: var(--space-y) 0;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .header__menu-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width var(--anim-duration) var(--anim-ease);
  }

  .header__menu-link:hover {
    color: var(--accent);
  }

  .header__menu-link:hover::after {
    width: 100%;
  }

  .header__right {
    display: flex;
    align-items: center;
    gap: var(--gap);
  }

  .header__contact {
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }

  .header__contact-text {
    font-size: calc(var(--font-size-base) * 0.875);
    color: var(--neutral-600);
    line-height: var(--line-height-base);
  }

  .header__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.25rem;
    background-color: var(--accent);
    color: var(--fg-on-accent);
    font-size: calc(var(--font-size-base) * 0.875);
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-lg);
    transition: background-color var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

  .header__cta:hover {
    background-color: var(--bg-accent-hover);
    transform: translateY(-1px);
  }

  .header__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
    border-radius: var(--radius-sm);
    transition: background-color var(--anim-duration) var(--anim-ease);
  }

  .header__burger:hover {
    background-color: var(--btn-ghost-bg-hover);
  }

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

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

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

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

  @media (max-width: 767px) {
    .header__inner {
      flex-wrap: wrap;
    }

    .header__nav {
      display: none;
      width: 100%;
      order: 3;
      padding-top: var(--space-y);
      border-top: 1px solid var(--border-on-surface);
      margin-top: var(--space-y);
    }

    .header__nav.open {
      display: block;
    }

    .header__menu {
      flex-direction: column;
      gap: 0;
    }

    .header__menu-item {
      border-bottom: 1px solid var(--border-on-surface-light);
    }

    .header__menu-link {
      display: block;
      padding: 0.75rem 0;
    }

    .header__menu-link::after {
      display: none;
    }

    .header__right {
      margin-left: auto;
    }

    .header__contact {
      display: none;
    }

    .header__cta {
      font-size: calc(var(--font-size-base) * 0.8125);
      padding: 0.375rem 1rem;
    }

    .header__burger {
      display: flex;
    }
  }

  @media (min-width: 768px) {
    .header__burger {
      display: none;
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
  }
  .footer-logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f39c12;
    text-decoration: none;
  }
  .footer-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    padding: 0;
    margin: 0;
  }
  .footer-nav a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f39c12;
  }
  .footer-bottom {
    border-top: 1px solid #7f8c8d;
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-contact {
    font-style: normal;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.95rem;
  }
  .contact-item a {
    color: #f39c12;
    text-decoration: none;
  }
  .contact-item a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    text-align: center;
  }
  .disclaimer {
    font-size: 0.85rem;
    color: #95a5a6;
    margin-bottom: 0.5rem;
    line-height: 1.4;
  }
  .legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .legal-links a {
    color: #f39c12;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .legal-links a:hover {
    text-decoration: underline;
  }
  .copyright {
    font-size: 0.85rem;
    color: #95a5a6;
    margin: 0;
  }
  @media (min-width: 768px) {
    .footer-top {
      flex-direction: row;
      justify-content: space-between;
    }
    .footer-bottom {
      flex-direction: row;
      justify-content: space-between;
      align-items: flex-start;
    }
    .footer-contact {
      justify-content: flex-start;
    }
    .footer-legal {
      text-align: right;
    }
  }

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

    .cookie-lv12__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px var(--gap);
        align-items: center;
    }

    .cookie-lv12__title {
        font-weight: 700;
        color: var(--fg-on-surface);
    }

    .cookie-lv12 p {
        margin: 0;
        grid-column: 1 / 2;
        color: var(--fg-muted);
    }

    .cookie-lv12__actions {
        grid-row: 1 / 3;
        grid-column: 2 / 3;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

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

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

    @media (max-width: 760px) {
        .cookie-lv12__wrap {
            grid-template-columns: 1fr;
        }

        .cookie-lv12 p,
        .cookie-lv12__actions {
            grid-column: auto;
            grid-row: auto;
        }

        .cookie-lv12__actions {
            justify-content: flex-start;
        }
    }

.article-list {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.faq-layout-d {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: white;
        color: black;
    }

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

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

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

    .faq-layout-d .section-head p {
        margin: 10px auto 0;
        max-width: 68ch;
    }

    .faq-layout-d .cards {
        display: grid;
        gap: var(--gap);
        grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    }

    .faq-layout-d .card {
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, .22);
        background: var(--accent);
        color: var(--accent-contrast);
        padding: var(--space-y) var(--space-x);
    }

    .faq-layout-d .card h3 {
        margin: 0;
        font-size: 1.05rem;
    }

    .faq-layout-d .card p {
        margin: 9px 0 0;
        color: var(--neutral-100);
    }

.clar-ux4{padding:clamp(20px,3vw,44px);background:var(--bg-primary);color:var(--fg-on-primary)}.clar-ux4__wrap{max-width:var(--max-w);margin:0 auto}.clar-ux4 h2{margin:0;font-size:clamp(24px,4vw,40px)}.clar-ux4>div>p{margin:8px 0 12px;color:rgba(255,255,255,.86)}.clar-ux4__stack{display:grid;gap:10px}.clar-ux4__stack article{border:1px solid rgba(255,255,255,.28);border-radius:var(--radius-lg);background:rgba(255,255,255,.12)}.clar-ux4__stack button{width:100%;border:0;background:transparent;color:inherit;text-align:left;padding:12px;font:inherit;font-weight:700}.clar-ux4__stack p{margin:0;max-height:0;overflow:hidden;padding:0 12px;transition:max-height var(--anim-duration) var(--anim-ease),padding var(--anim-duration) var(--anim-ease)}.clar-ux4__stack article.is-open p{max-height:220px;padding:0 12px 12px}

.header {
    background-color: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    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);
  }

  .header__left {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) * 2);
  }

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

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

  .header__nav {
    display: flex;
  }

  .header__menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: calc(var(--gap) * 1.5);
  }

  .header__menu-link {
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: var(--space-y) 0;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .header__menu-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width var(--anim-duration) var(--anim-ease);
  }

  .header__menu-link:hover {
    color: var(--accent);
  }

  .header__menu-link:hover::after {
    width: 100%;
  }

  .header__right {
    display: flex;
    align-items: center;
    gap: var(--gap);
  }

  .header__contact {
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }

  .header__contact-text {
    font-size: calc(var(--font-size-base) * 0.875);
    color: var(--neutral-600);
    line-height: var(--line-height-base);
  }

  .header__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.25rem;
    background-color: var(--accent);
    color: var(--fg-on-accent);
    font-size: calc(var(--font-size-base) * 0.875);
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-lg);
    transition: background-color var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

  .header__cta:hover {
    background-color: var(--bg-accent-hover);
    transform: translateY(-1px);
  }

  .header__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
    border-radius: var(--radius-sm);
    transition: background-color var(--anim-duration) var(--anim-ease);
  }

  .header__burger:hover {
    background-color: var(--btn-ghost-bg-hover);
  }

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

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

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

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

  @media (max-width: 767px) {
    .header__inner {
      flex-wrap: wrap;
    }

    .header__nav {
      display: none;
      width: 100%;
      order: 3;
      padding-top: var(--space-y);
      border-top: 1px solid var(--border-on-surface);
      margin-top: var(--space-y);
    }

    .header__nav.open {
      display: block;
    }

    .header__menu {
      flex-direction: column;
      gap: 0;
    }

    .header__menu-item {
      border-bottom: 1px solid var(--border-on-surface-light);
    }

    .header__menu-link {
      display: block;
      padding: 0.75rem 0;
    }

    .header__menu-link::after {
      display: none;
    }

    .header__right {
      margin-left: auto;
    }

    .header__contact {
      display: none;
    }

    .header__cta {
      font-size: calc(var(--font-size-base) * 0.8125);
      padding: 0.375rem 1rem;
    }

    .header__burger {
      display: flex;
    }
  }

  @media (min-width: 768px) {
    .header__burger {
      display: none;
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
  }
  .footer-logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f39c12;
    text-decoration: none;
  }
  .footer-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    padding: 0;
    margin: 0;
  }
  .footer-nav a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f39c12;
  }
  .footer-bottom {
    border-top: 1px solid #7f8c8d;
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-contact {
    font-style: normal;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.95rem;
  }
  .contact-item a {
    color: #f39c12;
    text-decoration: none;
  }
  .contact-item a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    text-align: center;
  }
  .disclaimer {
    font-size: 0.85rem;
    color: #95a5a6;
    margin-bottom: 0.5rem;
    line-height: 1.4;
  }
  .legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .legal-links a {
    color: #f39c12;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .legal-links a:hover {
    text-decoration: underline;
  }
  .copyright {
    font-size: 0.85rem;
    color: #95a5a6;
    margin: 0;
  }
  @media (min-width: 768px) {
    .footer-top {
      flex-direction: row;
      justify-content: space-between;
    }
    .footer-bottom {
      flex-direction: row;
      justify-content: space-between;
      align-items: flex-start;
    }
    .footer-contact {
      justify-content: flex-start;
    }
    .footer-legal {
      text-align: right;
    }
  }

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

    .cookie-lv12__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px var(--gap);
        align-items: center;
    }

    .cookie-lv12__title {
        font-weight: 700;
        color: var(--fg-on-surface);
    }

    .cookie-lv12 p {
        margin: 0;
        grid-column: 1 / 2;
        color: var(--fg-muted);
    }

    .cookie-lv12__actions {
        grid-row: 1 / 3;
        grid-column: 2 / 3;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

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

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

    @media (max-width: 760px) {
        .cookie-lv12__wrap {
            grid-template-columns: 1fr;
        }

        .cookie-lv12 p,
        .cookie-lv12__actions {
            grid-column: auto;
            grid-row: auto;
        }

        .cookie-lv12__actions {
            justify-content: flex-start;
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

.header {
    background-color: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    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);
  }

  .header__left {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) * 2);
  }

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

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

  .header__nav {
    display: flex;
  }

  .header__menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: calc(var(--gap) * 1.5);
  }

  .header__menu-link {
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: var(--space-y) 0;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .header__menu-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width var(--anim-duration) var(--anim-ease);
  }

  .header__menu-link:hover {
    color: var(--accent);
  }

  .header__menu-link:hover::after {
    width: 100%;
  }

  .header__right {
    display: flex;
    align-items: center;
    gap: var(--gap);
  }

  .header__contact {
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }

  .header__contact-text {
    font-size: calc(var(--font-size-base) * 0.875);
    color: var(--neutral-600);
    line-height: var(--line-height-base);
  }

  .header__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.25rem;
    background-color: var(--accent);
    color: var(--fg-on-accent);
    font-size: calc(var(--font-size-base) * 0.875);
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-lg);
    transition: background-color var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

  .header__cta:hover {
    background-color: var(--bg-accent-hover);
    transform: translateY(-1px);
  }

  .header__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
    border-radius: var(--radius-sm);
    transition: background-color var(--anim-duration) var(--anim-ease);
  }

  .header__burger:hover {
    background-color: var(--btn-ghost-bg-hover);
  }

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

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

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

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

  @media (max-width: 767px) {
    .header__inner {
      flex-wrap: wrap;
    }

    .header__nav {
      display: none;
      width: 100%;
      order: 3;
      padding-top: var(--space-y);
      border-top: 1px solid var(--border-on-surface);
      margin-top: var(--space-y);
    }

    .header__nav.open {
      display: block;
    }

    .header__menu {
      flex-direction: column;
      gap: 0;
    }

    .header__menu-item {
      border-bottom: 1px solid var(--border-on-surface-light);
    }

    .header__menu-link {
      display: block;
      padding: 0.75rem 0;
    }

    .header__menu-link::after {
      display: none;
    }

    .header__right {
      margin-left: auto;
    }

    .header__contact {
      display: none;
    }

    .header__cta {
      font-size: calc(var(--font-size-base) * 0.8125);
      padding: 0.375rem 1rem;
    }

    .header__burger {
      display: flex;
    }
  }

  @media (min-width: 768px) {
    .header__burger {
      display: none;
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
  }
  .footer-logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f39c12;
    text-decoration: none;
  }
  .footer-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    padding: 0;
    margin: 0;
  }
  .footer-nav a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f39c12;
  }
  .footer-bottom {
    border-top: 1px solid #7f8c8d;
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-contact {
    font-style: normal;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.95rem;
  }
  .contact-item a {
    color: #f39c12;
    text-decoration: none;
  }
  .contact-item a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    text-align: center;
  }
  .disclaimer {
    font-size: 0.85rem;
    color: #95a5a6;
    margin-bottom: 0.5rem;
    line-height: 1.4;
  }
  .legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .legal-links a {
    color: #f39c12;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .legal-links a:hover {
    text-decoration: underline;
  }
  .copyright {
    font-size: 0.85rem;
    color: #95a5a6;
    margin: 0;
  }
  @media (min-width: 768px) {
    .footer-top {
      flex-direction: row;
      justify-content: space-between;
    }
    .footer-bottom {
      flex-direction: row;
      justify-content: space-between;
      align-items: flex-start;
    }
    .footer-contact {
      justify-content: flex-start;
    }
    .footer-legal {
      text-align: right;
    }
  }

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

    .cookie-lv12__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px var(--gap);
        align-items: center;
    }

    .cookie-lv12__title {
        font-weight: 700;
        color: var(--fg-on-surface);
    }

    .cookie-lv12 p {
        margin: 0;
        grid-column: 1 / 2;
        color: var(--fg-muted);
    }

    .cookie-lv12__actions {
        grid-row: 1 / 3;
        grid-column: 2 / 3;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

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

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

    @media (max-width: 760px) {
        .cookie-lv12__wrap {
            grid-template-columns: 1fr;
        }

        .cookie-lv12 p,
        .cookie-lv12__actions {
            grid-column: auto;
            grid-row: auto;
        }

        .cookie-lv12__actions {
            justify-content: flex-start;
        }
    }

.policyitems-u9{padding:calc(var(--space-y)*2.9) var(--space-x);background:var(--bg-primary);color:var(--fg-on-primary)} .policyitems-u9 .shell{max-width:var(--max-w);margin:0 auto;display:grid;gap:var(--gap)} .policyitems-u9 h2{margin:0;font-size:clamp(1.85rem,3.6vw,2.8rem);line-height:1.1} .policyitems-u9 .sub{margin:.35rem 0 0;opacity:.9;} .policyitems-u9 article,.policyitems-u9 li{padding:.85rem;border-radius:var(--radius-sm);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);list-style:none} .policyitems-u9 p{margin:0} .policyitems-u9 a{text-decoration:none;color:inherit;font-weight:700} .policyitems-u9 .pulse{margin-top:.8rem;padding:1rem;border-radius:var(--radius-lg);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);animation:policyitems-u9Pulse 2.8s ease-in-out infinite} @keyframes policyitems-u9Pulse{0%,100%{transform:scale(1)}50%{transform:scale(1.01)}} .policyitems-u9 article{transition:transform var(--anim-duration) var(--anim-ease),box-shadow var(--anim-duration) var(--anim-ease)} .policyitems-u9 article:hover{transform:translateY(-4px);box-shadow:var(--shadow-md)} @media (max-width:860px){.policyitems-u9 .split,.policyitems-u9 .media,.policyitems-u9 .grid,.policyitems-u9 .cards,.policyitems-u9 .bento,.policyitems-u9 .foot{grid-template-columns:1fr}}

.header {
    background-color: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    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);
  }

  .header__left {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) * 2);
  }

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

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

  .header__nav {
    display: flex;
  }

  .header__menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: calc(var(--gap) * 1.5);
  }

  .header__menu-link {
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: var(--space-y) 0;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .header__menu-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width var(--anim-duration) var(--anim-ease);
  }

  .header__menu-link:hover {
    color: var(--accent);
  }

  .header__menu-link:hover::after {
    width: 100%;
  }

  .header__right {
    display: flex;
    align-items: center;
    gap: var(--gap);
  }

  .header__contact {
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }

  .header__contact-text {
    font-size: calc(var(--font-size-base) * 0.875);
    color: var(--neutral-600);
    line-height: var(--line-height-base);
  }

  .header__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.25rem;
    background-color: var(--accent);
    color: var(--fg-on-accent);
    font-size: calc(var(--font-size-base) * 0.875);
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-lg);
    transition: background-color var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

  .header__cta:hover {
    background-color: var(--bg-accent-hover);
    transform: translateY(-1px);
  }

  .header__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
    border-radius: var(--radius-sm);
    transition: background-color var(--anim-duration) var(--anim-ease);
  }

  .header__burger:hover {
    background-color: var(--btn-ghost-bg-hover);
  }

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

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

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

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

  @media (max-width: 767px) {
    .header__inner {
      flex-wrap: wrap;
    }

    .header__nav {
      display: none;
      width: 100%;
      order: 3;
      padding-top: var(--space-y);
      border-top: 1px solid var(--border-on-surface);
      margin-top: var(--space-y);
    }

    .header__nav.open {
      display: block;
    }

    .header__menu {
      flex-direction: column;
      gap: 0;
    }

    .header__menu-item {
      border-bottom: 1px solid var(--border-on-surface-light);
    }

    .header__menu-link {
      display: block;
      padding: 0.75rem 0;
    }

    .header__menu-link::after {
      display: none;
    }

    .header__right {
      margin-left: auto;
    }

    .header__contact {
      display: none;
    }

    .header__cta {
      font-size: calc(var(--font-size-base) * 0.8125);
      padding: 0.375rem 1rem;
    }

    .header__burger {
      display: flex;
    }
  }

  @media (min-width: 768px) {
    .header__burger {
      display: none;
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
  }
  .footer-logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f39c12;
    text-decoration: none;
  }
  .footer-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    padding: 0;
    margin: 0;
  }
  .footer-nav a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f39c12;
  }
  .footer-bottom {
    border-top: 1px solid #7f8c8d;
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-contact {
    font-style: normal;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.95rem;
  }
  .contact-item a {
    color: #f39c12;
    text-decoration: none;
  }
  .contact-item a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    text-align: center;
  }
  .disclaimer {
    font-size: 0.85rem;
    color: #95a5a6;
    margin-bottom: 0.5rem;
    line-height: 1.4;
  }
  .legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .legal-links a {
    color: #f39c12;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .legal-links a:hover {
    text-decoration: underline;
  }
  .copyright {
    font-size: 0.85rem;
    color: #95a5a6;
    margin: 0;
  }
  @media (min-width: 768px) {
    .footer-top {
      flex-direction: row;
      justify-content: space-between;
    }
    .footer-bottom {
      flex-direction: row;
      justify-content: space-between;
      align-items: flex-start;
    }
    .footer-contact {
      justify-content: flex-start;
    }
    .footer-legal {
      text-align: right;
    }
  }

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

    .cookie-lv12__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px var(--gap);
        align-items: center;
    }

    .cookie-lv12__title {
        font-weight: 700;
        color: var(--fg-on-surface);
    }

    .cookie-lv12 p {
        margin: 0;
        grid-column: 1 / 2;
        color: var(--fg-muted);
    }

    .cookie-lv12__actions {
        grid-row: 1 / 3;
        grid-column: 2 / 3;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

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

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

    @media (max-width: 760px) {
        .cookie-lv12__wrap {
            grid-template-columns: 1fr;
        }

        .cookie-lv12 p,
        .cookie-lv12__actions {
            grid-column: auto;
            grid-row: auto;
        }

        .cookie-lv12__actions {
            justify-content: flex-start;
        }
    }

.terms-layout-e {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

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

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

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

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

    .terms-layout-e .rows {
        display: grid;
        gap: 10px;
    }

    .terms-layout-e article {
        border-left: 4px solid var(--brand);
        background: var(--surface-1);
        border-radius: var(--radius-sm);
        padding: 12px 12px 12px 14px;
        box-shadow: var(--shadow-sm);
    }

    .terms-layout-e .head h3 {
        margin: 0 0 8px;
    }

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

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

.header {
    background-color: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    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);
  }

  .header__left {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) * 2);
  }

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

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

  .header__nav {
    display: flex;
  }

  .header__menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: calc(var(--gap) * 1.5);
  }

  .header__menu-link {
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: var(--space-y) 0;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .header__menu-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width var(--anim-duration) var(--anim-ease);
  }

  .header__menu-link:hover {
    color: var(--accent);
  }

  .header__menu-link:hover::after {
    width: 100%;
  }

  .header__right {
    display: flex;
    align-items: center;
    gap: var(--gap);
  }

  .header__contact {
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }

  .header__contact-text {
    font-size: calc(var(--font-size-base) * 0.875);
    color: var(--neutral-600);
    line-height: var(--line-height-base);
  }

  .header__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.25rem;
    background-color: var(--accent);
    color: var(--fg-on-accent);
    font-size: calc(var(--font-size-base) * 0.875);
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-lg);
    transition: background-color var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

  .header__cta:hover {
    background-color: var(--bg-accent-hover);
    transform: translateY(-1px);
  }

  .header__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
    border-radius: var(--radius-sm);
    transition: background-color var(--anim-duration) var(--anim-ease);
  }

  .header__burger:hover {
    background-color: var(--btn-ghost-bg-hover);
  }

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

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

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

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

  @media (max-width: 767px) {
    .header__inner {
      flex-wrap: wrap;
    }

    .header__nav {
      display: none;
      width: 100%;
      order: 3;
      padding-top: var(--space-y);
      border-top: 1px solid var(--border-on-surface);
      margin-top: var(--space-y);
    }

    .header__nav.open {
      display: block;
    }

    .header__menu {
      flex-direction: column;
      gap: 0;
    }

    .header__menu-item {
      border-bottom: 1px solid var(--border-on-surface-light);
    }

    .header__menu-link {
      display: block;
      padding: 0.75rem 0;
    }

    .header__menu-link::after {
      display: none;
    }

    .header__right {
      margin-left: auto;
    }

    .header__contact {
      display: none;
    }

    .header__cta {
      font-size: calc(var(--font-size-base) * 0.8125);
      padding: 0.375rem 1rem;
    }

    .header__burger {
      display: flex;
    }
  }

  @media (min-width: 768px) {
    .header__burger {
      display: none;
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
  }
  .footer-logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f39c12;
    text-decoration: none;
  }
  .footer-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    padding: 0;
    margin: 0;
  }
  .footer-nav a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f39c12;
  }
  .footer-bottom {
    border-top: 1px solid #7f8c8d;
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-contact {
    font-style: normal;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.95rem;
  }
  .contact-item a {
    color: #f39c12;
    text-decoration: none;
  }
  .contact-item a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    text-align: center;
  }
  .disclaimer {
    font-size: 0.85rem;
    color: #95a5a6;
    margin-bottom: 0.5rem;
    line-height: 1.4;
  }
  .legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .legal-links a {
    color: #f39c12;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .legal-links a:hover {
    text-decoration: underline;
  }
  .copyright {
    font-size: 0.85rem;
    color: #95a5a6;
    margin: 0;
  }
  @media (min-width: 768px) {
    .footer-top {
      flex-direction: row;
      justify-content: space-between;
    }
    .footer-bottom {
      flex-direction: row;
      justify-content: space-between;
      align-items: flex-start;
    }
    .footer-contact {
      justify-content: flex-start;
    }
    .footer-legal {
      text-align: right;
    }
  }

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

    .cookie-lv12__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px var(--gap);
        align-items: center;
    }

    .cookie-lv12__title {
        font-weight: 700;
        color: var(--fg-on-surface);
    }

    .cookie-lv12 p {
        margin: 0;
        grid-column: 1 / 2;
        color: var(--fg-muted);
    }

    .cookie-lv12__actions {
        grid-row: 1 / 3;
        grid-column: 2 / 3;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

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

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

    @media (max-width: 760px) {
        .cookie-lv12__wrap {
            grid-template-columns: 1fr;
        }

        .cookie-lv12 p,
        .cookie-lv12__actions {
            grid-column: auto;
            grid-row: auto;
        }

        .cookie-lv12__actions {
            justify-content: flex-start;
        }
    }

.thank-u1{padding:calc(var(--space-y)*2.9) var(--space-x);background:var(--gradient-hero);color:var(--brand-contrast)} .thank-u1 .shell{max-width:var(--max-w);margin:0 auto;display:grid;gap:var(--gap)} .thank-u1 h2{margin:0;font-size:clamp(1.85rem,3.6vw,2.8rem);line-height:1.1} .thank-u1 .sub{margin:.35rem 0 0;opacity:.9;} .thank-u1 article,.thank-u1 li{padding:.85rem;border-radius:var(--radius-sm);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);list-style:none} .thank-u1 p{margin:0} .thank-u1 a{text-decoration:none;color:inherit;font-weight:700} .thank-u1 .pulse{margin-top:.8rem;padding:1rem;border-radius:var(--radius-lg);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);animation:thank-u1Pulse 2.8s ease-in-out infinite} @keyframes thank-u1Pulse{0%,100%{transform:scale(1)}50%{transform:scale(1.01)}} @media (max-width:860px){.thank-u1 .split,.thank-u1 .media,.thank-u1 .grid,.thank-u1 .cards,.thank-u1 .bento,.thank-u1 .foot{grid-template-columns:1fr}}

.header {
    background-color: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    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);
  }

  .header__left {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) * 2);
  }

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

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

  .header__nav {
    display: flex;
  }

  .header__menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: calc(var(--gap) * 1.5);
  }

  .header__menu-link {
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: var(--space-y) 0;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .header__menu-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width var(--anim-duration) var(--anim-ease);
  }

  .header__menu-link:hover {
    color: var(--accent);
  }

  .header__menu-link:hover::after {
    width: 100%;
  }

  .header__right {
    display: flex;
    align-items: center;
    gap: var(--gap);
  }

  .header__contact {
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }

  .header__contact-text {
    font-size: calc(var(--font-size-base) * 0.875);
    color: var(--neutral-600);
    line-height: var(--line-height-base);
  }

  .header__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.25rem;
    background-color: var(--accent);
    color: var(--fg-on-accent);
    font-size: calc(var(--font-size-base) * 0.875);
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-lg);
    transition: background-color var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

  .header__cta:hover {
    background-color: var(--bg-accent-hover);
    transform: translateY(-1px);
  }

  .header__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
    border-radius: var(--radius-sm);
    transition: background-color var(--anim-duration) var(--anim-ease);
  }

  .header__burger:hover {
    background-color: var(--btn-ghost-bg-hover);
  }

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

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

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

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

  @media (max-width: 767px) {
    .header__inner {
      flex-wrap: wrap;
    }

    .header__nav {
      display: none;
      width: 100%;
      order: 3;
      padding-top: var(--space-y);
      border-top: 1px solid var(--border-on-surface);
      margin-top: var(--space-y);
    }

    .header__nav.open {
      display: block;
    }

    .header__menu {
      flex-direction: column;
      gap: 0;
    }

    .header__menu-item {
      border-bottom: 1px solid var(--border-on-surface-light);
    }

    .header__menu-link {
      display: block;
      padding: 0.75rem 0;
    }

    .header__menu-link::after {
      display: none;
    }

    .header__right {
      margin-left: auto;
    }

    .header__contact {
      display: none;
    }

    .header__cta {
      font-size: calc(var(--font-size-base) * 0.8125);
      padding: 0.375rem 1rem;
    }

    .header__burger {
      display: flex;
    }
  }

  @media (min-width: 768px) {
    .header__burger {
      display: none;
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
  }
  .footer-logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f39c12;
    text-decoration: none;
  }
  .footer-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    padding: 0;
    margin: 0;
  }
  .footer-nav a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f39c12;
  }
  .footer-bottom {
    border-top: 1px solid #7f8c8d;
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-contact {
    font-style: normal;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.95rem;
  }
  .contact-item a {
    color: #f39c12;
    text-decoration: none;
  }
  .contact-item a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    text-align: center;
  }
  .disclaimer {
    font-size: 0.85rem;
    color: #95a5a6;
    margin-bottom: 0.5rem;
    line-height: 1.4;
  }
  .legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .legal-links a {
    color: #f39c12;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .legal-links a:hover {
    text-decoration: underline;
  }
  .copyright {
    font-size: 0.85rem;
    color: #95a5a6;
    margin: 0;
  }
  @media (min-width: 768px) {
    .footer-top {
      flex-direction: row;
      justify-content: space-between;
    }
    .footer-bottom {
      flex-direction: row;
      justify-content: space-between;
      align-items: flex-start;
    }
    .footer-contact {
      justify-content: flex-start;
    }
    .footer-legal {
      text-align: right;
    }
  }

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

    .cookie-lv12__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px var(--gap);
        align-items: center;
    }

    .cookie-lv12__title {
        font-weight: 700;
        color: var(--fg-on-surface);
    }

    .cookie-lv12 p {
        margin: 0;
        grid-column: 1 / 2;
        color: var(--fg-muted);
    }

    .cookie-lv12__actions {
        grid-row: 1 / 3;
        grid-column: 2 / 3;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

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

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

    @media (max-width: 760px) {
        .cookie-lv12__wrap {
            grid-template-columns: 1fr;
        }

        .cookie-lv12 p,
        .cookie-lv12__actions {
            grid-column: auto;
            grid-row: auto;
        }

        .cookie-lv12__actions {
            justify-content: flex-start;
        }
    }

.nf404-v9 {
        padding: clamp(56px, 10vw, 112px) 20px;
        background: var(--accent);
        color: var(--accent-contrast);
    }

    .nf404-v9__card {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        border-radius: var(--radius-xl);
        border: 1px solid rgba(255, 255, 255, .26);
        background: rgba(255, 255, 255, .08);
        padding: clamp(28px, 4vw, 46px);
    }

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

    .nf404-v9 p {
        margin: 12px 0 0;
        opacity: .92;
    }

    .nf404-v9 a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 16px;
        border-radius: var(--radius-md);
        color: var(--accent-contrast);
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, .45);
    }