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

  --max-w: 1680px;
  --space-x: 1.47rem;
  --space-y: 1.5rem;
  --gap: 2.6rem;

  --radius-xl: 1.12rem;
  --radius-lg: 0.74rem;
  --radius-md: 0.51rem;
  --radius-sm: 0.32rem;

  --shadow-sm: 0 2px 6px rgba(0,0,0,0.11);
  --shadow-md: 0 10px 22px rgba(0,0,0,0.14);
  --shadow-lg: 0 14px 34px rgba(0,0,0,0.18);

  --overlay: rgba(0,0,0,0.6);
  --anim-duration: 520ms;
  --anim-ease: ease;
  --random-number: 1;

  --brand: #1a1a1a;
  --brand-contrast: #ffffff;
  --accent: #d4af37;
  --accent-contrast: #1a1a1a;

  --neutral-0: #ffffff;
  --neutral-100: #f2f2f2;
  --neutral-300: #b3b3b3;
  --neutral-600: #666666;
  --neutral-800: #333333;
  --neutral-900: #1a1a1a;

  --bg-page: #fafafa;
  --fg-on-page: #1a1a1a;

  --bg-alt: #e6e6e6;
  --fg-on-alt: #1a1a1a;

  --surface-1: #ffffff;
  --surface-2: #f7f7f7;
  --fg-on-surface: #1a1a1a;
  --border-on-surface: #d9d9d9;

  --surface-light: #ffffff;
  --fg-on-surface-light: #1a1a1a;
  --border-on-surface-light: #e0e0e0;

  --bg-primary: #2c3e50;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #1a252f;
  --ring: #d4af37;

  --bg-accent: #f5e6b8;
  --fg-on-accent: #1a1a1a;
  --bg-accent-hover: #b8962e;

  --link: #2c3e50;
  --link-hover: #d4af37;

  --gradient-hero: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 100%);
  --gradient-accent: linear-gradient(135deg, #d4af37 0%, #b8962e 100%);

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

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  box-shadow: var(--shadow-sm);
  padding: var(--space-y) var(--space-x);
}

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

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

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

.nav-left,
.nav-right {
  display: flex;
  gap: var(--gap);
}

.nav-link {
  color: var(--fg-on-surface);
  text-decoration: none;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

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

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

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

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

.burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--overlay);
  backdrop-filter: blur(8px);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--gap);
  z-index: 99;
  padding: var(--space-y) var(--space-x);
}

.mobile-menu.open {
  display: flex;
}

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

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

@media (max-width: 767px) {
  .nav-left,
  .nav-right {
    display: none;
  }

  .burger {
    display: flex;
  }

  .header-inner {
    justify-content: space-between;
  }

  .logo {
    font-size: calc(var(--font-size-base) * 1.25);
  }
}

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    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-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    gap: 1rem;
  }
  .footer-logo .logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    letter-spacing: 1px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .footer-contact {
    font-style: normal;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
    font-size: 0.95rem;
  }
  .contact-item a {
    color: #e0e0e0;
    text-decoration: none;
  }
  .contact-item a:hover {
    color: #f0a500;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
  }
  .legal-links {
    display: flex;
    gap: 1.5rem;
  }
  .legal-links a {
    color: #e0e0e0;
    text-decoration: none;
  }
  .legal-links a:hover {
    color: #f0a500;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #b0b0b0;
    margin: 0;
    line-height: 1.4;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: flex-start;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 0.75rem;
    }
    .footer-contact {
      flex-direction: column;
      align-items: flex-start;
      gap: 0.5rem;
    }
    .footer-legal {
      flex-direction: column;
      align-items: flex-start;
    }
  }

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

    .nfcookie-v7__wrap {
        max-width: 920px;
        margin: 0 auto;
        padding: calc(var(--space-y) * .9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--bg-primary));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .nfcookie-v7__text strong {display: block; margin-bottom: 4px;}
    .nfcookie-v7__text p {margin: 0; opacity: .95;}

    .nfcookie-v7__actions {display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end;}

    .nfcookie-v7__actions button {
        border: 1px solid rgba(255,255,255,.35);
        background: rgba(255,255,255,.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

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

    @media (max-width: 760px) {
        .nfcookie-v7__wrap {grid-template-columns: 1fr;}
        .nfcookie-v7__actions {justify-content: flex-start;}
    }

.intro-metrics-l4 {
        padding: clamp(3.6rem, 8vw, 6.6rem) var(--space-x);
        background: linear-gradient(180deg, var(--surface-1), var(--bg-alt));
        color: var(--fg-on-page);
    }

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

    .intro-metrics-l4__copy {
        text-align: center;
        max-width: 44rem;
        margin: 0 auto;
    }

    .intro-metrics-l4__copy p {
        margin: 0;
        color: var(--neutral-600);
        text-transform: uppercase;
        letter-spacing: .1em;
        font-size: .82rem;
    }

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

    .intro-metrics-l4__copy span {
        display: block;
        margin-top: .9rem;
        color: var(--neutral-600);
    }

    .intro-metrics-l4__stats {
        margin-top: 1.3rem;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
        gap: var(--gap);
    }

    .intro-metrics-l4__stats article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
        text-align: center;
    }

    .intro-metrics-l4__stats strong {
        display: block;
        font-size: 1.6rem;
        color: var(--brand);
    }

    .intro-metrics-l4__stats span {
        display: block;
        margin-top: .35rem;
        color: var(--neutral-600);
    }

    .intro-metrics-l4__footer {
        margin-top: 1rem;
        text-align: center;
        color: var(--neutral-800);
    }

.values-beads-c3 {
        padding: clamp(3.5rem, 8vw, 6.1rem) var(--space-x);
        background: var(--gradient-accent);
        color: var(--fg-on-primary);
    }

    .values-beads-c3__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .values-beads-c3__head {
        margin-bottom: 1.1rem;
    }

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

    .values-beads-c3__head h2 {
        margin: .5rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .values-beads-c3__head span {
        display: block;
        margin-top: .8rem;

    }

    .values-beads-c3__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
        gap: var(--gap);
    }

    .values-beads-c3__grid article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: rgba(255, 255, 255, .14);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .values-beads-c3__top {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .values-beads-c3__top i {
        font-style: normal;
    }

    .values-beads-c3__top strong {
        color: var(--bg-accent);
    }

    .values-beads-c3__grid h3 {
        margin: .75rem 0 .35rem;
    }

    .values-beads-c3__grid p {
        margin: 0;

    }

    .values-beads-c3__grid small {
        display: block;
        margin-top: .55rem;
        color: rgba(255, 255, 255, .76);
    }

.why-choose-light-alt {

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

    .why-choose-light-alt .why-choose-light-alt__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

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

    }

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

    .why-choose-light-alt h2::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 0;
        width: 100%;
        height: 4px;
        background: var(--bg-primary);
        border-radius: var(--radius-sm);
        animation: shimmer 3s ease-in-out infinite;
    }

    @keyframes shimmer {
        0%, 100% {
            opacity: 1;
            transform: scaleX(1);
        }
        50% {
            opacity: 0.4;
            transform: scaleX(0.8);
        }
    }

    .why-choose-light-alt .why-choose-light-alt__subtitle {
        font-size: clamp(16px, 2vw, 20px);
        margin: 0;
        color: var(--neutral-600);
    }

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

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

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

    .why-choose-light-alt .why-choose-light-alt__wave {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg,
        var(--bg-primary) 0%,
        var(--accent) 50%,
        var(--bg-primary) 100%);
        background-size: 200% 100%;
        animation: wave 3s linear infinite;

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

    @keyframes wave {
        0% {
            background-position: 0% 0%;
        }
        100% {
            background-position: 200% 0%;
        }
    }

    .why-choose-light-alt .why-choose-light-alt__item:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-lg);
    }

    .why-choose-light-alt .why-choose-light-alt__item:hover .why-choose-light-alt__wave {
        opacity: 1;
    }

    .why-choose-light-alt .why-choose-light-alt__number {
        flex-shrink: 0;
        width: 56px;
        height: 56px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-radius: var(--radius-md);
        font-size: clamp(20px, 2.5vw, 28px);
        font-weight: 700;
        position: relative;
        animation: sparkle 4s ease-in-out infinite;
    }

    @keyframes sparkle {
        0%, 100% {
            box-shadow: 0 0 0 rgba(0, 85, 183, 0);
        }
        10% {
            box-shadow: 0 0 20px rgba(0, 85, 183, 0.6);
        }
        20%, 80% {
            box-shadow: 0 0 0 rgba(0, 85, 183, 0);
        }
        90% {
            box-shadow: 0 0 20px rgba(0, 85, 183, 0.6);
        }
    }

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

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

    .why-choose-light-alt .why-choose-light-alt__item h3::before {
        content: '';
        position: absolute;
        left: -12px;
        top: 50%;
        transform: translateY(-50%);
        width: 4px;
        height: 0;
        background: var(--bg-primary);
        border-radius: var(--radius-sm);
        transition: height var(--anim-duration) var(--anim-ease);
    }

    .why-choose-light-alt .why-choose-light-alt__item:hover h3::before {
        height: 100%;
    }

    .why-choose-light-alt .why-choose-light-alt__item p {
        margin: 0;
        color: var(--neutral-600);
        line-height: var(--line-height-base);
    }

.social-c2 {

        padding: clamp(18px, 3vw, 44px);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        position: relative;
        overflow: hidden;
    }

    .social-c2::before {
        content: '';
        position: absolute;
        inset: -30%;
        background: radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.14), transparent 55%),
        radial-gradient(circle at 80% 55%, rgba(255, 107, 53, 0.18), transparent 55%);
        filter: blur(18px);
        animation: socialC2Bg 7s var(--anim-ease) infinite;
        pointer-events: none;
    }

    @keyframes socialC2Bg {
        0%, 100% {
            transform: translate3d(-1%, 0, 0) scale(1)
        }
        50% {
            transform: translate3d(1.5%, -1%, 0) scale(1.04)
        }
    }

    .social-c2__c {
        max-width: var(--max-w);
        margin: 0 auto;
        position: relative;
    }

    .social-c2__h {
        margin-bottom: clamp(14px, 2.2vw, 22px);
    }

    .social-c2__title {
        margin: 0;
        font-size: clamp(24px, 4.6vw, 44px);
        letter-spacing: -.02em;
        line-height: 1.1;
    }

    .social-c2__sub {
        margin: 10px 0 0;
        max-width: 70ch;
        color: rgba(255, 255, 255, .82);
    }

    .social-c2__grid {
        display: grid;
        grid-template-columns: 1.2fr 0.8fr;
        gap: 14px;
        align-items: stretch;
    }

    .social-c2__quotes {
        position: relative;
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, 0.10);
        border: 1px solid rgba(255, 255, 255, 0.16);
        box-shadow: var(--shadow-lg);
        overflow: hidden;
    }

    .social-c2__quote {
        display: none;
        padding: 18px 18px 16px;
    }

    .social-c2__quote.is-on {
        display: block;
    }

    .social-c2__qText {
        font-size: clamp(16px, 2.2vw, 20px);
        line-height: 1.7;
        color: rgba(255, 255, 255, .92);
    }

    .social-c2__qMeta {
        margin-top: 14px;
        display: flex;
        gap: 10px;
        align-items: baseline;
        flex-wrap: wrap;

    }

    .social-c2__qName {
        font-weight: 900;
    }

    .social-c2__qRole {
        opacity: .85;
    }

    .social-c2__metrics {
        display: grid;
        gap: 12px;
    }

    .social-c2__metric {
        border-radius: var(--radius-xl);
        background: rgba(0, 0, 0, 0.14);
        border: 1px solid rgba(255, 255, 255, 0.14);
        box-shadow: var(--shadow-md);
        padding: 16px;
    }

    .social-c2__mVal {
        font-weight: 900;
        font-size: clamp(22px, 3vw, 32px);
        letter-spacing: -.01em;
    }

    .social-c2__mLbl {
        margin-top: 6px;
        color: rgba(255, 255, 255, .82);
    }

    @media (max-width: 980px) {
        .social-c2__grid {
            grid-template-columns:1fr;
        }
    }

    @media (prefers-reduced-motion: reduce) {
        .social-c2::before {
            animation: none;
        }
    }

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  box-shadow: var(--shadow-sm);
  padding: var(--space-y) var(--space-x);
}

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

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

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

.nav-left,
.nav-right {
  display: flex;
  gap: var(--gap);
}

.nav-link {
  color: var(--fg-on-surface);
  text-decoration: none;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

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

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

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

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

.burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--overlay);
  backdrop-filter: blur(8px);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--gap);
  z-index: 99;
  padding: var(--space-y) var(--space-x);
}

.mobile-menu.open {
  display: flex;
}

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

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

@media (max-width: 767px) {
  .nav-left,
  .nav-right {
    display: none;
  }

  .burger {
    display: flex;
  }

  .header-inner {
    justify-content: space-between;
  }

  .logo {
    font-size: calc(var(--font-size-base) * 1.25);
  }
}

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    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-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    gap: 1rem;
  }
  .footer-logo .logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    letter-spacing: 1px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .footer-contact {
    font-style: normal;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
    font-size: 0.95rem;
  }
  .contact-item a {
    color: #e0e0e0;
    text-decoration: none;
  }
  .contact-item a:hover {
    color: #f0a500;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
  }
  .legal-links {
    display: flex;
    gap: 1.5rem;
  }
  .legal-links a {
    color: #e0e0e0;
    text-decoration: none;
  }
  .legal-links a:hover {
    color: #f0a500;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #b0b0b0;
    margin: 0;
    line-height: 1.4;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: flex-start;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 0.75rem;
    }
    .footer-contact {
      flex-direction: column;
      align-items: flex-start;
      gap: 0.5rem;
    }
    .footer-legal {
      flex-direction: column;
      align-items: flex-start;
    }
  }

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

    .nfcookie-v7__wrap {
        max-width: 920px;
        margin: 0 auto;
        padding: calc(var(--space-y) * .9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--bg-primary));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .nfcookie-v7__text strong {display: block; margin-bottom: 4px;}
    .nfcookie-v7__text p {margin: 0; opacity: .95;}

    .nfcookie-v7__actions {display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end;}

    .nfcookie-v7__actions button {
        border: 1px solid rgba(255,255,255,.35);
        background: rgba(255,255,255,.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

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

    @media (max-width: 760px) {
        .nfcookie-v7__wrap {grid-template-columns: 1fr;}
        .nfcookie-v7__actions {justify-content: flex-start;}
    }

.post-list {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  box-shadow: var(--shadow-sm);
  padding: var(--space-y) var(--space-x);
}

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

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

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

.nav-left,
.nav-right {
  display: flex;
  gap: var(--gap);
}

.nav-link {
  color: var(--fg-on-surface);
  text-decoration: none;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

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

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

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

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

.burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--overlay);
  backdrop-filter: blur(8px);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--gap);
  z-index: 99;
  padding: var(--space-y) var(--space-x);
}

.mobile-menu.open {
  display: flex;
}

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

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

@media (max-width: 767px) {
  .nav-left,
  .nav-right {
    display: none;
  }

  .burger {
    display: flex;
  }

  .header-inner {
    justify-content: space-between;
  }

  .logo {
    font-size: calc(var(--font-size-base) * 1.25);
  }
}

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    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-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    gap: 1rem;
  }
  .footer-logo .logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    letter-spacing: 1px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .footer-contact {
    font-style: normal;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
    font-size: 0.95rem;
  }
  .contact-item a {
    color: #e0e0e0;
    text-decoration: none;
  }
  .contact-item a:hover {
    color: #f0a500;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
  }
  .legal-links {
    display: flex;
    gap: 1.5rem;
  }
  .legal-links a {
    color: #e0e0e0;
    text-decoration: none;
  }
  .legal-links a:hover {
    color: #f0a500;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #b0b0b0;
    margin: 0;
    line-height: 1.4;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: flex-start;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 0.75rem;
    }
    .footer-contact {
      flex-direction: column;
      align-items: flex-start;
      gap: 0.5rem;
    }
    .footer-legal {
      flex-direction: column;
      align-items: flex-start;
    }
  }

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

    .nfcookie-v7__wrap {
        max-width: 920px;
        margin: 0 auto;
        padding: calc(var(--space-y) * .9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--bg-primary));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .nfcookie-v7__text strong {display: block; margin-bottom: 4px;}
    .nfcookie-v7__text p {margin: 0; opacity: .95;}

    .nfcookie-v7__actions {display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end;}

    .nfcookie-v7__actions button {
        border: 1px solid rgba(255,255,255,.35);
        background: rgba(255,255,255,.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

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

    @media (max-width: 760px) {
        .nfcookie-v7__wrap {grid-template-columns: 1fr;}
        .nfcookie-v7__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: 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 {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  box-shadow: var(--shadow-sm);
  padding: var(--space-y) var(--space-x);
}

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

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

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

.nav-left,
.nav-right {
  display: flex;
  gap: var(--gap);
}

.nav-link {
  color: var(--fg-on-surface);
  text-decoration: none;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

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

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

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

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

.burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--overlay);
  backdrop-filter: blur(8px);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--gap);
  z-index: 99;
  padding: var(--space-y) var(--space-x);
}

.mobile-menu.open {
  display: flex;
}

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

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

@media (max-width: 767px) {
  .nav-left,
  .nav-right {
    display: none;
  }

  .burger {
    display: flex;
  }

  .header-inner {
    justify-content: space-between;
  }

  .logo {
    font-size: calc(var(--font-size-base) * 1.25);
  }
}

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    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-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    gap: 1rem;
  }
  .footer-logo .logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    letter-spacing: 1px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .footer-contact {
    font-style: normal;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
    font-size: 0.95rem;
  }
  .contact-item a {
    color: #e0e0e0;
    text-decoration: none;
  }
  .contact-item a:hover {
    color: #f0a500;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
  }
  .legal-links {
    display: flex;
    gap: 1.5rem;
  }
  .legal-links a {
    color: #e0e0e0;
    text-decoration: none;
  }
  .legal-links a:hover {
    color: #f0a500;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #b0b0b0;
    margin: 0;
    line-height: 1.4;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: flex-start;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 0.75rem;
    }
    .footer-contact {
      flex-direction: column;
      align-items: flex-start;
      gap: 0.5rem;
    }
    .footer-legal {
      flex-direction: column;
      align-items: flex-start;
    }
  }

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

    .nfcookie-v7__wrap {
        max-width: 920px;
        margin: 0 auto;
        padding: calc(var(--space-y) * .9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--bg-primary));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .nfcookie-v7__text strong {display: block; margin-bottom: 4px;}
    .nfcookie-v7__text p {margin: 0; opacity: .95;}

    .nfcookie-v7__actions {display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end;}

    .nfcookie-v7__actions button {
        border: 1px solid rgba(255,255,255,.35);
        background: rgba(255,255,255,.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

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

    @media (max-width: 760px) {
        .nfcookie-v7__wrap {grid-template-columns: 1fr;}
        .nfcookie-v7__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: none;
        outline: none;
        min-height: 100px;

    }

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

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

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

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

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

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

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

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

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

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

    .identity-ux15__grid h3 {
        margin: 0;
    }

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

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

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  box-shadow: var(--shadow-sm);
  padding: var(--space-y) var(--space-x);
}

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

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

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

.nav-left,
.nav-right {
  display: flex;
  gap: var(--gap);
}

.nav-link {
  color: var(--fg-on-surface);
  text-decoration: none;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

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

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

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

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

.burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--overlay);
  backdrop-filter: blur(8px);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--gap);
  z-index: 99;
  padding: var(--space-y) var(--space-x);
}

.mobile-menu.open {
  display: flex;
}

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

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

@media (max-width: 767px) {
  .nav-left,
  .nav-right {
    display: none;
  }

  .burger {
    display: flex;
  }

  .header-inner {
    justify-content: space-between;
  }

  .logo {
    font-size: calc(var(--font-size-base) * 1.25);
  }
}

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    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-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    gap: 1rem;
  }
  .footer-logo .logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    letter-spacing: 1px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .footer-contact {
    font-style: normal;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
    font-size: 0.95rem;
  }
  .contact-item a {
    color: #e0e0e0;
    text-decoration: none;
  }
  .contact-item a:hover {
    color: #f0a500;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
  }
  .legal-links {
    display: flex;
    gap: 1.5rem;
  }
  .legal-links a {
    color: #e0e0e0;
    text-decoration: none;
  }
  .legal-links a:hover {
    color: #f0a500;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #b0b0b0;
    margin: 0;
    line-height: 1.4;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: flex-start;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 0.75rem;
    }
    .footer-contact {
      flex-direction: column;
      align-items: flex-start;
      gap: 0.5rem;
    }
    .footer-legal {
      flex-direction: column;
      align-items: flex-start;
    }
  }

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

    .nfcookie-v7__wrap {
        max-width: 920px;
        margin: 0 auto;
        padding: calc(var(--space-y) * .9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--bg-primary));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .nfcookie-v7__text strong {display: block; margin-bottom: 4px;}
    .nfcookie-v7__text p {margin: 0; opacity: .95;}

    .nfcookie-v7__actions {display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end;}

    .nfcookie-v7__actions button {
        border: 1px solid rgba(255,255,255,.35);
        background: rgba(255,255,255,.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

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

    @media (max-width: 760px) {
        .nfcookie-v7__wrap {grid-template-columns: 1fr;}
        .nfcookie-v7__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: none;
        outline: none;
        min-height: 100px;

    }

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

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

.plans-ux3{padding:clamp(50px,7vw,92px) clamp(16px,4vw,36px);background:var(--gradient-accent);color:var(--accent-contrast)}.plans-ux3__wrap{max-width:var(--max-w);margin:0 auto}.plans-ux3 p{margin:8px 0 12px;color:rgba(255,255,255,.88)}.plans-ux3__grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:10px}.plans-ux3__grid article{border:1px solid rgba(255,255,255,.28);background:rgba(255,255,255,.12);border-radius:var(--radius-lg);padding:12px}.plans-ux3 h3{margin:0}.plans-ux3 ul{margin:8px 0 0;padding-left:18px;display:grid;gap:5px}.plans-ux3 button{width:100%;margin-top:9px;border:0;border-radius:var(--radius-sm);padding:8px 10px;background:var(--bg-primary);color:var(--fg-on-primary)}

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  box-shadow: var(--shadow-sm);
  padding: var(--space-y) var(--space-x);
}

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

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

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

.nav-left,
.nav-right {
  display: flex;
  gap: var(--gap);
}

.nav-link {
  color: var(--fg-on-surface);
  text-decoration: none;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

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

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

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

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

.burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--overlay);
  backdrop-filter: blur(8px);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--gap);
  z-index: 99;
  padding: var(--space-y) var(--space-x);
}

.mobile-menu.open {
  display: flex;
}

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

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

@media (max-width: 767px) {
  .nav-left,
  .nav-right {
    display: none;
  }

  .burger {
    display: flex;
  }

  .header-inner {
    justify-content: space-between;
  }

  .logo {
    font-size: calc(var(--font-size-base) * 1.25);
  }
}

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    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-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    gap: 1rem;
  }
  .footer-logo .logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    letter-spacing: 1px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .footer-contact {
    font-style: normal;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
    font-size: 0.95rem;
  }
  .contact-item a {
    color: #e0e0e0;
    text-decoration: none;
  }
  .contact-item a:hover {
    color: #f0a500;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
  }
  .legal-links {
    display: flex;
    gap: 1.5rem;
  }
  .legal-links a {
    color: #e0e0e0;
    text-decoration: none;
  }
  .legal-links a:hover {
    color: #f0a500;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #b0b0b0;
    margin: 0;
    line-height: 1.4;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: flex-start;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 0.75rem;
    }
    .footer-contact {
      flex-direction: column;
      align-items: flex-start;
      gap: 0.5rem;
    }
    .footer-legal {
      flex-direction: column;
      align-items: flex-start;
    }
  }

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

    .nfcookie-v7__wrap {
        max-width: 920px;
        margin: 0 auto;
        padding: calc(var(--space-y) * .9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--bg-primary));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .nfcookie-v7__text strong {display: block; margin-bottom: 4px;}
    .nfcookie-v7__text p {margin: 0; opacity: .95;}

    .nfcookie-v7__actions {display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end;}

    .nfcookie-v7__actions button {
        border: 1px solid rgba(255,255,255,.35);
        background: rgba(255,255,255,.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

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

    @media (max-width: 760px) {
        .nfcookie-v7__wrap {grid-template-columns: 1fr;}
        .nfcookie-v7__actions {justify-content: flex-start;}
    }

.article-list--light-v6 {

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

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

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

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

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

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

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

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

    .faq-layout-e .wrap {
        max-width: 860px;
        margin: 0 auto;
    }

    .faq-layout-e .section-head {
        margin-bottom: 16px;
    }

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

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

    .faq-layout-e .accordion {
        border-top: 1px solid var(--border-on-surface-light);
    }

    .faq-layout-e .entry {
        border-bottom: 1px solid var(--border-on-surface-light);
    }

    .faq-layout-e .question {
        width: 100%;
        text-align: left;
        border: 0;
        background: transparent;
        padding: 12px 0;
        font: inherit;
        font-weight: 600;
        color: var(--brand);
        cursor: pointer;
    }

    .faq-layout-e .answer {
        margin: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
        color: var(--neutral-600);
        padding: 0;
    }

    .faq-layout-e .entry.open .answer {
        max-height: 220px;
        padding-bottom: 12px;
    }

.clar-ux8{padding:clamp(20px,3vw,44px);background:var(--neutral-0);color:var(--neutral-900)}.clar-ux8__wrap{max-width:var(--max-w);margin:0 auto}.clar-ux8 p{margin:8px 0 12px;color:var(--neutral-600)}.clar-ux8__cards{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:10px}.clar-ux8__cards article{border:1px solid var(--neutral-300);background:var(--neutral-100);border-radius:var(--radius-md);padding:12px}.clar-ux8__cards small{color:var(--brand)}.clar-ux8__cards h3{margin:6px 0}.clar-ux8__cards p{margin:0;color:var(--neutral-800)}

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  box-shadow: var(--shadow-sm);
  padding: var(--space-y) var(--space-x);
}

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

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

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

.nav-left,
.nav-right {
  display: flex;
  gap: var(--gap);
}

.nav-link {
  color: var(--fg-on-surface);
  text-decoration: none;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

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

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

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

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

.burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--overlay);
  backdrop-filter: blur(8px);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--gap);
  z-index: 99;
  padding: var(--space-y) var(--space-x);
}

.mobile-menu.open {
  display: flex;
}

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

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

@media (max-width: 767px) {
  .nav-left,
  .nav-right {
    display: none;
  }

  .burger {
    display: flex;
  }

  .header-inner {
    justify-content: space-between;
  }

  .logo {
    font-size: calc(var(--font-size-base) * 1.25);
  }
}

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    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-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    gap: 1rem;
  }
  .footer-logo .logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    letter-spacing: 1px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .footer-contact {
    font-style: normal;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
    font-size: 0.95rem;
  }
  .contact-item a {
    color: #e0e0e0;
    text-decoration: none;
  }
  .contact-item a:hover {
    color: #f0a500;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
  }
  .legal-links {
    display: flex;
    gap: 1.5rem;
  }
  .legal-links a {
    color: #e0e0e0;
    text-decoration: none;
  }
  .legal-links a:hover {
    color: #f0a500;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #b0b0b0;
    margin: 0;
    line-height: 1.4;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: flex-start;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 0.75rem;
    }
    .footer-contact {
      flex-direction: column;
      align-items: flex-start;
      gap: 0.5rem;
    }
    .footer-legal {
      flex-direction: column;
      align-items: flex-start;
    }
  }

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

    .nfcookie-v7__wrap {
        max-width: 920px;
        margin: 0 auto;
        padding: calc(var(--space-y) * .9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--bg-primary));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .nfcookie-v7__text strong {display: block; margin-bottom: 4px;}
    .nfcookie-v7__text p {margin: 0; opacity: .95;}

    .nfcookie-v7__actions {display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end;}

    .nfcookie-v7__actions button {
        border: 1px solid rgba(255,255,255,.35);
        background: rgba(255,255,255,.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

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

    @media (max-width: 760px) {
        .nfcookie-v7__wrap {grid-template-columns: 1fr;}
        .nfcookie-v7__actions {justify-content: flex-start;}
    }

body{margin:0;padding:0;font-family:var(--font-family);font-size:var(--font-size-base);line-height:var(--line-height-base);box-sizing:border-box;background:var(--bg-page);color:var(--fg-on-page)}
*{box-sizing:border-box;}
.con-lx4{padding:calc(var(--space-y)*3) var(--space-x);background:var(--bg-alt)}
.con-lx4 .con-wrap{max-width:var(--max-w);margin:0 auto}
.con-lx4 h2{margin:0;font-size:clamp(1.75rem,3.2vw,2.5rem)}
.con-lx4 .con-sub{margin:.42rem 0 1rem;color:var(--fg-on-surface-light)}
.con-lx4 .con-strips{display:grid;gap:.55rem}
.con-lx4 .con-strips article{display:flex;justify-content:space-between;gap:1rem;align-items:center;padding:.85rem 1rem;border-radius:var(--radius-lg);background:var(--surface-1);border-left:4px solid var(--bg-primary)}
.con-lx4 h3{margin:0;font-size:1rem}
.con-lx4 .con-strips p{margin:0;color:var(--fg-on-surface-light)}
.con-lx4 a{text-decoration:none;color:var(--link)}
.con-lx4 .con-flow{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.6rem;margin-top:.8rem}
.con-lx4 .con-flow a{display:flex;justify-content:space-between;gap:.75rem;padding:.75rem .9rem;border-radius:var(--radius-md);background:var(--surface-1);border:1px solid var(--border-on-surface)}
.con-lx4 .con-flow span{color:var(--fg-on-surface-light)}
@media (max-width:760px){.con-lx4 .con-strips article{display:grid}.con-lx4 .con-flow{grid-template-columns:1fr}}

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

    .map-note-c3__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: .9fr 1.1fr;
        gap: 1rem;
    }

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

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

    .map-note-c3__notes {
        margin-top: 1rem;
        display: grid;
        gap: .7rem;
    }

    .map-note-c3__notes div {
        padding: .9rem;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .map-note-c3__notes span {
        display: block;
        margin-top: .3rem;
        color: rgba(255, 255, 255, .84);
    }

    .map-note-c3__embed {
        overflow: hidden;
        border-radius: var(--radius-xl);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .map-note-c3__embed iframe {
        display: block;
        width: 100%;
        height: 24rem;
    }

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

body{margin:0;padding:0;font-family:var(--font-family);font-size:var(--font-size-base);line-height:var(--line-height-base);box-sizing:border-box;background:var(--bg-page);color:var(--fg-on-page)}
*{box-sizing:border-box;}
.frm-lx6{padding:calc(var(--space-y)*2.85) var(--space-x)}
.frm-lx6 .frm-max{max-width:var(--max-w);margin:0 auto}
.frm-lx6 .frm-head{margin-bottom:.9rem}
.frm-lx6 h2{margin:0;font-size:clamp(1.78rem,3.3vw,2.5rem)}
.frm-lx6 .frm-head p{margin:.4rem 0 0;color:var(--fg-on-surface-light)}
.frm-lx6 .frm-columns{display:grid;grid-template-columns:1fr 1fr;gap:.7rem;padding:.7rem;background:var(--surface-2);border-radius:var(--radius-xl);border:1px solid var(--border-on-surface)}
.frm-lx6 .frm-col{padding:.8rem;border-radius:var(--radius-lg);background:var(--surface-1);display:grid;gap:.62rem}
.frm-lx6 label{display:grid;gap:.25rem}
.frm-lx6 span{font-size:.82rem;font-weight:700;color:var(--fg-on-surface-light)}
.frm-lx6 input,.frm-lx6 textarea{width:100%;padding:.76rem .8rem;border-radius:var(--radius-sm);border:1px solid var(--border-on-surface-light);font:inherit;color:var(--fg-on-surface);background:var(--surface-1)}
.frm-lx6 textarea{min-height:170px;resize:vertical}
.frm-lx6 button{padding:.82rem 1rem;border:0;border-radius:var(--radius-md);background:var(--gradient-hero);color:var(--brand-contrast);font-weight:700;cursor:pointer;transition:transform var(--anim-duration) var(--anim-ease)}
.frm-lx6 button:hover{transform:translateY(-2px)}
@media (max-width:860px){.frm-lx6 .frm-columns{grid-template-columns:1fr}}

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  box-shadow: var(--shadow-sm);
  padding: var(--space-y) var(--space-x);
}

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

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

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

.nav-left,
.nav-right {
  display: flex;
  gap: var(--gap);
}

.nav-link {
  color: var(--fg-on-surface);
  text-decoration: none;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

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

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

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

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

.burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--overlay);
  backdrop-filter: blur(8px);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--gap);
  z-index: 99;
  padding: var(--space-y) var(--space-x);
}

.mobile-menu.open {
  display: flex;
}

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

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

@media (max-width: 767px) {
  .nav-left,
  .nav-right {
    display: none;
  }

  .burger {
    display: flex;
  }

  .header-inner {
    justify-content: space-between;
  }

  .logo {
    font-size: calc(var(--font-size-base) * 1.25);
  }
}

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    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-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    gap: 1rem;
  }
  .footer-logo .logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    letter-spacing: 1px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .footer-contact {
    font-style: normal;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
    font-size: 0.95rem;
  }
  .contact-item a {
    color: #e0e0e0;
    text-decoration: none;
  }
  .contact-item a:hover {
    color: #f0a500;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
  }
  .legal-links {
    display: flex;
    gap: 1.5rem;
  }
  .legal-links a {
    color: #e0e0e0;
    text-decoration: none;
  }
  .legal-links a:hover {
    color: #f0a500;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #b0b0b0;
    margin: 0;
    line-height: 1.4;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: flex-start;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 0.75rem;
    }
    .footer-contact {
      flex-direction: column;
      align-items: flex-start;
      gap: 0.5rem;
    }
    .footer-legal {
      flex-direction: column;
      align-items: flex-start;
    }
  }

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

    .nfcookie-v7__wrap {
        max-width: 920px;
        margin: 0 auto;
        padding: calc(var(--space-y) * .9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--bg-primary));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .nfcookie-v7__text strong {display: block; margin-bottom: 4px;}
    .nfcookie-v7__text p {margin: 0; opacity: .95;}

    .nfcookie-v7__actions {display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end;}

    .nfcookie-v7__actions button {
        border: 1px solid rgba(255,255,255,.35);
        background: rgba(255,255,255,.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

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

    @media (max-width: 760px) {
        .nfcookie-v7__wrap {grid-template-columns: 1fr;}
        .nfcookie-v7__actions {justify-content: flex-start;}
    }

body{margin:0;padding:0;font-family:var(--font-family);box-sizing:border-box;}
*{box-sizing:border-box;}
.policyitems-u7{padding:calc(var(--space-y)*2.9) var(--space-x);background:var(--gradient-accent);color:var(--brand-contrast)} .policyitems-u7 .shell{max-width:var(--max-w);margin:0 auto;display:grid;gap:var(--gap)} .policyitems-u7 h2{margin:0;font-size:clamp(1.85rem,3.6vw,2.8rem);line-height:1.1} .policyitems-u7 .sub{margin:.35rem 0 0;opacity:.9;} .policyitems-u7 article,.policyitems-u7 li{padding:.85rem;border-radius:var(--radius-sm);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);list-style:none} .policyitems-u7 p{margin:0} .policyitems-u7 a{text-decoration:none;color:inherit;font-weight:700} .policyitems-u7 .bento{display:grid;grid-template-columns:repeat(12,minmax(0,1fr));gap:.55rem} .policyitems-u7 .bento article:nth-child(1){grid-column:span 6} .policyitems-u7 .bento article:nth-child(2){grid-column:span 3} .policyitems-u7 .bento article:nth-child(3){grid-column:span 3} .policyitems-u7 .bento article:nth-child(4){grid-column:span 4} .policyitems-u7 .bento article:nth-child(5){grid-column:span 4} .policyitems-u7 .bento article:nth-child(6){grid-column:span 4} .policyitems-u7 article{transition:transform var(--anim-duration) var(--anim-ease),box-shadow var(--anim-duration) var(--anim-ease)} .policyitems-u7 article:hover{transform:translateY(-4px);box-shadow:var(--shadow-md)} @media (max-width:860px){.policyitems-u7 .split,.policyitems-u7 .media,.policyitems-u7 .grid,.policyitems-u7 .cards,.policyitems-u7 .bento,.policyitems-u7 .foot{grid-template-columns:1fr}}

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  box-shadow: var(--shadow-sm);
  padding: var(--space-y) var(--space-x);
}

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

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

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

.nav-left,
.nav-right {
  display: flex;
  gap: var(--gap);
}

.nav-link {
  color: var(--fg-on-surface);
  text-decoration: none;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

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

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

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

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

.burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--overlay);
  backdrop-filter: blur(8px);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--gap);
  z-index: 99;
  padding: var(--space-y) var(--space-x);
}

.mobile-menu.open {
  display: flex;
}

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

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

@media (max-width: 767px) {
  .nav-left,
  .nav-right {
    display: none;
  }

  .burger {
    display: flex;
  }

  .header-inner {
    justify-content: space-between;
  }

  .logo {
    font-size: calc(var(--font-size-base) * 1.25);
  }
}

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    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-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    gap: 1rem;
  }
  .footer-logo .logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    letter-spacing: 1px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .footer-contact {
    font-style: normal;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
    font-size: 0.95rem;
  }
  .contact-item a {
    color: #e0e0e0;
    text-decoration: none;
  }
  .contact-item a:hover {
    color: #f0a500;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
  }
  .legal-links {
    display: flex;
    gap: 1.5rem;
  }
  .legal-links a {
    color: #e0e0e0;
    text-decoration: none;
  }
  .legal-links a:hover {
    color: #f0a500;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #b0b0b0;
    margin: 0;
    line-height: 1.4;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: flex-start;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 0.75rem;
    }
    .footer-contact {
      flex-direction: column;
      align-items: flex-start;
      gap: 0.5rem;
    }
    .footer-legal {
      flex-direction: column;
      align-items: flex-start;
    }
  }

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

    .nfcookie-v7__wrap {
        max-width: 920px;
        margin: 0 auto;
        padding: calc(var(--space-y) * .9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--bg-primary));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .nfcookie-v7__text strong {display: block; margin-bottom: 4px;}
    .nfcookie-v7__text p {margin: 0; opacity: .95;}

    .nfcookie-v7__actions {display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end;}

    .nfcookie-v7__actions button {
        border: 1px solid rgba(255,255,255,.35);
        background: rgba(255,255,255,.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

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

    @media (max-width: 760px) {
        .nfcookie-v7__wrap {grid-template-columns: 1fr;}
        .nfcookie-v7__actions {justify-content: flex-start;}
    }

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

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

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

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

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

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

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

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

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

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

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  box-shadow: var(--shadow-sm);
  padding: var(--space-y) var(--space-x);
}

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

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

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

.nav-left,
.nav-right {
  display: flex;
  gap: var(--gap);
}

.nav-link {
  color: var(--fg-on-surface);
  text-decoration: none;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

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

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

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

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

.burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--overlay);
  backdrop-filter: blur(8px);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--gap);
  z-index: 99;
  padding: var(--space-y) var(--space-x);
}

.mobile-menu.open {
  display: flex;
}

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

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

@media (max-width: 767px) {
  .nav-left,
  .nav-right {
    display: none;
  }

  .burger {
    display: flex;
  }

  .header-inner {
    justify-content: space-between;
  }

  .logo {
    font-size: calc(var(--font-size-base) * 1.25);
  }
}

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    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-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    gap: 1rem;
  }
  .footer-logo .logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    letter-spacing: 1px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .footer-contact {
    font-style: normal;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
    font-size: 0.95rem;
  }
  .contact-item a {
    color: #e0e0e0;
    text-decoration: none;
  }
  .contact-item a:hover {
    color: #f0a500;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
  }
  .legal-links {
    display: flex;
    gap: 1.5rem;
  }
  .legal-links a {
    color: #e0e0e0;
    text-decoration: none;
  }
  .legal-links a:hover {
    color: #f0a500;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #b0b0b0;
    margin: 0;
    line-height: 1.4;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: flex-start;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 0.75rem;
    }
    .footer-contact {
      flex-direction: column;
      align-items: flex-start;
      gap: 0.5rem;
    }
    .footer-legal {
      flex-direction: column;
      align-items: flex-start;
    }
  }

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

    .nfcookie-v7__wrap {
        max-width: 920px;
        margin: 0 auto;
        padding: calc(var(--space-y) * .9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--bg-primary));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .nfcookie-v7__text strong {display: block; margin-bottom: 4px;}
    .nfcookie-v7__text p {margin: 0; opacity: .95;}

    .nfcookie-v7__actions {display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end;}

    .nfcookie-v7__actions button {
        border: 1px solid rgba(255,255,255,.35);
        background: rgba(255,255,255,.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

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

    @media (max-width: 760px) {
        .nfcookie-v7__wrap {grid-template-columns: 1fr;}
        .nfcookie-v7__actions {justify-content: flex-start;}
    }

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

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  box-shadow: var(--shadow-sm);
  padding: var(--space-y) var(--space-x);
}

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

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

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

.nav-left,
.nav-right {
  display: flex;
  gap: var(--gap);
}

.nav-link {
  color: var(--fg-on-surface);
  text-decoration: none;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

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

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

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

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

.burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--overlay);
  backdrop-filter: blur(8px);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--gap);
  z-index: 99;
  padding: var(--space-y) var(--space-x);
}

.mobile-menu.open {
  display: flex;
}

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

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

@media (max-width: 767px) {
  .nav-left,
  .nav-right {
    display: none;
  }

  .burger {
    display: flex;
  }

  .header-inner {
    justify-content: space-between;
  }

  .logo {
    font-size: calc(var(--font-size-base) * 1.25);
  }
}

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    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-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    gap: 1rem;
  }
  .footer-logo .logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    letter-spacing: 1px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .footer-contact {
    font-style: normal;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
    font-size: 0.95rem;
  }
  .contact-item a {
    color: #e0e0e0;
    text-decoration: none;
  }
  .contact-item a:hover {
    color: #f0a500;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
  }
  .legal-links {
    display: flex;
    gap: 1.5rem;
  }
  .legal-links a {
    color: #e0e0e0;
    text-decoration: none;
  }
  .legal-links a:hover {
    color: #f0a500;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #b0b0b0;
    margin: 0;
    line-height: 1.4;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: flex-start;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 0.75rem;
    }
    .footer-contact {
      flex-direction: column;
      align-items: flex-start;
      gap: 0.5rem;
    }
    .footer-legal {
      flex-direction: column;
      align-items: flex-start;
    }
  }

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

    .nfcookie-v7__wrap {
        max-width: 920px;
        margin: 0 auto;
        padding: calc(var(--space-y) * .9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--bg-primary));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .nfcookie-v7__text strong {display: block; margin-bottom: 4px;}
    .nfcookie-v7__text p {margin: 0; opacity: .95;}

    .nfcookie-v7__actions {display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end;}

    .nfcookie-v7__actions button {
        border: 1px solid rgba(255,255,255,.35);
        background: rgba(255,255,255,.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

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

    @media (max-width: 760px) {
        .nfcookie-v7__wrap {grid-template-columns: 1fr;}
        .nfcookie-v7__actions {justify-content: flex-start;}
    }

.nf404-v7 {
        padding: clamp(56px, 10vw, 112px) 20px;
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

    .nf404-v7__box {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
    }

    .nf404-v7 h1 {
        margin: 0;
        font-size: clamp(34px, 6vw, 58px);
    }

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

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