:root {
  --font-family: "Archivo", sans-serif;
  --font-size-base: 13.8px;
  --line-height-base: 1.32;

  --max-w: 1020px;
  --space-x: 0.65rem;
  --space-y: 0.58rem;
  --gap: 0.76rem;

  --radius-xl: 0.97rem;
  --radius-lg: 0.63rem;
  --radius-md: 0.34rem;
  --radius-sm: 0.24rem;

  --shadow-sm: 0 0px 3px rgba(0,0,0,0.04);
  --shadow-md: 0 2px 8px rgba(0,0,0,0.05);
  --shadow-lg: 0 12px 16px rgba(0,0,0,0.07);

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

  --brand: #1A3A5C;
  --brand-contrast: #FFFFFF;
  --accent: #005B96;
  --accent-contrast: #FFFFFF;

  --neutral-0: #FFFFFF;
  --neutral-100: #F2F4F7;
  --neutral-300: #B0B8C4;
  --neutral-600: #5A6570;
  --neutral-800: #2C353D;
  --neutral-900: #1A202C;

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

  --bg-alt: #F2F4F7;
  --fg-on-alt: #2C353D;

  --surface-1: #FFFFFF;
  --surface-2: #F8F9FA;
  --fg-on-surface: #1A202C;
  --border-on-surface: #D1D5DB;

  --surface-light: #FFFFFF;
  --fg-on-surface-light: #2C353D;
  --border-on-surface-light: #E5E7EB;

  --bg-primary: #005B96;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #004070;
  --ring: #005B96;

  --bg-accent: #005B96;
  --fg-on-accent: #FFFFFF;
  --bg-accent-hover: #004070;

  --link: #005B96;
  --link-hover: #003D66;

  --gradient-hero: linear-gradient(135deg, #1A3A5C 0%, #005B96 100%);
  --gradient-accent: linear-gradient(135deg, #005B96 0%, #003D66 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;}

.site-header {
  background-color: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 100;
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: 0.02em;
  order: 1;
}

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

.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--neutral-800);
  border-radius: var(--radius-sm);
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

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

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

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

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

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

.nav-link:hover,
.nav-link:focus-visible {
  background-color: var(--btn-ghost-bg-hover);
  color: var(--brand);
  outline: none;
}

@media (max-width: 767px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
  }

  .burger {
    display: flex;
    position: absolute;
    left: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
  }

  .logo {
    order: 1;
    flex: 1 0 auto;
    text-align: center;
  }

  .nav {
    order: 2;
    flex: 0 0 100%;
    display: none;
    margin-top: var(--space-y);
  }

  .nav.open {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: var(--space-y) 0;
  }

  .nav-link {
    display: block;
    padding: 0.5rem 1rem;
    width: 100%;
    text-align: center;
    font-size: 1.1rem;
  }
}

.site-footer {
    background-color: #1a2a3a;
    color: #e0e6ed;
    padding: 2.5rem 1.5rem 1.5rem;
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    margin-bottom: 1.5rem;
  }
  .footer-row:last-child {
    margin-bottom: 0;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
  }
  .footer-brand {
    flex-shrink: 0;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
  }
  .footer-nav {
    flex: 1 1 auto;
  }
  .footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem 2rem;
    justify-content: flex-end;
  }
  .footer-menu a {
    color: #b0c4d9;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s ease;
  }
  .footer-menu a:hover,
  .footer-menu a:focus {
    color: #ffffff;
    text-decoration: underline;
  }
  .footer-middle {
    border-top: 1px solid #2f4052;
    padding-top: 1.5rem;
  }
  .footer-contact {
    max-width: 600px;
  }
  .contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }
  .contact-list li {
    font-size: 0.95rem;
  }
  .contact-label {
    font-weight: 600;
    color: #cbd5e1;
    margin-right: 0.3rem;
  }
  .contact-list a {
    color: #b0c4d9;
    text-decoration: none;
  }
  .contact-list a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
  .footer-bottom {
    border-top: 1px solid #2f4052;
    padding-top: 1.5rem;
    text-align: center;
  }
  .footer-legal {
    font-size: 0.85rem;
    color: #9aaec2;
  }
  .footer-copy {
    margin: 0 0 0.5rem;
  }
  .footer-links {
    margin: 0.3rem 0;
  }
  .footer-links a {
    color: #b0c4d9;
    text-decoration: none;
  }
  .footer-links a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
  .footer-disclaimer {
    margin: 0.8rem auto 0;
    max-width: 800px;
    font-style: italic;
    opacity: 0.85;
    line-height: 1.5;
  }
  @media (max-width: 640px) {
    .footer-top {
      flex-direction: column;
      align-items: flex-start;
    }
    .footer-menu {
      justify-content: flex-start;
      gap: 1rem 1.5rem;
    }
    .footer-contact {
      max-width: 100%;
    }
  }

.cookie-lv8 {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1200;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 12px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 14px 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

    .cookie-lv8__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

    .cookie-lv8__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-lv8__actions button {
        border: 0;
        border-radius: 999px;
        background: var(--neutral-100);
        color: var(--fg-on-page);
        padding: 7px 11px;
        cursor: pointer;
    }

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

    @media (max-width: 760px) {
        .cookie-lv8 {
            border-radius: var(--radius-lg);
        }
    }

.hero-arc-v5 {
        padding: calc(var(--space-y) * 2.4) var(--space-x);
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    .hero-arc-v5 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        gap: calc(var(--gap) * 2);
        align-items: flex-end;
        justify-content: space-between;
    }

    .hero-arc-v5 .content {
        max-width: 66ch;
    }

    .hero-arc-v5 h1 {
        margin: .25rem 0;
        font-size: clamp(2.1rem, 5vw, 4rem);
        line-height: 1.02;
        letter-spacing: -.02em;
    }

    .hero-arc-v5 .subtitle {
        margin: 0 0 .5rem;
        opacity: .9;
        font-size: 1.05rem;
    }

    .hero-arc-v5 .desc {
        margin: 0;
        opacity: .8;
        max-width: 58ch;
    }

    .hero-arc-v5 .aside {
        min-width: 280px;
        max-width: 360px;
        display: grid;
        gap: var(--gap);
    }

    .hero-arc-v5 img {
        width: 100%;
        display: block;
        aspect-ratio: 4/5;
        object-fit: cover;
        border-radius: var(--radius-xl);
    }

    .hero-arc-v5 .actions {
        display: grid;
        gap: .7rem;
    }

    .hero-arc-v5 .actions a {
        display: block;
        text-align: center;
        padding: .66rem;
        border-radius: var(--radius-md);
        text-decoration: none;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-weight: 700;
    }

    .hero-arc-v5 .actions a:nth-child(even) {
        background: var(--surface-1);
        color: var(--fg-on-surface);
    }

    .hero-arc-v5 .ticker {
        max-width: var(--max-w);
        margin: calc(var(--space-y) * 1.2) auto 0;
        display: flex;
        flex-wrap: wrap;
        gap: .7rem;
        padding-top: var(--space-y);
        border-top: 1px solid var(--neutral-600);
    }

    .hero-arc-v5 .ticker span {
        padding: .45rem .7rem;
        border-radius: var(--radius-sm);
        background: var(--chip-bg);
        font-size: .9rem;
    }

    @media (max-width: 940px) {
        .hero-arc-v5 .shell {
            flex-direction: column;
            align-items: stretch;
        }

        .hero-arc-v5 .aside {
            max-width: none;
        }

        .hero-arc-v5 img {
            aspect-ratio: 16/9;
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.nfsocial-v11 {
        padding: clamp(48px, 8vw, 80px) 0;
        background: linear-gradient(145deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
    }

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

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

    .nfsocial-v11__media img {
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        width: 100%;
        display: block;
    }

    .nfsocial-v11__text h2 {
        margin-bottom: var(--space-y);
    }

    .nfsocial-v11__text p {
        margin-bottom: var(--space-y);
        opacity: .92;
    }

    .nfsocial-v11__text a {
        display: inline-block;
        padding: 12px 24px;
        border-radius: var(--radius-md);
        text-decoration: none;
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

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

.features-struct-v1 {
        padding: calc(var(--space-y) * 2) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-surface)
    }

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

    .features-struct-v1 h2, .features-struct-v1 h3, .features-struct-v1 p {
        margin: 0
    }

    .features-struct-v1 .head {
        display: grid;
        gap: calc(var(--gap) * .35)
    }

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

    .features-struct-v1 article {
        background: var(--surface-2);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        padding: .9rem;
        display: grid;
        gap: .5rem
    }

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

    .features-struct-v1 .layout {
        display: grid;
        grid-template-columns:.9fr 1.1fr;
        gap: var(--gap)
    }

    .features-struct-v1 .chips {
        display: flex;
        flex-wrap: wrap;
        gap: .4rem
    }

    .features-struct-v1 .chips span {
        padding: .3rem .55rem;
        border-radius: var(--radius-sm);
        background: var(--surface-2);
        border: 1px solid var(--border-on-surface)
    }

    .features-struct-v1 .list {
        display: grid;
        gap: .6rem
    }

    .features-struct-v1 .list div {
        padding: .75rem;
        border-radius: var(--radius-md);
        background: var(--surface-2);
        border: 1px solid var(--border-on-surface)
    }

    .features-struct-v1 .timeline {
        display: grid;
        gap: .7rem
    }

    .features-struct-v1 .timeline article {
        position: relative;
        padding-left: 1.2rem
    }

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

    .features-struct-v1 .side img, .features-struct-v1 .media img {
        display: block;
        width: 100%;
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-md)
    }

    .features-struct-v1 .table {
        display: grid;
        gap: .45rem
    }

    .features-struct-v1 .row {
        display: grid;
        grid-template-columns:1fr 1fr 1fr;
        gap: .5rem;
        padding: .65rem;
        border-radius: var(--radius-md);
        background: var(--surface-2);
        border: 1px solid var(--border-on-surface)
    }

    .features-struct-v1 .cards {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: var(--gap)
    }

    .features-struct-v1 .cta {
        display: flex;
        justify-content: flex-start
    }

    .features-struct-v1 .split {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: var(--gap)
    }

    .features-struct-v1 details {
        padding: .75rem;
        border-radius: var(--radius-md);
        background: var(--surface-2);
        border: 1px solid var(--border-on-surface)
    }

    @media (max-width: 900px) {
        .features-struct-v1 .grid, .features-struct-v1 .cards {
            grid-template-columns:1fr 1fr
        }

        .features-struct-v1 .layout, .features-struct-v1 .split {
            grid-template-columns:1fr
        }
    }

    @media (max-width: 680px) {
        .features-struct-v1 .grid, .features-struct-v1 .cards, .features-struct-v1 .row {
            grid-template-columns:1fr
        }
    }

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

    .visual-path-c3__wrap {
        max-width: 62rem;
        margin: 0 auto;
    }

    .visual-path-c3__head {
        margin-bottom: 1rem;
    }

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

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

    .visual-path-c3__list {
        display: grid;
        gap: .8rem;
    }

    .visual-path-c3__list article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .18);
    }

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

    .visual-path-c3__meta span {
        color: rgba(255, 255, 255, .78);
    }

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

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

    .visual-path-c3__content small {
        color: rgba(255, 255, 255, .76);
    }

    .visual-path-c3__content h3 {
        margin: .45rem 0 .35rem;
    }

    .visual-path-c3__content p {
        margin: 0;
        color: rgba(255, 255, 255, .84);
    }

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

.site-header {
  background-color: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 100;
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: 0.02em;
  order: 1;
}

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

.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--neutral-800);
  border-radius: var(--radius-sm);
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

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

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

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

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

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

.nav-link:hover,
.nav-link:focus-visible {
  background-color: var(--btn-ghost-bg-hover);
  color: var(--brand);
  outline: none;
}

@media (max-width: 767px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
  }

  .burger {
    display: flex;
    position: absolute;
    left: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
  }

  .logo {
    order: 1;
    flex: 1 0 auto;
    text-align: center;
  }

  .nav {
    order: 2;
    flex: 0 0 100%;
    display: none;
    margin-top: var(--space-y);
  }

  .nav.open {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: var(--space-y) 0;
  }

  .nav-link {
    display: block;
    padding: 0.5rem 1rem;
    width: 100%;
    text-align: center;
    font-size: 1.1rem;
  }
}

.site-footer {
    background-color: #1a2a3a;
    color: #e0e6ed;
    padding: 2.5rem 1.5rem 1.5rem;
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    margin-bottom: 1.5rem;
  }
  .footer-row:last-child {
    margin-bottom: 0;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
  }
  .footer-brand {
    flex-shrink: 0;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
  }
  .footer-nav {
    flex: 1 1 auto;
  }
  .footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem 2rem;
    justify-content: flex-end;
  }
  .footer-menu a {
    color: #b0c4d9;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s ease;
  }
  .footer-menu a:hover,
  .footer-menu a:focus {
    color: #ffffff;
    text-decoration: underline;
  }
  .footer-middle {
    border-top: 1px solid #2f4052;
    padding-top: 1.5rem;
  }
  .footer-contact {
    max-width: 600px;
  }
  .contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }
  .contact-list li {
    font-size: 0.95rem;
  }
  .contact-label {
    font-weight: 600;
    color: #cbd5e1;
    margin-right: 0.3rem;
  }
  .contact-list a {
    color: #b0c4d9;
    text-decoration: none;
  }
  .contact-list a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
  .footer-bottom {
    border-top: 1px solid #2f4052;
    padding-top: 1.5rem;
    text-align: center;
  }
  .footer-legal {
    font-size: 0.85rem;
    color: #9aaec2;
  }
  .footer-copy {
    margin: 0 0 0.5rem;
  }
  .footer-links {
    margin: 0.3rem 0;
  }
  .footer-links a {
    color: #b0c4d9;
    text-decoration: none;
  }
  .footer-links a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
  .footer-disclaimer {
    margin: 0.8rem auto 0;
    max-width: 800px;
    font-style: italic;
    opacity: 0.85;
    line-height: 1.5;
  }
  @media (max-width: 640px) {
    .footer-top {
      flex-direction: column;
      align-items: flex-start;
    }
    .footer-menu {
      justify-content: flex-start;
      gap: 1rem 1.5rem;
    }
    .footer-contact {
      max-width: 100%;
    }
  }

.cookie-lv8 {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1200;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 12px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 14px 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

    .cookie-lv8__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

    .cookie-lv8__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-lv8__actions button {
        border: 0;
        border-radius: 999px;
        background: var(--neutral-100);
        color: var(--fg-on-page);
        padding: 7px 11px;
        cursor: pointer;
    }

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

    @media (max-width: 760px) {
        .cookie-lv8 {
            border-radius: var(--radius-lg);
        }
    }

.post-list {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.site-header {
  background-color: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 100;
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: 0.02em;
  order: 1;
}

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

.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--neutral-800);
  border-radius: var(--radius-sm);
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

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

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

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

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

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

.nav-link:hover,
.nav-link:focus-visible {
  background-color: var(--btn-ghost-bg-hover);
  color: var(--brand);
  outline: none;
}

@media (max-width: 767px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
  }

  .burger {
    display: flex;
    position: absolute;
    left: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
  }

  .logo {
    order: 1;
    flex: 1 0 auto;
    text-align: center;
  }

  .nav {
    order: 2;
    flex: 0 0 100%;
    display: none;
    margin-top: var(--space-y);
  }

  .nav.open {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: var(--space-y) 0;
  }

  .nav-link {
    display: block;
    padding: 0.5rem 1rem;
    width: 100%;
    text-align: center;
    font-size: 1.1rem;
  }
}

.site-footer {
    background-color: #1a2a3a;
    color: #e0e6ed;
    padding: 2.5rem 1.5rem 1.5rem;
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    margin-bottom: 1.5rem;
  }
  .footer-row:last-child {
    margin-bottom: 0;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
  }
  .footer-brand {
    flex-shrink: 0;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
  }
  .footer-nav {
    flex: 1 1 auto;
  }
  .footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem 2rem;
    justify-content: flex-end;
  }
  .footer-menu a {
    color: #b0c4d9;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s ease;
  }
  .footer-menu a:hover,
  .footer-menu a:focus {
    color: #ffffff;
    text-decoration: underline;
  }
  .footer-middle {
    border-top: 1px solid #2f4052;
    padding-top: 1.5rem;
  }
  .footer-contact {
    max-width: 600px;
  }
  .contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }
  .contact-list li {
    font-size: 0.95rem;
  }
  .contact-label {
    font-weight: 600;
    color: #cbd5e1;
    margin-right: 0.3rem;
  }
  .contact-list a {
    color: #b0c4d9;
    text-decoration: none;
  }
  .contact-list a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
  .footer-bottom {
    border-top: 1px solid #2f4052;
    padding-top: 1.5rem;
    text-align: center;
  }
  .footer-legal {
    font-size: 0.85rem;
    color: #9aaec2;
  }
  .footer-copy {
    margin: 0 0 0.5rem;
  }
  .footer-links {
    margin: 0.3rem 0;
  }
  .footer-links a {
    color: #b0c4d9;
    text-decoration: none;
  }
  .footer-links a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
  .footer-disclaimer {
    margin: 0.8rem auto 0;
    max-width: 800px;
    font-style: italic;
    opacity: 0.85;
    line-height: 1.5;
  }
  @media (max-width: 640px) {
    .footer-top {
      flex-direction: column;
      align-items: flex-start;
    }
    .footer-menu {
      justify-content: flex-start;
      gap: 1rem 1.5rem;
    }
    .footer-contact {
      max-width: 100%;
    }
  }

.cookie-lv8 {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1200;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 12px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 14px 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

    .cookie-lv8__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

    .cookie-lv8__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-lv8__actions button {
        border: 0;
        border-radius: 999px;
        background: var(--neutral-100);
        color: var(--fg-on-page);
        padding: 7px 11px;
        cursor: pointer;
    }

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

    @media (max-width: 760px) {
        .cookie-lv8 {
            border-radius: var(--radius-lg);
        }
    }

.post-item {

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

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

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

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

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

        font-size: 0.875rem;
    }

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

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

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

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

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

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

    .post-item .post-item__comment-text {

        margin-bottom: 0.5rem;
    }

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

    }

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

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

    }

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

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

.site-header {
  background-color: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 100;
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: 0.02em;
  order: 1;
}

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

.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--neutral-800);
  border-radius: var(--radius-sm);
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

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

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

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

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

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

.nav-link:hover,
.nav-link:focus-visible {
  background-color: var(--btn-ghost-bg-hover);
  color: var(--brand);
  outline: none;
}

@media (max-width: 767px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
  }

  .burger {
    display: flex;
    position: absolute;
    left: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
  }

  .logo {
    order: 1;
    flex: 1 0 auto;
    text-align: center;
  }

  .nav {
    order: 2;
    flex: 0 0 100%;
    display: none;
    margin-top: var(--space-y);
  }

  .nav.open {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: var(--space-y) 0;
  }

  .nav-link {
    display: block;
    padding: 0.5rem 1rem;
    width: 100%;
    text-align: center;
    font-size: 1.1rem;
  }
}

.site-footer {
    background-color: #1a2a3a;
    color: #e0e6ed;
    padding: 2.5rem 1.5rem 1.5rem;
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    margin-bottom: 1.5rem;
  }
  .footer-row:last-child {
    margin-bottom: 0;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
  }
  .footer-brand {
    flex-shrink: 0;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
  }
  .footer-nav {
    flex: 1 1 auto;
  }
  .footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem 2rem;
    justify-content: flex-end;
  }
  .footer-menu a {
    color: #b0c4d9;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s ease;
  }
  .footer-menu a:hover,
  .footer-menu a:focus {
    color: #ffffff;
    text-decoration: underline;
  }
  .footer-middle {
    border-top: 1px solid #2f4052;
    padding-top: 1.5rem;
  }
  .footer-contact {
    max-width: 600px;
  }
  .contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }
  .contact-list li {
    font-size: 0.95rem;
  }
  .contact-label {
    font-weight: 600;
    color: #cbd5e1;
    margin-right: 0.3rem;
  }
  .contact-list a {
    color: #b0c4d9;
    text-decoration: none;
  }
  .contact-list a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
  .footer-bottom {
    border-top: 1px solid #2f4052;
    padding-top: 1.5rem;
    text-align: center;
  }
  .footer-legal {
    font-size: 0.85rem;
    color: #9aaec2;
  }
  .footer-copy {
    margin: 0 0 0.5rem;
  }
  .footer-links {
    margin: 0.3rem 0;
  }
  .footer-links a {
    color: #b0c4d9;
    text-decoration: none;
  }
  .footer-links a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
  .footer-disclaimer {
    margin: 0.8rem auto 0;
    max-width: 800px;
    font-style: italic;
    opacity: 0.85;
    line-height: 1.5;
  }
  @media (max-width: 640px) {
    .footer-top {
      flex-direction: column;
      align-items: flex-start;
    }
    .footer-menu {
      justify-content: flex-start;
      gap: 1rem 1.5rem;
    }
    .footer-contact {
      max-width: 100%;
    }
  }

.cookie-lv8 {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1200;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 12px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 14px 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

    .cookie-lv8__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

    .cookie-lv8__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-lv8__actions button {
        border: 0;
        border-radius: 999px;
        background: var(--neutral-100);
        color: var(--fg-on-page);
        padding: 7px 11px;
        cursor: pointer;
    }

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

    @media (max-width: 760px) {
        .cookie-lv8 {
            border-radius: var(--radius-lg);
        }
    }

.post-item--light-v6 {

    padding: 48px 20px;
    background: var(--bg-page);
    color: var(--fg-on-page);
}

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

.post-item__inner h1 {
    margin: 0 0 4px;
    font-size: clamp(24px,4vw,32px);
}

.post-item__meta {
    margin: 0 0 8px;
    font-size: 0.85rem;
    color: var(--neutral-600);
}

.post-item__lead {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.site-header {
  background-color: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 100;
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: 0.02em;
  order: 1;
}

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

.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--neutral-800);
  border-radius: var(--radius-sm);
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

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

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

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

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

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

.nav-link:hover,
.nav-link:focus-visible {
  background-color: var(--btn-ghost-bg-hover);
  color: var(--brand);
  outline: none;
}

@media (max-width: 767px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
  }

  .burger {
    display: flex;
    position: absolute;
    left: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
  }

  .logo {
    order: 1;
    flex: 1 0 auto;
    text-align: center;
  }

  .nav {
    order: 2;
    flex: 0 0 100%;
    display: none;
    margin-top: var(--space-y);
  }

  .nav.open {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: var(--space-y) 0;
  }

  .nav-link {
    display: block;
    padding: 0.5rem 1rem;
    width: 100%;
    text-align: center;
    font-size: 1.1rem;
  }
}

.site-footer {
    background-color: #1a2a3a;
    color: #e0e6ed;
    padding: 2.5rem 1.5rem 1.5rem;
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    margin-bottom: 1.5rem;
  }
  .footer-row:last-child {
    margin-bottom: 0;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
  }
  .footer-brand {
    flex-shrink: 0;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
  }
  .footer-nav {
    flex: 1 1 auto;
  }
  .footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem 2rem;
    justify-content: flex-end;
  }
  .footer-menu a {
    color: #b0c4d9;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s ease;
  }
  .footer-menu a:hover,
  .footer-menu a:focus {
    color: #ffffff;
    text-decoration: underline;
  }
  .footer-middle {
    border-top: 1px solid #2f4052;
    padding-top: 1.5rem;
  }
  .footer-contact {
    max-width: 600px;
  }
  .contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }
  .contact-list li {
    font-size: 0.95rem;
  }
  .contact-label {
    font-weight: 600;
    color: #cbd5e1;
    margin-right: 0.3rem;
  }
  .contact-list a {
    color: #b0c4d9;
    text-decoration: none;
  }
  .contact-list a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
  .footer-bottom {
    border-top: 1px solid #2f4052;
    padding-top: 1.5rem;
    text-align: center;
  }
  .footer-legal {
    font-size: 0.85rem;
    color: #9aaec2;
  }
  .footer-copy {
    margin: 0 0 0.5rem;
  }
  .footer-links {
    margin: 0.3rem 0;
  }
  .footer-links a {
    color: #b0c4d9;
    text-decoration: none;
  }
  .footer-links a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
  .footer-disclaimer {
    margin: 0.8rem auto 0;
    max-width: 800px;
    font-style: italic;
    opacity: 0.85;
    line-height: 1.5;
  }
  @media (max-width: 640px) {
    .footer-top {
      flex-direction: column;
      align-items: flex-start;
    }
    .footer-menu {
      justify-content: flex-start;
      gap: 1rem 1.5rem;
    }
    .footer-contact {
      max-width: 100%;
    }
  }

.cookie-lv8 {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1200;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 12px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 14px 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

    .cookie-lv8__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

    .cookie-lv8__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-lv8__actions button {
        border: 0;
        border-radius: 999px;
        background: var(--neutral-100);
        color: var(--fg-on-page);
        padding: 7px 11px;
        cursor: pointer;
    }

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

    @media (max-width: 760px) {
        .cookie-lv8 {
            border-radius: var(--radius-lg);
        }
    }

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

.site-header {
  background-color: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 100;
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: 0.02em;
  order: 1;
}

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

.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--neutral-800);
  border-radius: var(--radius-sm);
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

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

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

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

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

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

.nav-link:hover,
.nav-link:focus-visible {
  background-color: var(--btn-ghost-bg-hover);
  color: var(--brand);
  outline: none;
}

@media (max-width: 767px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
  }

  .burger {
    display: flex;
    position: absolute;
    left: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
  }

  .logo {
    order: 1;
    flex: 1 0 auto;
    text-align: center;
  }

  .nav {
    order: 2;
    flex: 0 0 100%;
    display: none;
    margin-top: var(--space-y);
  }

  .nav.open {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: var(--space-y) 0;
  }

  .nav-link {
    display: block;
    padding: 0.5rem 1rem;
    width: 100%;
    text-align: center;
    font-size: 1.1rem;
  }
}

.site-footer {
    background-color: #1a2a3a;
    color: #e0e6ed;
    padding: 2.5rem 1.5rem 1.5rem;
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    margin-bottom: 1.5rem;
  }
  .footer-row:last-child {
    margin-bottom: 0;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
  }
  .footer-brand {
    flex-shrink: 0;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
  }
  .footer-nav {
    flex: 1 1 auto;
  }
  .footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem 2rem;
    justify-content: flex-end;
  }
  .footer-menu a {
    color: #b0c4d9;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s ease;
  }
  .footer-menu a:hover,
  .footer-menu a:focus {
    color: #ffffff;
    text-decoration: underline;
  }
  .footer-middle {
    border-top: 1px solid #2f4052;
    padding-top: 1.5rem;
  }
  .footer-contact {
    max-width: 600px;
  }
  .contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }
  .contact-list li {
    font-size: 0.95rem;
  }
  .contact-label {
    font-weight: 600;
    color: #cbd5e1;
    margin-right: 0.3rem;
  }
  .contact-list a {
    color: #b0c4d9;
    text-decoration: none;
  }
  .contact-list a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
  .footer-bottom {
    border-top: 1px solid #2f4052;
    padding-top: 1.5rem;
    text-align: center;
  }
  .footer-legal {
    font-size: 0.85rem;
    color: #9aaec2;
  }
  .footer-copy {
    margin: 0 0 0.5rem;
  }
  .footer-links {
    margin: 0.3rem 0;
  }
  .footer-links a {
    color: #b0c4d9;
    text-decoration: none;
  }
  .footer-links a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
  .footer-disclaimer {
    margin: 0.8rem auto 0;
    max-width: 800px;
    font-style: italic;
    opacity: 0.85;
    line-height: 1.5;
  }
  @media (max-width: 640px) {
    .footer-top {
      flex-direction: column;
      align-items: flex-start;
    }
    .footer-menu {
      justify-content: flex-start;
      gap: 1rem 1.5rem;
    }
    .footer-contact {
      max-width: 100%;
    }
  }

.cookie-lv8 {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1200;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 12px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 14px 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

    .cookie-lv8__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

    .cookie-lv8__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-lv8__actions button {
        border: 0;
        border-radius: 999px;
        background: var(--neutral-100);
        color: var(--fg-on-page);
        padding: 7px 11px;
        cursor: pointer;
    }

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

    @media (max-width: 760px) {
        .cookie-lv8 {
            border-radius: var(--radius-lg);
        }
    }

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

    .form-layout-c .wrap {
        max-width: 900px;
        margin: 0 auto;
    }

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

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

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

    .form-layout-c .steps {
        background: var(--surface-1);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface-light);
        padding: 16px;
    }

    .form-layout-c .row {
        display: grid;
        gap: 10px;
    }

    .form-layout-c .row.two {
        grid-template-columns: 1fr 1fr;
    }

    .form-layout-c label {
        display: grid;
        gap: 6px;
        margin-bottom: 10px;
    }

    .form-layout-c input:not([type="checkbox"]), .form-layout-c textarea {
        width: 100%;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        padding: 9px;
        font: inherit;
    }

    .form-layout-c .agree {
        display: flex;
        gap: 8px;
        align-items: center;
        margin-top: 2px;
    }

    .form-layout-c button {
        margin-top: 10px;
        border: 0;
        border-radius: var(--radius-sm);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: 10px 14px;
    }

    @media (max-width: 760px) {
        .form-layout-c .row.two {
            grid-template-columns: 1fr;
        }
    }

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

    .nftouch-v8__wrap {
        max-width: 900px;
        margin: 0 auto;
    }

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

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

    .nftouch-v8__list {
        display: grid;
        gap: 8px;
    }

    .nftouch-v8__row {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
        background: var(--surface-1);
        padding: 10px 12px;
        display: flex;
        justify-content: space-between;
        gap: 10px;
        align-items: center;
    }

    .nftouch-v8__title {
        margin: 0 0 4px;
        font-weight: 600;
    }

    .nftouch-v8__text {
        margin: 0;
        color: var(--neutral-600);
    }

    .nftouch-v8__row a {
        color: var(--link);
        text-decoration: none;
        white-space: nowrap;
    }

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

    @media (max-width: 700px) {
        .nftouch-v8__row {
            flex-direction: column;
            align-items: flex-start;
        }

        .nftouch-v8__row a {
            white-space: normal;
        }
    }

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

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

    .contact-layout-a .section-head {
        margin-bottom: 18px;
        text-align: center;
    }

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

    .contact-layout-a .section-head p {
        margin: 10px auto 0;
        max-width: 70ch;
        opacity: .92;
    }

    .contact-layout-a .panel {
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .3);
        border-radius: var(--radius-lg);
        padding: 18px;
        backdrop-filter: blur(6px);
    }

    .contact-layout-a h3 {
        margin: 0 0 12px;
    }

    .contact-layout-a .list p {
        margin: 0 0 10px;
        display: grid;
        gap: 2px;
    }

    .contact-layout-a .list span {
        opacity: .94;
    }

    .contact-layout-a .social-row {
        margin-top: 14px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        align-items: center;
    }

    .contact-layout-a .social-row a {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        display: grid;
        place-items: center;
        text-decoration: none;
        color: var(--fg-on-primary);
        border: 1px solid rgba(255, 255, 255, .4);
    }

    .contact-layout-a .social-row a:hover {
        background: rgba(255, 255, 255, .15);
    }

.site-header {
  background-color: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 100;
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: 0.02em;
  order: 1;
}

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

.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--neutral-800);
  border-radius: var(--radius-sm);
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

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

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

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

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

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

.nav-link:hover,
.nav-link:focus-visible {
  background-color: var(--btn-ghost-bg-hover);
  color: var(--brand);
  outline: none;
}

@media (max-width: 767px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
  }

  .burger {
    display: flex;
    position: absolute;
    left: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
  }

  .logo {
    order: 1;
    flex: 1 0 auto;
    text-align: center;
  }

  .nav {
    order: 2;
    flex: 0 0 100%;
    display: none;
    margin-top: var(--space-y);
  }

  .nav.open {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: var(--space-y) 0;
  }

  .nav-link {
    display: block;
    padding: 0.5rem 1rem;
    width: 100%;
    text-align: center;
    font-size: 1.1rem;
  }
}

.site-footer {
    background-color: #1a2a3a;
    color: #e0e6ed;
    padding: 2.5rem 1.5rem 1.5rem;
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    margin-bottom: 1.5rem;
  }
  .footer-row:last-child {
    margin-bottom: 0;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
  }
  .footer-brand {
    flex-shrink: 0;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
  }
  .footer-nav {
    flex: 1 1 auto;
  }
  .footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem 2rem;
    justify-content: flex-end;
  }
  .footer-menu a {
    color: #b0c4d9;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s ease;
  }
  .footer-menu a:hover,
  .footer-menu a:focus {
    color: #ffffff;
    text-decoration: underline;
  }
  .footer-middle {
    border-top: 1px solid #2f4052;
    padding-top: 1.5rem;
  }
  .footer-contact {
    max-width: 600px;
  }
  .contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }
  .contact-list li {
    font-size: 0.95rem;
  }
  .contact-label {
    font-weight: 600;
    color: #cbd5e1;
    margin-right: 0.3rem;
  }
  .contact-list a {
    color: #b0c4d9;
    text-decoration: none;
  }
  .contact-list a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
  .footer-bottom {
    border-top: 1px solid #2f4052;
    padding-top: 1.5rem;
    text-align: center;
  }
  .footer-legal {
    font-size: 0.85rem;
    color: #9aaec2;
  }
  .footer-copy {
    margin: 0 0 0.5rem;
  }
  .footer-links {
    margin: 0.3rem 0;
  }
  .footer-links a {
    color: #b0c4d9;
    text-decoration: none;
  }
  .footer-links a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
  .footer-disclaimer {
    margin: 0.8rem auto 0;
    max-width: 800px;
    font-style: italic;
    opacity: 0.85;
    line-height: 1.5;
  }
  @media (max-width: 640px) {
    .footer-top {
      flex-direction: column;
      align-items: flex-start;
    }
    .footer-menu {
      justify-content: flex-start;
      gap: 1rem 1.5rem;
    }
    .footer-contact {
      max-width: 100%;
    }
  }

.cookie-lv8 {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1200;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 12px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 14px 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

    .cookie-lv8__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

    .cookie-lv8__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-lv8__actions button {
        border: 0;
        border-radius: 999px;
        background: var(--neutral-100);
        color: var(--fg-on-page);
        padding: 7px 11px;
        cursor: pointer;
    }

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

    @media (max-width: 760px) {
        .cookie-lv8 {
            border-radius: var(--radius-lg);
        }
    }

.terms-layout-d {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--accent);
        color: var(--neutral-0);
    }

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

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

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

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

    .terms-layout-d ol {
        margin: 0;
        padding-left: 20px;
        display: grid;
        gap: 10px;
    }

    .terms-layout-d li {
        border: 1px solid rgba(255, 255, 255, .2);
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .05);
        padding: 12px;
    }

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

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

.site-header {
  background-color: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 100;
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: 0.02em;
  order: 1;
}

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

.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--neutral-800);
  border-radius: var(--radius-sm);
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

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

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

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

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

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

.nav-link:hover,
.nav-link:focus-visible {
  background-color: var(--btn-ghost-bg-hover);
  color: var(--brand);
  outline: none;
}

@media (max-width: 767px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
  }

  .burger {
    display: flex;
    position: absolute;
    left: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
  }

  .logo {
    order: 1;
    flex: 1 0 auto;
    text-align: center;
  }

  .nav {
    order: 2;
    flex: 0 0 100%;
    display: none;
    margin-top: var(--space-y);
  }

  .nav.open {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: var(--space-y) 0;
  }

  .nav-link {
    display: block;
    padding: 0.5rem 1rem;
    width: 100%;
    text-align: center;
    font-size: 1.1rem;
  }
}

.site-footer {
    background-color: #1a2a3a;
    color: #e0e6ed;
    padding: 2.5rem 1.5rem 1.5rem;
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    margin-bottom: 1.5rem;
  }
  .footer-row:last-child {
    margin-bottom: 0;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
  }
  .footer-brand {
    flex-shrink: 0;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
  }
  .footer-nav {
    flex: 1 1 auto;
  }
  .footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem 2rem;
    justify-content: flex-end;
  }
  .footer-menu a {
    color: #b0c4d9;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s ease;
  }
  .footer-menu a:hover,
  .footer-menu a:focus {
    color: #ffffff;
    text-decoration: underline;
  }
  .footer-middle {
    border-top: 1px solid #2f4052;
    padding-top: 1.5rem;
  }
  .footer-contact {
    max-width: 600px;
  }
  .contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }
  .contact-list li {
    font-size: 0.95rem;
  }
  .contact-label {
    font-weight: 600;
    color: #cbd5e1;
    margin-right: 0.3rem;
  }
  .contact-list a {
    color: #b0c4d9;
    text-decoration: none;
  }
  .contact-list a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
  .footer-bottom {
    border-top: 1px solid #2f4052;
    padding-top: 1.5rem;
    text-align: center;
  }
  .footer-legal {
    font-size: 0.85rem;
    color: #9aaec2;
  }
  .footer-copy {
    margin: 0 0 0.5rem;
  }
  .footer-links {
    margin: 0.3rem 0;
  }
  .footer-links a {
    color: #b0c4d9;
    text-decoration: none;
  }
  .footer-links a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
  .footer-disclaimer {
    margin: 0.8rem auto 0;
    max-width: 800px;
    font-style: italic;
    opacity: 0.85;
    line-height: 1.5;
  }
  @media (max-width: 640px) {
    .footer-top {
      flex-direction: column;
      align-items: flex-start;
    }
    .footer-menu {
      justify-content: flex-start;
      gap: 1rem 1.5rem;
    }
    .footer-contact {
      max-width: 100%;
    }
  }

.cookie-lv8 {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1200;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 12px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 14px 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

    .cookie-lv8__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

    .cookie-lv8__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-lv8__actions button {
        border: 0;
        border-radius: 999px;
        background: var(--neutral-100);
        color: var(--fg-on-page);
        padding: 7px 11px;
        cursor: pointer;
    }

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

    @media (max-width: 760px) {
        .cookie-lv8 {
            border-radius: var(--radius-lg);
        }
    }

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

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

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

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

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

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

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

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

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

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

.site-header {
  background-color: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 100;
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: 0.02em;
  order: 1;
}

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

.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--neutral-800);
  border-radius: var(--radius-sm);
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

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

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

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

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

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

.nav-link:hover,
.nav-link:focus-visible {
  background-color: var(--btn-ghost-bg-hover);
  color: var(--brand);
  outline: none;
}

@media (max-width: 767px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
  }

  .burger {
    display: flex;
    position: absolute;
    left: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
  }

  .logo {
    order: 1;
    flex: 1 0 auto;
    text-align: center;
  }

  .nav {
    order: 2;
    flex: 0 0 100%;
    display: none;
    margin-top: var(--space-y);
  }

  .nav.open {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: var(--space-y) 0;
  }

  .nav-link {
    display: block;
    padding: 0.5rem 1rem;
    width: 100%;
    text-align: center;
    font-size: 1.1rem;
  }
}

.site-footer {
    background-color: #1a2a3a;
    color: #e0e6ed;
    padding: 2.5rem 1.5rem 1.5rem;
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    margin-bottom: 1.5rem;
  }
  .footer-row:last-child {
    margin-bottom: 0;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
  }
  .footer-brand {
    flex-shrink: 0;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
  }
  .footer-nav {
    flex: 1 1 auto;
  }
  .footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem 2rem;
    justify-content: flex-end;
  }
  .footer-menu a {
    color: #b0c4d9;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s ease;
  }
  .footer-menu a:hover,
  .footer-menu a:focus {
    color: #ffffff;
    text-decoration: underline;
  }
  .footer-middle {
    border-top: 1px solid #2f4052;
    padding-top: 1.5rem;
  }
  .footer-contact {
    max-width: 600px;
  }
  .contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }
  .contact-list li {
    font-size: 0.95rem;
  }
  .contact-label {
    font-weight: 600;
    color: #cbd5e1;
    margin-right: 0.3rem;
  }
  .contact-list a {
    color: #b0c4d9;
    text-decoration: none;
  }
  .contact-list a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
  .footer-bottom {
    border-top: 1px solid #2f4052;
    padding-top: 1.5rem;
    text-align: center;
  }
  .footer-legal {
    font-size: 0.85rem;
    color: #9aaec2;
  }
  .footer-copy {
    margin: 0 0 0.5rem;
  }
  .footer-links {
    margin: 0.3rem 0;
  }
  .footer-links a {
    color: #b0c4d9;
    text-decoration: none;
  }
  .footer-links a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
  .footer-disclaimer {
    margin: 0.8rem auto 0;
    max-width: 800px;
    font-style: italic;
    opacity: 0.85;
    line-height: 1.5;
  }
  @media (max-width: 640px) {
    .footer-top {
      flex-direction: column;
      align-items: flex-start;
    }
    .footer-menu {
      justify-content: flex-start;
      gap: 1rem 1.5rem;
    }
    .footer-contact {
      max-width: 100%;
    }
  }

.cookie-lv8 {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1200;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 12px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 14px 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

    .cookie-lv8__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

    .cookie-lv8__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-lv8__actions button {
        border: 0;
        border-radius: 999px;
        background: var(--neutral-100);
        color: var(--fg-on-page);
        padding: 7px 11px;
        cursor: pointer;
    }

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

    @media (max-width: 760px) {
        .cookie-lv8 {
            border-radius: var(--radius-lg);
        }
    }

.thank-mode-d {
        padding: clamp(56px, 10vw, 114px) 18px;
        background: var(--accent);
        color: var(--accent-contrast);
    }

    .thank-mode-d .core {
        max-width: 740px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(28px, 4vw, 46px);
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, .24);
    }

    .thank-mode-d h1 {
        margin: 0;
        font-size: clamp(32px, 5vw, 52px);
    }

    .thank-mode-d p {
        margin: 12px 0 0;
        opacity: .9;
    }

    .thank-mode-d a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 16px;
        border-radius: 999px;
        text-decoration: none;
        background: var(--accent);
        color: var(--accent-contrast);
    }

.site-header {
  background-color: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 100;
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: 0.02em;
  order: 1;
}

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

.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--neutral-800);
  border-radius: var(--radius-sm);
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

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

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

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

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

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

.nav-link:hover,
.nav-link:focus-visible {
  background-color: var(--btn-ghost-bg-hover);
  color: var(--brand);
  outline: none;
}

@media (max-width: 767px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
  }

  .burger {
    display: flex;
    position: absolute;
    left: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
  }

  .logo {
    order: 1;
    flex: 1 0 auto;
    text-align: center;
  }

  .nav {
    order: 2;
    flex: 0 0 100%;
    display: none;
    margin-top: var(--space-y);
  }

  .nav.open {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: var(--space-y) 0;
  }

  .nav-link {
    display: block;
    padding: 0.5rem 1rem;
    width: 100%;
    text-align: center;
    font-size: 1.1rem;
  }
}

.site-footer {
    background-color: #1a2a3a;
    color: #e0e6ed;
    padding: 2.5rem 1.5rem 1.5rem;
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    margin-bottom: 1.5rem;
  }
  .footer-row:last-child {
    margin-bottom: 0;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
  }
  .footer-brand {
    flex-shrink: 0;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
  }
  .footer-nav {
    flex: 1 1 auto;
  }
  .footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem 2rem;
    justify-content: flex-end;
  }
  .footer-menu a {
    color: #b0c4d9;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s ease;
  }
  .footer-menu a:hover,
  .footer-menu a:focus {
    color: #ffffff;
    text-decoration: underline;
  }
  .footer-middle {
    border-top: 1px solid #2f4052;
    padding-top: 1.5rem;
  }
  .footer-contact {
    max-width: 600px;
  }
  .contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }
  .contact-list li {
    font-size: 0.95rem;
  }
  .contact-label {
    font-weight: 600;
    color: #cbd5e1;
    margin-right: 0.3rem;
  }
  .contact-list a {
    color: #b0c4d9;
    text-decoration: none;
  }
  .contact-list a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
  .footer-bottom {
    border-top: 1px solid #2f4052;
    padding-top: 1.5rem;
    text-align: center;
  }
  .footer-legal {
    font-size: 0.85rem;
    color: #9aaec2;
  }
  .footer-copy {
    margin: 0 0 0.5rem;
  }
  .footer-links {
    margin: 0.3rem 0;
  }
  .footer-links a {
    color: #b0c4d9;
    text-decoration: none;
  }
  .footer-links a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
  .footer-disclaimer {
    margin: 0.8rem auto 0;
    max-width: 800px;
    font-style: italic;
    opacity: 0.85;
    line-height: 1.5;
  }
  @media (max-width: 640px) {
    .footer-top {
      flex-direction: column;
      align-items: flex-start;
    }
    .footer-menu {
      justify-content: flex-start;
      gap: 1rem 1.5rem;
    }
    .footer-contact {
      max-width: 100%;
    }
  }

.cookie-lv8 {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1200;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 12px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 14px 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

    .cookie-lv8__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

    .cookie-lv8__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-lv8__actions button {
        border: 0;
        border-radius: 999px;
        background: var(--neutral-100);
        color: var(--fg-on-page);
        padding: 7px 11px;
        cursor: pointer;
    }

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

    @media (max-width: 760px) {
        .cookie-lv8 {
            border-radius: var(--radius-lg);
        }
    }

.err-slab-d {
        padding: clamp(56px, 10vw, 114px) 20px;
        background: var(--accent);
        color: var(--neutral-0);
    }

    .err-slab-d .plate {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(30px, 4vw, 50px);
        border-radius: var(--radius-xl);
        background: linear-gradient(160deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
        border: 1px solid rgba(255, 255, 255, 0.25);
    }

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

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

    .err-slab-d a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 18px;
        border-radius: var(--radius-md);
        background: var(--accent);
        color: var(--accent-contrast);
        text-decoration: none;
    }