:root {
  --font-family: "Inter", sans-serif;
  --font-size-base: 15.1px;
  --line-height-base: 1.94;

  --max-w: 1040px;
  --space-x: 2.17rem;
  --space-y: 1.5rem;
  --gap: 0.94rem;

  --radius-xl: 1.29rem;
  --radius-lg: 1rem;
  --radius-md: 0.7rem;
  --radius-sm: 0.38rem;

  --shadow-sm: 0 1px 5px rgba(0,0,0,0.03);
  --shadow-md: 0 2px 12px rgba(0,0,0,0.04);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.04);

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

  --brand: #1a3c6e;
  --brand-contrast: #ffffff;
  --accent: #e67e22;
  --accent-contrast: #ffffff;

  --neutral-0: #ffffff;
  --neutral-100: #f5f7fa;
  --neutral-300: #d1d5db;
  --neutral-600: #6b7280;
  --neutral-800: #1f2937;
  --neutral-900: #111827;

  --bg-page: #ffffff;
  --fg-on-page: #1f2937;

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

  --surface-1: #ffffff;
  --surface-2: #f9fafb;
  --fg-on-surface: #1f2937;
  --border-on-surface: #e5e7eb;

  --surface-light: #f9fafb;
  --fg-on-surface-light: #374151;
  --border-on-surface-light: #e5e7eb;

  --bg-primary: #1a3c6e;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #142d54;
  --ring: #1a3c6e;

  --bg-accent: #e67e22;
  --fg-on-accent: #ffffff;
  --bg-accent-hover: #d35400;

  --link: #1a3c6e;
  --link-hover: #e67e22;

  --gradient-hero: linear-gradient(135deg, #1a3c6e 0%, #2c5a8c 100%);
  --gradient-accent: linear-gradient(135deg, #e67e22 0%, #d35400 100%);

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

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
  padding: var(--space-y) 0;
}

.header.scrolled {
  background: var(--surface-1);
  box-shadow: var(--shadow-md);
  padding: calc(var(--space-y) * 0.6) 0;
}

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

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

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

.header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  gap: 5px;
  z-index: 101;
}

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

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

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

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

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

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

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

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

  .header__nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--surface-1);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    z-index: 100;
  }

  .header__nav.open {
    opacity: 1;
    visibility: visible;
  }

  .header__nav-list {
    flex-direction: column;
    gap: calc(var(--gap) * 1.5);
    text-align: center;
  }

  .header__nav-link {
    font-size: 1.25rem;
    padding: 0.75rem 1.5rem;
  }
}

.site-footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
}
.footer-brand {
  flex: 1 1 200px;
}
.footer-logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 0.5rem;
}
.footer-logo:hover {
  color: #f0a500;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
  margin-top: 0.5rem;
}
.footer-nav a {
  color: #b0b0c0;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #f0a500;
}
.footer-legal {
  flex: 1 1 180px;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.footer-legal a {
  color: #b0b0c0;
  text-decoration: none;
}
.footer-legal a:hover {
  color: #f0a500;
}
.footer-contact {
  flex: 1 1 220px;
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.footer-contact a {
  color: #b0b0c0;
  text-decoration: none;
}
.footer-contact a:hover {
  color: #f0a500;
}
.footer-disclaimer {
  flex: 1 1 100%;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #2a2a4e;
  font-size: 0.8rem;
  color: #9a9ab0;
}
.footer-disclaimer p {
  margin: 0;
}
.footer-copy {
  flex: 1 1 100%;
  text-align: center;
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: #7a7a90;
}
.footer-copy p {
  margin: 0;
}
@media (max-width: 640px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-nav {
    justify-content: center;
  }
  .footer-legal {
    align-items: center;
  }
  .footer-contact {
    align-items: center;
  }
}

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

    .nfcookie-v11__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, .45), rgba(17, 24, 39, .95));
        color: var(--neutral-100);
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, .35);
    }

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

    .nfcookie-v11__top strong {font-size: 16px;}

    .nfcookie-v11__top button {
        border: 0;
        background: transparent;
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
        cursor: pointer;
    }

    .nfcookie-v11 p {margin: 10px 0 0; color: #d1d5db;}

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

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

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

    @media (max-width: 760px) {
        .nfcookie-v11__card {max-width: none;}
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.why-choose-light {

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

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

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

        transform: translateY(20px);
    }

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

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

    .why-choose-light .why-choose-light__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: var(--gap);
    }

    .why-choose-light .why-choose-light__item {
        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);
        transition: box-shadow var(--anim-duration) var(--anim-ease);

        transform: translateY(30px);
    }

    .why-choose-light .why-choose-light__item:hover {
        box-shadow: var(--shadow-md);
    }

    .why-choose-light .why-choose-light__icon {
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-radius: var(--radius-md);
        margin-bottom: 1rem;
        font-size: 24px;
    }

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

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

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

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

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

.two-column-section--split .two-column-section__text {
    padding: 0 0 0 0;
    border-left: 2px solid var(--border-on-surface);
    padding-left: var(--space-x);
}

.two-column-section--split .two-column-section__text:first-child {
    border-left: 0;
    padding-left: 0;
}

.two-column-section__text h2 {
    margin-bottom: var(--space-y);
    color: var(--fg-on-page);
}

.two-column-section__text p {
    margin-bottom: var(--space-y);
    color: var(--neutral-600);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
  padding: var(--space-y) 0;
}

.header.scrolled {
  background: var(--surface-1);
  box-shadow: var(--shadow-md);
  padding: calc(var(--space-y) * 0.6) 0;
}

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

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

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

.header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  gap: 5px;
  z-index: 101;
}

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

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

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

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

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

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

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

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

  .header__nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--surface-1);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    z-index: 100;
  }

  .header__nav.open {
    opacity: 1;
    visibility: visible;
  }

  .header__nav-list {
    flex-direction: column;
    gap: calc(var(--gap) * 1.5);
    text-align: center;
  }

  .header__nav-link {
    font-size: 1.25rem;
    padding: 0.75rem 1.5rem;
  }
}

.site-footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
}
.footer-brand {
  flex: 1 1 200px;
}
.footer-logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 0.5rem;
}
.footer-logo:hover {
  color: #f0a500;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
  margin-top: 0.5rem;
}
.footer-nav a {
  color: #b0b0c0;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #f0a500;
}
.footer-legal {
  flex: 1 1 180px;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.footer-legal a {
  color: #b0b0c0;
  text-decoration: none;
}
.footer-legal a:hover {
  color: #f0a500;
}
.footer-contact {
  flex: 1 1 220px;
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.footer-contact a {
  color: #b0b0c0;
  text-decoration: none;
}
.footer-contact a:hover {
  color: #f0a500;
}
.footer-disclaimer {
  flex: 1 1 100%;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #2a2a4e;
  font-size: 0.8rem;
  color: #9a9ab0;
}
.footer-disclaimer p {
  margin: 0;
}
.footer-copy {
  flex: 1 1 100%;
  text-align: center;
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: #7a7a90;
}
.footer-copy p {
  margin: 0;
}
@media (max-width: 640px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-nav {
    justify-content: center;
  }
  .footer-legal {
    align-items: center;
  }
  .footer-contact {
    align-items: center;
  }
}

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

    .nfcookie-v11__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, .45), rgba(17, 24, 39, .95));
        color: var(--neutral-100);
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, .35);
    }

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

    .nfcookie-v11__top strong {font-size: 16px;}

    .nfcookie-v11__top button {
        border: 0;
        background: transparent;
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
        cursor: pointer;
    }

    .nfcookie-v11 p {margin: 10px 0 0; color: #d1d5db;}

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

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

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

    @media (max-width: 760px) {
        .nfcookie-v11__card {max-width: none;}
    }

.post-list--light-v6 {

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

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

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

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

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

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

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

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

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
  padding: var(--space-y) 0;
}

.header.scrolled {
  background: var(--surface-1);
  box-shadow: var(--shadow-md);
  padding: calc(var(--space-y) * 0.6) 0;
}

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

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

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

.header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  gap: 5px;
  z-index: 101;
}

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

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

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

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

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

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

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

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

  .header__nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--surface-1);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    z-index: 100;
  }

  .header__nav.open {
    opacity: 1;
    visibility: visible;
  }

  .header__nav-list {
    flex-direction: column;
    gap: calc(var(--gap) * 1.5);
    text-align: center;
  }

  .header__nav-link {
    font-size: 1.25rem;
    padding: 0.75rem 1.5rem;
  }
}

.site-footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
}
.footer-brand {
  flex: 1 1 200px;
}
.footer-logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 0.5rem;
}
.footer-logo:hover {
  color: #f0a500;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
  margin-top: 0.5rem;
}
.footer-nav a {
  color: #b0b0c0;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #f0a500;
}
.footer-legal {
  flex: 1 1 180px;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.footer-legal a {
  color: #b0b0c0;
  text-decoration: none;
}
.footer-legal a:hover {
  color: #f0a500;
}
.footer-contact {
  flex: 1 1 220px;
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.footer-contact a {
  color: #b0b0c0;
  text-decoration: none;
}
.footer-contact a:hover {
  color: #f0a500;
}
.footer-disclaimer {
  flex: 1 1 100%;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #2a2a4e;
  font-size: 0.8rem;
  color: #9a9ab0;
}
.footer-disclaimer p {
  margin: 0;
}
.footer-copy {
  flex: 1 1 100%;
  text-align: center;
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: #7a7a90;
}
.footer-copy p {
  margin: 0;
}
@media (max-width: 640px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-nav {
    justify-content: center;
  }
  .footer-legal {
    align-items: center;
  }
  .footer-contact {
    align-items: center;
  }
}

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

    .nfcookie-v11__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, .45), rgba(17, 24, 39, .95));
        color: var(--neutral-100);
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, .35);
    }

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

    .nfcookie-v11__top strong {font-size: 16px;}

    .nfcookie-v11__top button {
        border: 0;
        background: transparent;
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
        cursor: pointer;
    }

    .nfcookie-v11 p {margin: 10px 0 0; color: #d1d5db;}

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

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

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

    @media (max-width: 760px) {
        .nfcookie-v11__card {max-width: none;}
    }

.post-item {

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

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

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

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

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

    .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-primary);
        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(--gradient-hero);
        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);
    }

.author {

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

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

    .author .author__content {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: clamp(32px, 5vw, 48px);
        align-items: center;
    }

    .author .author__image {
        width: clamp(150px, 22vw, 220px);
        height: clamp(150px, 22vw, 220px);
        border-radius: var(--radius-lg);
        overflow: hidden;
        flex-shrink: 0;
    }

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

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

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

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

    @media (max-width: 768px) {
        .author .author__content {
            grid-template-columns: 1fr;
            text-align: center;
        }
    }

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
  padding: var(--space-y) 0;
}

.header.scrolled {
  background: var(--surface-1);
  box-shadow: var(--shadow-md);
  padding: calc(var(--space-y) * 0.6) 0;
}

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

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

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

.header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  gap: 5px;
  z-index: 101;
}

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

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

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

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

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

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

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

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

  .header__nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--surface-1);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    z-index: 100;
  }

  .header__nav.open {
    opacity: 1;
    visibility: visible;
  }

  .header__nav-list {
    flex-direction: column;
    gap: calc(var(--gap) * 1.5);
    text-align: center;
  }

  .header__nav-link {
    font-size: 1.25rem;
    padding: 0.75rem 1.5rem;
  }
}

.site-footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
}
.footer-brand {
  flex: 1 1 200px;
}
.footer-logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 0.5rem;
}
.footer-logo:hover {
  color: #f0a500;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
  margin-top: 0.5rem;
}
.footer-nav a {
  color: #b0b0c0;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #f0a500;
}
.footer-legal {
  flex: 1 1 180px;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.footer-legal a {
  color: #b0b0c0;
  text-decoration: none;
}
.footer-legal a:hover {
  color: #f0a500;
}
.footer-contact {
  flex: 1 1 220px;
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.footer-contact a {
  color: #b0b0c0;
  text-decoration: none;
}
.footer-contact a:hover {
  color: #f0a500;
}
.footer-disclaimer {
  flex: 1 1 100%;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #2a2a4e;
  font-size: 0.8rem;
  color: #9a9ab0;
}
.footer-disclaimer p {
  margin: 0;
}
.footer-copy {
  flex: 1 1 100%;
  text-align: center;
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: #7a7a90;
}
.footer-copy p {
  margin: 0;
}
@media (max-width: 640px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-nav {
    justify-content: center;
  }
  .footer-legal {
    align-items: center;
  }
  .footer-contact {
    align-items: center;
  }
}

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

    .nfcookie-v11__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, .45), rgba(17, 24, 39, .95));
        color: var(--neutral-100);
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, .35);
    }

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

    .nfcookie-v11__top strong {font-size: 16px;}

    .nfcookie-v11__top button {
        border: 0;
        background: transparent;
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
        cursor: pointer;
    }

    .nfcookie-v11 p {margin: 10px 0 0; color: #d1d5db;}

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

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

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

    @media (max-width: 760px) {
        .nfcookie-v11__card {max-width: none;}
    }

.post-item {

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

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

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

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

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

    .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-primary);
        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(--gradient-hero);
        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: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
  padding: var(--space-y) 0;
}

.header.scrolled {
  background: var(--surface-1);
  box-shadow: var(--shadow-md);
  padding: calc(var(--space-y) * 0.6) 0;
}

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

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

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

.header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  gap: 5px;
  z-index: 101;
}

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

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

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

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

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

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

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

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

  .header__nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--surface-1);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    z-index: 100;
  }

  .header__nav.open {
    opacity: 1;
    visibility: visible;
  }

  .header__nav-list {
    flex-direction: column;
    gap: calc(var(--gap) * 1.5);
    text-align: center;
  }

  .header__nav-link {
    font-size: 1.25rem;
    padding: 0.75rem 1.5rem;
  }
}

.site-footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
}
.footer-brand {
  flex: 1 1 200px;
}
.footer-logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 0.5rem;
}
.footer-logo:hover {
  color: #f0a500;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
  margin-top: 0.5rem;
}
.footer-nav a {
  color: #b0b0c0;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #f0a500;
}
.footer-legal {
  flex: 1 1 180px;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.footer-legal a {
  color: #b0b0c0;
  text-decoration: none;
}
.footer-legal a:hover {
  color: #f0a500;
}
.footer-contact {
  flex: 1 1 220px;
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.footer-contact a {
  color: #b0b0c0;
  text-decoration: none;
}
.footer-contact a:hover {
  color: #f0a500;
}
.footer-disclaimer {
  flex: 1 1 100%;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #2a2a4e;
  font-size: 0.8rem;
  color: #9a9ab0;
}
.footer-disclaimer p {
  margin: 0;
}
.footer-copy {
  flex: 1 1 100%;
  text-align: center;
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: #7a7a90;
}
.footer-copy p {
  margin: 0;
}
@media (max-width: 640px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-nav {
    justify-content: center;
  }
  .footer-legal {
    align-items: center;
  }
  .footer-contact {
    align-items: center;
  }
}

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

    .nfcookie-v11__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, .45), rgba(17, 24, 39, .95));
        color: var(--neutral-100);
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, .35);
    }

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

    .nfcookie-v11__top strong {font-size: 16px;}

    .nfcookie-v11__top button {
        border: 0;
        background: transparent;
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
        cursor: pointer;
    }

    .nfcookie-v11 p {margin: 10px 0 0; color: #d1d5db;}

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

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

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

    @media (max-width: 760px) {
        .nfcookie-v11__card {max-width: none;}
    }

.post-item {

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

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

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

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

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

    .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-primary);
        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(--gradient-hero);
        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);
    }

body{margin:0;padding:0;font-family:var(--font-family);box-sizing: border-box;}
    *{box-sizing:border-box;}.clar-ux9{padding:clamp(20px,3vw,44px);background:var(--neutral-100);color:var(--neutral-900)}.clar-ux9__wrap{max-width:var(--max-w);margin:0 auto;display:grid;grid-template-columns:.9fr 1.1fr;gap:12px}.clar-ux9__left p{margin:8px 0 0;color:var(--neutral-600)}.clar-ux9__right{display:grid;gap:10px}.clar-ux9__right article{border:1px solid var(--neutral-300);border-radius:var(--radius-md);background:var(--neutral-0);padding:12px}.clar-ux9__right span{display:inline-flex;font-size:.84rem;color:var(--brand)}.clar-ux9__right h3{margin:6px 0}.clar-ux9__right p{margin:0;color:var(--neutral-800)}@media(max-width:780px){.clar-ux9__wrap{grid-template-columns:1fr}}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
  padding: var(--space-y) 0;
}

.header.scrolled {
  background: var(--surface-1);
  box-shadow: var(--shadow-md);
  padding: calc(var(--space-y) * 0.6) 0;
}

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

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

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

.header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  gap: 5px;
  z-index: 101;
}

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

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

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

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

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

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

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

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

  .header__nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--surface-1);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    z-index: 100;
  }

  .header__nav.open {
    opacity: 1;
    visibility: visible;
  }

  .header__nav-list {
    flex-direction: column;
    gap: calc(var(--gap) * 1.5);
    text-align: center;
  }

  .header__nav-link {
    font-size: 1.25rem;
    padding: 0.75rem 1.5rem;
  }
}

.site-footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
}
.footer-brand {
  flex: 1 1 200px;
}
.footer-logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 0.5rem;
}
.footer-logo:hover {
  color: #f0a500;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
  margin-top: 0.5rem;
}
.footer-nav a {
  color: #b0b0c0;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #f0a500;
}
.footer-legal {
  flex: 1 1 180px;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.footer-legal a {
  color: #b0b0c0;
  text-decoration: none;
}
.footer-legal a:hover {
  color: #f0a500;
}
.footer-contact {
  flex: 1 1 220px;
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.footer-contact a {
  color: #b0b0c0;
  text-decoration: none;
}
.footer-contact a:hover {
  color: #f0a500;
}
.footer-disclaimer {
  flex: 1 1 100%;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #2a2a4e;
  font-size: 0.8rem;
  color: #9a9ab0;
}
.footer-disclaimer p {
  margin: 0;
}
.footer-copy {
  flex: 1 1 100%;
  text-align: center;
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: #7a7a90;
}
.footer-copy p {
  margin: 0;
}
@media (max-width: 640px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-nav {
    justify-content: center;
  }
  .footer-legal {
    align-items: center;
  }
  .footer-contact {
    align-items: center;
  }
}

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

    .nfcookie-v11__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, .45), rgba(17, 24, 39, .95));
        color: var(--neutral-100);
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, .35);
    }

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

    .nfcookie-v11__top strong {font-size: 16px;}

    .nfcookie-v11__top button {
        border: 0;
        background: transparent;
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
        cursor: pointer;
    }

    .nfcookie-v11 p {margin: 10px 0 0; color: #d1d5db;}

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

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

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

    @media (max-width: 760px) {
        .nfcookie-v11__card {max-width: none;}
    }

.article-list {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.faq-fresh-v2 {
        padding: calc(var(--space-y) * 2.5) var(--space-x);
        background: var(--bg-alt);
        color: var(--fg-on-alt);
    }

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

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

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

    .faq-fresh-v2 article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
    }

    .faq-fresh-v2 h3 {
        margin: 0 0 .5rem;
        font-size: 1.05rem;
    }

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

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

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
  padding: var(--space-y) 0;
}

.header.scrolled {
  background: var(--surface-1);
  box-shadow: var(--shadow-md);
  padding: calc(var(--space-y) * 0.6) 0;
}

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

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

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

.header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  gap: 5px;
  z-index: 101;
}

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

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

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

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

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

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

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

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

  .header__nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--surface-1);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    z-index: 100;
  }

  .header__nav.open {
    opacity: 1;
    visibility: visible;
  }

  .header__nav-list {
    flex-direction: column;
    gap: calc(var(--gap) * 1.5);
    text-align: center;
  }

  .header__nav-link {
    font-size: 1.25rem;
    padding: 0.75rem 1.5rem;
  }
}

.site-footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
}
.footer-brand {
  flex: 1 1 200px;
}
.footer-logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 0.5rem;
}
.footer-logo:hover {
  color: #f0a500;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
  margin-top: 0.5rem;
}
.footer-nav a {
  color: #b0b0c0;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #f0a500;
}
.footer-legal {
  flex: 1 1 180px;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.footer-legal a {
  color: #b0b0c0;
  text-decoration: none;
}
.footer-legal a:hover {
  color: #f0a500;
}
.footer-contact {
  flex: 1 1 220px;
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.footer-contact a {
  color: #b0b0c0;
  text-decoration: none;
}
.footer-contact a:hover {
  color: #f0a500;
}
.footer-disclaimer {
  flex: 1 1 100%;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #2a2a4e;
  font-size: 0.8rem;
  color: #9a9ab0;
}
.footer-disclaimer p {
  margin: 0;
}
.footer-copy {
  flex: 1 1 100%;
  text-align: center;
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: #7a7a90;
}
.footer-copy p {
  margin: 0;
}
@media (max-width: 640px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-nav {
    justify-content: center;
  }
  .footer-legal {
    align-items: center;
  }
  .footer-contact {
    align-items: center;
  }
}

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

    .nfcookie-v11__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, .45), rgba(17, 24, 39, .95));
        color: var(--neutral-100);
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, .35);
    }

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

    .nfcookie-v11__top strong {font-size: 16px;}

    .nfcookie-v11__top button {
        border: 0;
        background: transparent;
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
        cursor: pointer;
    }

    .nfcookie-v11 p {margin: 10px 0 0; color: #d1d5db;}

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

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

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

    @media (max-width: 760px) {
        .nfcookie-v11__card {max-width: none;}
    }

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

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

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

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

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

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

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

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

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

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

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

.contacts-fresh-v3 {
        padding: calc(var(--space-y) * 3) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-surface);
    }

    .contacts-fresh-v3 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns:.9fr 1.1fr;
        gap: calc(var(--gap) * 2);
    }

    .contacts-fresh-v3 .left h2 {
        margin: .3rem 0;
        font-size: clamp(1.9rem, 3.8vw, 2.9rem);
    }

    .contacts-fresh-v3 .left p {
        max-width: 46ch;
        color: var(--fg-on-surface-light);
    }

    .contacts-fresh-v3 .right {
        display: grid;
        gap: var(--gap);
    }

    .contacts-fresh-v3 .row {
        padding: 1rem 1.1rem;
        border-left: 4px solid var(--bg-primary);
        background: var(--surface-2);
        border-radius: var(--radius-sm);
    }

    .contacts-fresh-v3 h3 {
        margin: 0 0 .3rem;
    }

    .contacts-fresh-v3 p {
        margin: 0;
        font-weight: 700;
    }

    .contacts-fresh-v3 small {
        color: var(--fg-on-surface-light);
    }

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

.nfform-v9 {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: linear-gradient(145deg, var(--accent), var(--bg-primary));
        color: var(--fg-on-primary);
    }

    .nfform-v9__form {
        max-width: 860px;
        margin: 0 auto;
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, .25);
        background: rgba(255, 255, 255, .08);
        padding: 16px;
        display: grid;
        gap: 10px;
    }

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

    .nfform-v9__grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .nfform-v9 label {
        display: grid;
        gap: 6px;
    }

    .nfform-v9 input,
    .nfform-v9 textarea {
        width: 100%;
        border: 1px solid rgba(255, 255, 255, .3);
        border-radius: var(--radius-sm);
        background: rgba(255, 255, 255, .15);
        color: var(--fg-on-primary);
        padding: 9px;
        font: inherit;
    }

    .nfform-v9 button {
        justify-self: start;
        border: 0;
        border-radius: var(--radius-sm);
        padding: 10px 14px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        font-weight: 700;
    }

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

.nftouch-v10 {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 3vw, 36px);
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

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

    .nftouch-v10__head {
        margin-bottom: 14px;
    }

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

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

    .nftouch-v10__cols {
        display: grid;
        grid-template-columns: 1.2fr .8fr;
        gap: 12px;
    }

    .nftouch-v10__left,
    .nftouch-v10__right {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        padding: 12px;
    }

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

    .nftouch-v10__left article {
        padding: 8px 0;
        border-bottom: 1px solid var(--border-on-surface-light);
        display: grid;
        gap: 6px;
    }

    .nftouch-v10__left article:last-child {
        border-bottom: 0;
    }

    .nftouch-v10__left h3 {
        margin: 0;
    }

    .nftouch-v10__left span {
        color: var(--neutral-600);
    }

    .nftouch-v10__left a {
        color: var(--link);
        text-decoration: none;
    }

    .nftouch-v10__right img {
        width: 100%;
        border-radius: var(--radius-md);
        border: 1px solid var(--border-on-surface-light);
    }

    .nftouch-v10__right a {
        display: inline-block;
        margin-top: 10px;
        text-decoration: none;
        padding: 10px 14px;
        border-radius: var(--radius-md);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

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

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
  padding: var(--space-y) 0;
}

.header.scrolled {
  background: var(--surface-1);
  box-shadow: var(--shadow-md);
  padding: calc(var(--space-y) * 0.6) 0;
}

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

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

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

.header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  gap: 5px;
  z-index: 101;
}

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

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

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

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

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

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

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

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

  .header__nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--surface-1);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    z-index: 100;
  }

  .header__nav.open {
    opacity: 1;
    visibility: visible;
  }

  .header__nav-list {
    flex-direction: column;
    gap: calc(var(--gap) * 1.5);
    text-align: center;
  }

  .header__nav-link {
    font-size: 1.25rem;
    padding: 0.75rem 1.5rem;
  }
}

.site-footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
}
.footer-brand {
  flex: 1 1 200px;
}
.footer-logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 0.5rem;
}
.footer-logo:hover {
  color: #f0a500;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
  margin-top: 0.5rem;
}
.footer-nav a {
  color: #b0b0c0;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #f0a500;
}
.footer-legal {
  flex: 1 1 180px;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.footer-legal a {
  color: #b0b0c0;
  text-decoration: none;
}
.footer-legal a:hover {
  color: #f0a500;
}
.footer-contact {
  flex: 1 1 220px;
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.footer-contact a {
  color: #b0b0c0;
  text-decoration: none;
}
.footer-contact a:hover {
  color: #f0a500;
}
.footer-disclaimer {
  flex: 1 1 100%;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #2a2a4e;
  font-size: 0.8rem;
  color: #9a9ab0;
}
.footer-disclaimer p {
  margin: 0;
}
.footer-copy {
  flex: 1 1 100%;
  text-align: center;
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: #7a7a90;
}
.footer-copy p {
  margin: 0;
}
@media (max-width: 640px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-nav {
    justify-content: center;
  }
  .footer-legal {
    align-items: center;
  }
  .footer-contact {
    align-items: center;
  }
}

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

    .nfcookie-v11__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, .45), rgba(17, 24, 39, .95));
        color: var(--neutral-100);
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, .35);
    }

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

    .nfcookie-v11__top strong {font-size: 16px;}

    .nfcookie-v11__top button {
        border: 0;
        background: transparent;
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
        cursor: pointer;
    }

    .nfcookie-v11 p {margin: 10px 0 0; color: #d1d5db;}

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

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

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

    @media (max-width: 760px) {
        .nfcookie-v11__card {max-width: none;}
    }

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

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

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

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

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

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

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

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

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
  padding: var(--space-y) 0;
}

.header.scrolled {
  background: var(--surface-1);
  box-shadow: var(--shadow-md);
  padding: calc(var(--space-y) * 0.6) 0;
}

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

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

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

.header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  gap: 5px;
  z-index: 101;
}

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

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

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

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

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

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

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

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

  .header__nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--surface-1);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    z-index: 100;
  }

  .header__nav.open {
    opacity: 1;
    visibility: visible;
  }

  .header__nav-list {
    flex-direction: column;
    gap: calc(var(--gap) * 1.5);
    text-align: center;
  }

  .header__nav-link {
    font-size: 1.25rem;
    padding: 0.75rem 1.5rem;
  }
}

.site-footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
}
.footer-brand {
  flex: 1 1 200px;
}
.footer-logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 0.5rem;
}
.footer-logo:hover {
  color: #f0a500;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
  margin-top: 0.5rem;
}
.footer-nav a {
  color: #b0b0c0;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #f0a500;
}
.footer-legal {
  flex: 1 1 180px;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.footer-legal a {
  color: #b0b0c0;
  text-decoration: none;
}
.footer-legal a:hover {
  color: #f0a500;
}
.footer-contact {
  flex: 1 1 220px;
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.footer-contact a {
  color: #b0b0c0;
  text-decoration: none;
}
.footer-contact a:hover {
  color: #f0a500;
}
.footer-disclaimer {
  flex: 1 1 100%;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #2a2a4e;
  font-size: 0.8rem;
  color: #9a9ab0;
}
.footer-disclaimer p {
  margin: 0;
}
.footer-copy {
  flex: 1 1 100%;
  text-align: center;
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: #7a7a90;
}
.footer-copy p {
  margin: 0;
}
@media (max-width: 640px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-nav {
    justify-content: center;
  }
  .footer-legal {
    align-items: center;
  }
  .footer-contact {
    align-items: center;
  }
}

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

    .nfcookie-v11__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, .45), rgba(17, 24, 39, .95));
        color: var(--neutral-100);
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, .35);
    }

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

    .nfcookie-v11__top strong {font-size: 16px;}

    .nfcookie-v11__top button {
        border: 0;
        background: transparent;
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
        cursor: pointer;
    }

    .nfcookie-v11 p {margin: 10px 0 0; color: #d1d5db;}

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

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

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

    @media (max-width: 760px) {
        .nfcookie-v11__card {max-width: none;}
    }

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

    .policy-layout-b .wrap {
        max-width: 900px;
        margin: 0 auto;
    }

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

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

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

    .policy-layout-b ol {
        margin: 0;
        padding-left: 18px;
        display: grid;
        gap: 10px;
    }

    .policy-layout-b li {
        background: var(--bg-alt);
        border-radius: var(--radius-md);
        border: 1px solid var(--border-on-surface);
        padding: 12px;
    }

    .policy-layout-b h3 {
        margin: 0;
        color: var(--brand);
        font-size: 1rem;
    }

    .policy-layout-b li p {
        margin: 8px 0 0;
        color: var(--neutral-600);
    }

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
  padding: var(--space-y) 0;
}

.header.scrolled {
  background: var(--surface-1);
  box-shadow: var(--shadow-md);
  padding: calc(var(--space-y) * 0.6) 0;
}

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

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

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

.header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  gap: 5px;
  z-index: 101;
}

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

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

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

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

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

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

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

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

  .header__nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--surface-1);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    z-index: 100;
  }

  .header__nav.open {
    opacity: 1;
    visibility: visible;
  }

  .header__nav-list {
    flex-direction: column;
    gap: calc(var(--gap) * 1.5);
    text-align: center;
  }

  .header__nav-link {
    font-size: 1.25rem;
    padding: 0.75rem 1.5rem;
  }
}

.site-footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
}
.footer-brand {
  flex: 1 1 200px;
}
.footer-logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 0.5rem;
}
.footer-logo:hover {
  color: #f0a500;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
  margin-top: 0.5rem;
}
.footer-nav a {
  color: #b0b0c0;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #f0a500;
}
.footer-legal {
  flex: 1 1 180px;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.footer-legal a {
  color: #b0b0c0;
  text-decoration: none;
}
.footer-legal a:hover {
  color: #f0a500;
}
.footer-contact {
  flex: 1 1 220px;
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.footer-contact a {
  color: #b0b0c0;
  text-decoration: none;
}
.footer-contact a:hover {
  color: #f0a500;
}
.footer-disclaimer {
  flex: 1 1 100%;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #2a2a4e;
  font-size: 0.8rem;
  color: #9a9ab0;
}
.footer-disclaimer p {
  margin: 0;
}
.footer-copy {
  flex: 1 1 100%;
  text-align: center;
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: #7a7a90;
}
.footer-copy p {
  margin: 0;
}
@media (max-width: 640px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-nav {
    justify-content: center;
  }
  .footer-legal {
    align-items: center;
  }
  .footer-contact {
    align-items: center;
  }
}

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

    .nfcookie-v11__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, .45), rgba(17, 24, 39, .95));
        color: var(--neutral-100);
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, .35);
    }

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

    .nfcookie-v11__top strong {font-size: 16px;}

    .nfcookie-v11__top button {
        border: 0;
        background: transparent;
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
        cursor: pointer;
    }

    .nfcookie-v11 p {margin: 10px 0 0; color: #d1d5db;}

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

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

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

    @media (max-width: 760px) {
        .nfcookie-v11__card {max-width: none;}
    }

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

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

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

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

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

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
  padding: var(--space-y) 0;
}

.header.scrolled {
  background: var(--surface-1);
  box-shadow: var(--shadow-md);
  padding: calc(var(--space-y) * 0.6) 0;
}

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

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

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

.header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  gap: 5px;
  z-index: 101;
}

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

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

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

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

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

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

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

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

  .header__nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--surface-1);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    z-index: 100;
  }

  .header__nav.open {
    opacity: 1;
    visibility: visible;
  }

  .header__nav-list {
    flex-direction: column;
    gap: calc(var(--gap) * 1.5);
    text-align: center;
  }

  .header__nav-link {
    font-size: 1.25rem;
    padding: 0.75rem 1.5rem;
  }
}

.site-footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
}
.footer-brand {
  flex: 1 1 200px;
}
.footer-logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 0.5rem;
}
.footer-logo:hover {
  color: #f0a500;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
  margin-top: 0.5rem;
}
.footer-nav a {
  color: #b0b0c0;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #f0a500;
}
.footer-legal {
  flex: 1 1 180px;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.footer-legal a {
  color: #b0b0c0;
  text-decoration: none;
}
.footer-legal a:hover {
  color: #f0a500;
}
.footer-contact {
  flex: 1 1 220px;
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.footer-contact a {
  color: #b0b0c0;
  text-decoration: none;
}
.footer-contact a:hover {
  color: #f0a500;
}
.footer-disclaimer {
  flex: 1 1 100%;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #2a2a4e;
  font-size: 0.8rem;
  color: #9a9ab0;
}
.footer-disclaimer p {
  margin: 0;
}
.footer-copy {
  flex: 1 1 100%;
  text-align: center;
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: #7a7a90;
}
.footer-copy p {
  margin: 0;
}
@media (max-width: 640px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-nav {
    justify-content: center;
  }
  .footer-legal {
    align-items: center;
  }
  .footer-contact {
    align-items: center;
  }
}

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

    .nfcookie-v11__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, .45), rgba(17, 24, 39, .95));
        color: var(--neutral-100);
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, .35);
    }

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

    .nfcookie-v11__top strong {font-size: 16px;}

    .nfcookie-v11__top button {
        border: 0;
        background: transparent;
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
        cursor: pointer;
    }

    .nfcookie-v11 p {margin: 10px 0 0; color: #d1d5db;}

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

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

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

    @media (max-width: 760px) {
        .nfcookie-v11__card {max-width: none;}
    }

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

    .err-slab-f .chip {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(28px, 4vw, 46px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface-light);
        box-shadow: var(--shadow-sm);
        position: relative;
    }

    .err-slab-f .chip::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 6px;
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        background: var(--gradient-accent);
    }

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

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

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