:root {
  --font-family: "Rubik", sans-serif;
  --font-size-base: 14.5px;
  --line-height-base: 1.38;

  --max-w: 980px;
  --space-x: 0.61rem;
  --space-y: 1rem;
  --gap: 0.84rem;

  --radius-xl: 0.97rem;
  --radius-lg: 0.5rem;
  --radius-md: 0.34rem;
  --radius-sm: 0.2rem;

  --shadow-sm: 0 1px 4px rgba(0,0,0,0.05);
  --shadow-md: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 26px rgba(0,0,0,0.08);

  --overlay: rgba(0,0,0,0.5);
  --anim-duration: 160ms;
  --anim-ease: cubic-bezier(0.4,0,0.2,1);
  --random-number: 1;

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

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

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

  --bg-alt: #f0f4f8;
  --fg-on-alt: #1f2937;

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

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

  --bg-primary: #2563eb;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #1d4ed8;
  --ring: #2563eb;

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

  --link: #2563eb;
  --link-hover: #1d4ed8;

  --gradient-hero: linear-gradient(135deg, #1a3a5c 0%, #2563eb 100%);
  --gradient-accent: linear-gradient(135deg, #e67e22 0%, #d35400 100%);

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

.site-header {
  background: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}

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

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  line-height: var(--line-height-base);
}

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

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

.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--neutral-900);
  border-radius: var(--radius-sm);
  transition: all 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);
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--neutral-800);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  padding: 8px 16px;
  border-radius: var(--radius-md);
  transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}

.nav-link:hover {
  background: var(--surface-2);
  color: var(--brand);
}

.nav-link.active {
  background: var(--bg-primary);
  color: var(--fg-on-primary);
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  background: var(--accent);
  color: var(--accent-contrast);
  font-size: var(--font-size-base);
  font-weight: 600;
  line-height: var(--line-height-base);
  text-decoration: none;
  border-radius: var(--radius-xl);
  transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
  box-shadow: var(--shadow-md);
}

.cta-button:hover {
  background: var(--bg-accent-hover);
  box-shadow: var(--shadow-lg);
}

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

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

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

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

  .nav-link {
    font-size: calc(var(--font-size-base) * 1.25);
    padding: 12px 24px;
  }

  .cta-button {
    display: none;
  }
}

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

  .nav {
    position: static;
    opacity: 1;
    visibility: visible;
    height: auto;
    background: none;
    display: flex;
  }
}

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
  }
  .footer-brand {
    flex: 1 1 250px;
    min-width: 200px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .footer-logo:hover {
    color: #ffc107;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .footer-nav a {
    color: #b0b0c8;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-legal {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .footer-legal a {
    color: #b0b0c8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
  }
  .footer-legal a:hover {
    color: #f0a500;
  }
  .footer-contact {
    flex: 1 1 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 15px 30px;
    padding: 20px 0;
    border-top: 1px solid #2a2a3e;
    border-bottom: 1px solid #2a2a3e;
    margin-top: 10px;
  }
  .contact-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
  }
  .contact-label {
    font-weight: 600;
    color: #c0c0d0;
  }
  .contact-item a {
    color: #b0b0c8;
    text-decoration: none;
    transition: color 0.2s;
  }
  .contact-item a:hover {
    color: #f0a500;
  }
  .footer-bottom {
    flex: 1 1 100%;
    text-align: center;
    padding-top: 15px;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #8888a0;
    margin: 0 0 8px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-copyright {
    font-size: 0.85rem;
    color: #8888a0;
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-brand {
      text-align: center;
    }
    .footer-right {
      justify-content: center;
      text-align: center;
    }
    .footer-nav ul {
      align-items: center;
    }
    .footer-legal {
      align-items: center;
    }
    .footer-contact {
      justify-content: center;
    }
  }

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

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

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

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

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

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

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

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

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

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

.intro-mosaic-c15 {
        padding: clamp(3.9rem, 9vw, 7rem) var(--space-x);
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
    }

    .intro-mosaic-c15__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        gap: 1.5rem;
        align-items: center;
        flex-wrap: wrap;
    }

    .intro-mosaic-c15__hero {
        flex: 1 1 24rem;
    }

    .intro-mosaic-c15__aside {
        flex: 1 1 18rem;
    }

    .intro-mosaic-c15__hero p {
        margin: 0;
        color: rgba(255, 255, 255, .78);
        font-size: .82rem;
        letter-spacing: .1em;
        text-transform: uppercase;
    }

    .intro-mosaic-c15__hero h1 {
        margin: .6rem 0 0;
        font-size: clamp(2.5rem, 5vw, 4.8rem);
        line-height: 1.01;
    }

    .intro-mosaic-c15__hero span {
        display: block;
        margin-top: .9rem;
        color: rgba(255, 255, 255, .88);
        max-width: 40rem;
    }

    .intro-mosaic-c15__buttons {
        margin-top: 1.15rem;
        display: flex;
        gap: .75rem;
        flex-wrap: wrap;
    }

    .intro-mosaic-c15__btn {
        display: inline-flex;
        min-height: 2.85rem;
        align-items: center;
        justify-content: center;
        padding: 0 1rem;
        border-radius: var(--radius-md);
        text-decoration: none;
        background: rgba(255, 255, 255, .14);
        color: var(--fg-on-primary);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .intro-mosaic-c15__btn--primary {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

    .intro-mosaic-c15__aside img {
        display: block;
        width: 100%;
        border-radius: var(--radius-xl);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .intro-mosaic-c15__stats {
        margin-top: .85rem;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: .7rem;
    }

    .intro-mosaic-c15__stats div {
        padding: .85rem;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .intro-mosaic-c15__stats strong, .intro-mosaic-c15__stats span {
        display: block;
    }

    .intro-mosaic-c15__stats span {
        margin-top: .25rem;
        color: rgba(255, 255, 255, .82);
    }

.next-ux22 {
        padding: clamp(3.2rem, 7vw, 5.7rem) var(--space-x);
        background: var(--neutral-100);
        color: var(--neutral-900);
    }

    .next-ux22__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .next-ux22__head {
        margin-bottom: 1.1rem;
    }

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

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

    .next-ux22__head span {
        display: block;
        margin-top: .8rem;
        color: var(--neutral-600);
        max-width: 38rem;
    }

    .next-ux22__pins {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
        gap: var(--gap);
    }

    .next-ux22__pins article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--neutral-100);
        border: 1px solid var(--neutral-300);
    }

    .next-ux22__pins div {
        display: inline-flex;
        width: 2.4rem;
        height: 2.4rem;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: var(--neutral-100);
    }

    .next-ux22__pins h3 {
        margin: .75rem 0 .35rem;
    }

    .next-ux22__pins a {
        color: var(--link);
        text-decoration: none;
    }

    .next-ux22__button {
        display: inline-flex;
        margin-top: 1rem;
        min-height: 2.8rem;
        align-items: center;
        justify-content: center;
        padding: 0 1rem;
        border-radius: var(--radius-md);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        text-decoration: none;
    }

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

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

    .touch-column .wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .touch-column .head {
        margin-bottom: 14px;
    }

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

    .touch-column .head p {
        margin: 10px 0 0;
        color: var(--neutral-600);
    }

    .touch-column .cols {
        display: grid;
        grid-template-columns: 1.2fr .8fr;
        gap: 12px;
    }

    .touch-column .left,
    .touch-column .right {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        padding: 12px;
    }

    .touch-column .list-title {
        margin: 0 0 8px;
        color: var(--neutral-600);
    }

    .touch-column article {
        padding: 8px 0;
        border-bottom: 1px solid var(--border-on-surface-light);
    }

    .touch-column article:last-child {
        border-bottom: 0;
    }

    .touch-column h3 {
        margin: 0 0 6px;
    }

    .touch-column article p {
        margin: 0 0 6px;
        color: var(--neutral-600);
    }

    .touch-column article a {
        color: var(--link);
        text-decoration: none;
    }

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

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

    @media (max-width: 860px) {
        .touch-column .cols {
            grid-template-columns: 1fr;
        }
    }

.site-header {
  background: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}

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

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  line-height: var(--line-height-base);
}

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

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

.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--neutral-900);
  border-radius: var(--radius-sm);
  transition: all 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);
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--neutral-800);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  padding: 8px 16px;
  border-radius: var(--radius-md);
  transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}

.nav-link:hover {
  background: var(--surface-2);
  color: var(--brand);
}

.nav-link.active {
  background: var(--bg-primary);
  color: var(--fg-on-primary);
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  background: var(--accent);
  color: var(--accent-contrast);
  font-size: var(--font-size-base);
  font-weight: 600;
  line-height: var(--line-height-base);
  text-decoration: none;
  border-radius: var(--radius-xl);
  transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
  box-shadow: var(--shadow-md);
}

.cta-button:hover {
  background: var(--bg-accent-hover);
  box-shadow: var(--shadow-lg);
}

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

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

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

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

  .nav-link {
    font-size: calc(var(--font-size-base) * 1.25);
    padding: 12px 24px;
  }

  .cta-button {
    display: none;
  }
}

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

  .nav {
    position: static;
    opacity: 1;
    visibility: visible;
    height: auto;
    background: none;
    display: flex;
  }
}

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
  }
  .footer-brand {
    flex: 1 1 250px;
    min-width: 200px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .footer-logo:hover {
    color: #ffc107;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .footer-nav a {
    color: #b0b0c8;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-legal {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .footer-legal a {
    color: #b0b0c8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
  }
  .footer-legal a:hover {
    color: #f0a500;
  }
  .footer-contact {
    flex: 1 1 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 15px 30px;
    padding: 20px 0;
    border-top: 1px solid #2a2a3e;
    border-bottom: 1px solid #2a2a3e;
    margin-top: 10px;
  }
  .contact-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
  }
  .contact-label {
    font-weight: 600;
    color: #c0c0d0;
  }
  .contact-item a {
    color: #b0b0c8;
    text-decoration: none;
    transition: color 0.2s;
  }
  .contact-item a:hover {
    color: #f0a500;
  }
  .footer-bottom {
    flex: 1 1 100%;
    text-align: center;
    padding-top: 15px;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #8888a0;
    margin: 0 0 8px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-copyright {
    font-size: 0.85rem;
    color: #8888a0;
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-brand {
      text-align: center;
    }
    .footer-right {
      justify-content: center;
      text-align: center;
    }
    .footer-nav ul {
      align-items: center;
    }
    .footer-legal {
      align-items: center;
    }
    .footer-contact {
      justify-content: center;
    }
  }

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

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

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

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

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

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

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

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

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

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

body{margin:0;padding:0;font-family:var(--font-family);font-size:var(--font-size-base);line-height:var(--line-height-base);box-sizing:border-box;background:var(--bg-page);color:var(--fg-on-page)}
*{box-sizing:border-box;}
.mis-lx10{padding:calc(var(--space-y)*2.75) var(--space-x)}
.mis-lx10 .mis-wrap{max-width:var(--max-w);margin:0 auto;display:grid;gap:.8rem}
.mis-lx10 .mis-hero{padding:1rem;border-radius:var(--radius-xl);background:linear-gradient(180deg,var(--surface-1),var(--surface-2));border:1px solid var(--border-on-surface)}
.mis-lx10 h2{margin:0;font-size:clamp(1.76rem,3.2vw,2.48rem)}
.mis-lx10 .mis-hero p{margin:.4rem 0 0;color:var(--fg-on-surface-light)}
.mis-lx10 .mis-bands{display:grid;gap:.6rem}
.mis-lx10 .mis-bands article{display:grid;grid-template-columns:220px 1fr;gap:.85rem;padding:.85rem .95rem;border-radius:var(--radius-md);border:1px solid var(--border-on-surface);background:var(--surface-1)}
.mis-lx10 h3{margin:0;color:var(--fg-on-surface)}
.mis-lx10 article p{margin:0;color:var(--fg-on-surface-light)}
@media (max-width:760px){.mis-lx10 .mis-bands article{grid-template-columns:1fr}}

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

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

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

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

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

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

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

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

    .identity-ux15__grid h3 {
        margin: 0;
    }

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

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

body{margin:0;padding:0;font-family:var(--font-family);font-size:var(--font-size-base);line-height:var(--line-height-base);box-sizing:border-box;background:var(--bg-page);color:var(--fg-on-page)}
*{box-sizing:border-box;}
.tml-lx8{padding:calc(var(--space-y)*2.95) var(--space-x);background:var(--bg-alt)}
.tml-lx8 .tml-shell{max-width:var(--max-w);margin:0 auto}
.tml-lx8 h2{margin:0 0 .85rem;font-size:clamp(1.76rem,3.2vw,2.48rem)}
.tml-lx8 .tml-duo{display:grid;grid-template-columns:.85fr 1.15fr;gap:var(--gap)}
.tml-lx8 .tml-aside{padding:1rem;border-radius:var(--radius-lg);background:var(--surface-1);border:1px solid var(--border-on-surface)}
.tml-lx8 .tml-aside p{margin:0 0 .34rem;color:var(--fg-on-surface-light)}
.tml-lx8 .tml-aside p strong{color:var(--fg-on-surface)}
.tml-lx8 .tml-events{list-style:none;margin:0;padding:0;display:grid;gap:.54rem}
.tml-lx8 .tml-events li{padding:.82rem;border-radius:var(--radius-md);background:var(--surface-1);border:1px solid var(--border-on-surface)}
.tml-lx8 .tml-events span{display:inline-block;margin-bottom:.2rem;font-weight:700;color:var(--link)}
.tml-lx8 h3{margin:0 0 .2rem;font-size:1rem}
.tml-lx8 .tml-events p{margin:0;color:var(--fg-on-surface-light)}
@media (max-width:860px){.tml-lx8 .tml-duo{grid-template-columns:1fr}}

.gallery--colored-v7 {
    padding: 58px 20px;
    background: var(--gradient-hero);
    color: var(--gradien-contrast);
}

.gallery-v7__inner {
    max-width: var(--max-w);
    margin: 0 auto;
}

.gallery-v7__head {
    margin-bottom: 20px;
    text-align: center;
}

.gallery-v7__head h2 {
    margin: 0 0 8px;
    font-size: clamp(24px, 4vw, 34px);
    color: #ffffff;
}

.gallery-v7__head p {
    margin: 0;
    color: var(--neutral-300);
}

.gallery-v7__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
}

.gallery-v7__item {
    margin: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.08);
}

.gallery-v7__item img {
    display: block;
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.gallery-v7__item figcaption {
    padding: 10px 12px;
    font-size: 0.92rem;
    color: var(--neutral-100);
}

@media (max-width: 640px) {
    .gallery--colored-v7 {
        padding: 46px 14px;
    }

    .gallery-v7__item img {
        height: 160px;
    }
}

.site-header {
  background: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}

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

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  line-height: var(--line-height-base);
}

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

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

.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--neutral-900);
  border-radius: var(--radius-sm);
  transition: all 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);
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--neutral-800);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  padding: 8px 16px;
  border-radius: var(--radius-md);
  transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}

.nav-link:hover {
  background: var(--surface-2);
  color: var(--brand);
}

.nav-link.active {
  background: var(--bg-primary);
  color: var(--fg-on-primary);
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  background: var(--accent);
  color: var(--accent-contrast);
  font-size: var(--font-size-base);
  font-weight: 600;
  line-height: var(--line-height-base);
  text-decoration: none;
  border-radius: var(--radius-xl);
  transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
  box-shadow: var(--shadow-md);
}

.cta-button:hover {
  background: var(--bg-accent-hover);
  box-shadow: var(--shadow-lg);
}

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

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

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

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

  .nav-link {
    font-size: calc(var(--font-size-base) * 1.25);
    padding: 12px 24px;
  }

  .cta-button {
    display: none;
  }
}

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

  .nav {
    position: static;
    opacity: 1;
    visibility: visible;
    height: auto;
    background: none;
    display: flex;
  }
}

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
  }
  .footer-brand {
    flex: 1 1 250px;
    min-width: 200px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .footer-logo:hover {
    color: #ffc107;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .footer-nav a {
    color: #b0b0c8;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-legal {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .footer-legal a {
    color: #b0b0c8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
  }
  .footer-legal a:hover {
    color: #f0a500;
  }
  .footer-contact {
    flex: 1 1 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 15px 30px;
    padding: 20px 0;
    border-top: 1px solid #2a2a3e;
    border-bottom: 1px solid #2a2a3e;
    margin-top: 10px;
  }
  .contact-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
  }
  .contact-label {
    font-weight: 600;
    color: #c0c0d0;
  }
  .contact-item a {
    color: #b0b0c8;
    text-decoration: none;
    transition: color 0.2s;
  }
  .contact-item a:hover {
    color: #f0a500;
  }
  .footer-bottom {
    flex: 1 1 100%;
    text-align: center;
    padding-top: 15px;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #8888a0;
    margin: 0 0 8px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-copyright {
    font-size: 0.85rem;
    color: #8888a0;
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-brand {
      text-align: center;
    }
    .footer-right {
      justify-content: center;
      text-align: center;
    }
    .footer-nav ul {
      align-items: center;
    }
    .footer-legal {
      align-items: center;
    }
    .footer-contact {
      justify-content: center;
    }
  }

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

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

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

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

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

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

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

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

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

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

.hiw-zigzag-c3 {
        padding: clamp(3.6rem, 8vw, 6.1rem) var(--space-x);
        background: var(--gradient-accent);
        color: var(--accent-contrast);
    }

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

    .hiw-zigzag-c3__head {
        max-width: 42rem;
        margin: 0 auto 1.25rem;
        text-align: center;
    }

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

    .hiw-zigzag-c3__head p {
        margin: .55rem 0 0;

    }

    .hiw-zigzag-c3__grid {
        display: grid;
        gap: var(--gap);
    }

    .hiw-zigzag-c3__grid article {
        width: min(40rem, 60%);
        padding: 1rem;
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, .2);
        backdrop-filter: blur(8px);
    }

    .hiw-zigzag-c3__grid article:nth-child(odd) {
        margin-right: auto;
    }

    .hiw-zigzag-c3__grid article:nth-child(even) {
        margin-left: auto;
    }

    .hiw-zigzag-c3__num {
        display: inline-flex;
        min-width: 2.6rem;
        height: 2.6rem;
        align-items: center;
        justify-content: center;
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        font-weight: 700;
    }

    .hiw-zigzag-c3__grid h3 {
        margin: .75rem 0 .35rem;
    }

    .hiw-zigzag-c3__grid p {
        margin: 0;
        color: rgba(255, 255, 255, .9);
    }

.nfsocial-v12 {
        padding: clamp(20px, 3vw, 44px);
        background: var(--bg-alt);
        color: var(--fg-on-alt);
    }

    .nfsocial-v12__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: 12px;
    }

    .nfsocial-v12 h2 {
        margin: 0;
        font-size: clamp(24px, 4.2vw, 40px);
    }

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

    .nfsocial-v12__badges {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .nfsocial-v12__badges span {
        display: inline-flex;
        align-items: center;
        padding: 7px 10px;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border: 1px solid rgba(0, 0, 0, .06);
        font-weight: 700;
    }

    .nfsocial-v12__logos {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 10px;
    }

    .nfsocial-v12__logos article {
        border-radius: var(--radius-md);
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        min-height: 96px;
        display: grid;
        place-items: center;
        gap: 6px;
        padding: 10px;
    }

    .nfsocial-v12__logos img {
        max-width: 80%;
        max-height: 42px;
    }

    .nfsocial-v12__logos strong {
        font-size: .9rem;
        color: var(--neutral-700, var(--neutral-600));
    }

body{margin:0;padding:0;font-family:var(--font-family);box-sizing:border-box;}
*{box-sizing:border-box;}

.cap-prism-v5{padding:calc(var(--space-y)*3) var(--space-x);background:var(--neutral-800);color:var(--neutral-0)}
.cap-prism-v5 .shell{max-width:var(--max-w);margin:0 auto;display:grid;gap:var(--gap)}
.cap-prism-v5 .banner{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:var(--gap);padding:1rem;border-radius:var(--radius-lg);background:var(--gradient-hero)}
.cap-prism-v5 h2{margin:0;font-size:clamp(1.7rem,3.3vw,2.5rem)}
.cap-prism-v5 .banner a{padding:.56rem .82rem;border-radius:var(--radius-sm);text-decoration:none;background:var(--surface-1);color:var(--fg-on-surface);font-weight:700}
.cap-prism-v5 .cards{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:var(--gap);padding:0;margin:0;list-style:none}
.cap-prism-v5 li{padding:1rem;border-radius:var(--radius-md);background:var(--chip-bg)}
.cap-prism-v5 h3{margin:0 0 .45rem}
.cap-prism-v5 p{margin:0;opacity:.9}
.cap-prism-v5 small{display:block;margin-top:.5rem;font-weight:700}
@media (max-width:980px){.cap-prism-v5 .cards{grid-template-columns:repeat(2,minmax(0,1fr))}}@media (max-width:640px){.cap-prism-v5 .cards{grid-template-columns:1fr}}

.plans-ux10{padding:clamp(50px,7vw,92px) clamp(16px,4vw,36px);background:var(--neutral-100);color:var(--neutral-900)}.plans-ux10__wrap{max-width:var(--max-w);margin:0 auto}.plans-ux10__top p{margin:8px 0 12px;color:var(--neutral-600)}.plans-ux10__matrix{display:grid;grid-template-columns:repeat(12,1fr);gap:10px}.plans-ux10__matrix article{grid-column:span 4;border:1px solid var(--neutral-300);border-radius:var(--radius-md);background:var(--neutral-0);padding:12px}.plans-ux10__matrix article:nth-child(1){grid-column:span 6}.plans-ux10__matrix article:nth-child(2){grid-column:span 6}.plans-ux10 h3{margin:0}.plans-ux10 p{margin:7px 0;color:var(--neutral-800)}.plans-ux10 span{display:inline-flex;margin:0 6px 6px 0;padding:4px 8px;border-radius:999px;border:1px solid var(--neutral-300);background:var(--neutral-100)}.plans-ux10 button{width:100%;margin-top:8px;border:1px solid var(--neutral-300);border-radius:var(--radius-sm);padding:8px 10px;background:var(--neutral-100);color:var(--neutral-900)}@media(max-width:900px){.plans-ux10__matrix article{grid-column:span 6}}@media(max-width:640px){.plans-ux10__matrix article{grid-column:span 12}}

.site-header {
  background: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}

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

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  line-height: var(--line-height-base);
}

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

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

.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--neutral-900);
  border-radius: var(--radius-sm);
  transition: all 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);
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--neutral-800);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  padding: 8px 16px;
  border-radius: var(--radius-md);
  transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}

.nav-link:hover {
  background: var(--surface-2);
  color: var(--brand);
}

.nav-link.active {
  background: var(--bg-primary);
  color: var(--fg-on-primary);
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  background: var(--accent);
  color: var(--accent-contrast);
  font-size: var(--font-size-base);
  font-weight: 600;
  line-height: var(--line-height-base);
  text-decoration: none;
  border-radius: var(--radius-xl);
  transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
  box-shadow: var(--shadow-md);
}

.cta-button:hover {
  background: var(--bg-accent-hover);
  box-shadow: var(--shadow-lg);
}

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

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

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

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

  .nav-link {
    font-size: calc(var(--font-size-base) * 1.25);
    padding: 12px 24px;
  }

  .cta-button {
    display: none;
  }
}

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

  .nav {
    position: static;
    opacity: 1;
    visibility: visible;
    height: auto;
    background: none;
    display: flex;
  }
}

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
  }
  .footer-brand {
    flex: 1 1 250px;
    min-width: 200px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .footer-logo:hover {
    color: #ffc107;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .footer-nav a {
    color: #b0b0c8;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-legal {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .footer-legal a {
    color: #b0b0c8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
  }
  .footer-legal a:hover {
    color: #f0a500;
  }
  .footer-contact {
    flex: 1 1 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 15px 30px;
    padding: 20px 0;
    border-top: 1px solid #2a2a3e;
    border-bottom: 1px solid #2a2a3e;
    margin-top: 10px;
  }
  .contact-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
  }
  .contact-label {
    font-weight: 600;
    color: #c0c0d0;
  }
  .contact-item a {
    color: #b0b0c8;
    text-decoration: none;
    transition: color 0.2s;
  }
  .contact-item a:hover {
    color: #f0a500;
  }
  .footer-bottom {
    flex: 1 1 100%;
    text-align: center;
    padding-top: 15px;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #8888a0;
    margin: 0 0 8px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-copyright {
    font-size: 0.85rem;
    color: #8888a0;
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-brand {
      text-align: center;
    }
    .footer-right {
      justify-content: center;
      text-align: center;
    }
    .footer-nav ul {
      align-items: center;
    }
    .footer-legal {
      align-items: center;
    }
    .footer-contact {
      justify-content: center;
    }
  }

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

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

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

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

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

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

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

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

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

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

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

    .touch-column .wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .touch-column .head {
        margin-bottom: 14px;
    }

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

    .touch-column .head p {
        margin: 10px 0 0;
        color: var(--neutral-600);
    }

    .touch-column .cols {
        display: grid;
        grid-template-columns: 1.2fr .8fr;
        gap: 12px;
    }

    .touch-column .left,
    .touch-column .right {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        padding: 12px;
    }

    .touch-column .list-title {
        margin: 0 0 8px;
        color: var(--neutral-600);
    }

    .touch-column article {
        padding: 8px 0;
        border-bottom: 1px solid var(--border-on-surface-light);
    }

    .touch-column article:last-child {
        border-bottom: 0;
    }

    .touch-column h3 {
        margin: 0 0 6px;
    }

    .touch-column article p {
        margin: 0 0 6px;
        color: var(--neutral-600);
    }

    .touch-column article a {
        color: var(--link);
        text-decoration: none;
    }

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

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

    @media (max-width: 860px) {
        .touch-column .cols {
            grid-template-columns: 1fr;
        }
    }

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

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

.site-header {
  background: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}

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

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  line-height: var(--line-height-base);
}

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

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

.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--neutral-900);
  border-radius: var(--radius-sm);
  transition: all 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);
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--neutral-800);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  padding: 8px 16px;
  border-radius: var(--radius-md);
  transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}

.nav-link:hover {
  background: var(--surface-2);
  color: var(--brand);
}

.nav-link.active {
  background: var(--bg-primary);
  color: var(--fg-on-primary);
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  background: var(--accent);
  color: var(--accent-contrast);
  font-size: var(--font-size-base);
  font-weight: 600;
  line-height: var(--line-height-base);
  text-decoration: none;
  border-radius: var(--radius-xl);
  transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
  box-shadow: var(--shadow-md);
}

.cta-button:hover {
  background: var(--bg-accent-hover);
  box-shadow: var(--shadow-lg);
}

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

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

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

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

  .nav-link {
    font-size: calc(var(--font-size-base) * 1.25);
    padding: 12px 24px;
  }

  .cta-button {
    display: none;
  }
}

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

  .nav {
    position: static;
    opacity: 1;
    visibility: visible;
    height: auto;
    background: none;
    display: flex;
  }
}

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
  }
  .footer-brand {
    flex: 1 1 250px;
    min-width: 200px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .footer-logo:hover {
    color: #ffc107;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .footer-nav a {
    color: #b0b0c8;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-legal {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .footer-legal a {
    color: #b0b0c8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
  }
  .footer-legal a:hover {
    color: #f0a500;
  }
  .footer-contact {
    flex: 1 1 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 15px 30px;
    padding: 20px 0;
    border-top: 1px solid #2a2a3e;
    border-bottom: 1px solid #2a2a3e;
    margin-top: 10px;
  }
  .contact-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
  }
  .contact-label {
    font-weight: 600;
    color: #c0c0d0;
  }
  .contact-item a {
    color: #b0b0c8;
    text-decoration: none;
    transition: color 0.2s;
  }
  .contact-item a:hover {
    color: #f0a500;
  }
  .footer-bottom {
    flex: 1 1 100%;
    text-align: center;
    padding-top: 15px;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #8888a0;
    margin: 0 0 8px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-copyright {
    font-size: 0.85rem;
    color: #8888a0;
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-brand {
      text-align: center;
    }
    .footer-right {
      justify-content: center;
      text-align: center;
    }
    .footer-nav ul {
      align-items: center;
    }
    .footer-legal {
      align-items: center;
    }
    .footer-contact {
      justify-content: center;
    }
  }

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

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

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

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

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

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

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

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

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

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

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

.site-header {
  background: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}

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

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  line-height: var(--line-height-base);
}

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

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

.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--neutral-900);
  border-radius: var(--radius-sm);
  transition: all 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);
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--neutral-800);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  padding: 8px 16px;
  border-radius: var(--radius-md);
  transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}

.nav-link:hover {
  background: var(--surface-2);
  color: var(--brand);
}

.nav-link.active {
  background: var(--bg-primary);
  color: var(--fg-on-primary);
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  background: var(--accent);
  color: var(--accent-contrast);
  font-size: var(--font-size-base);
  font-weight: 600;
  line-height: var(--line-height-base);
  text-decoration: none;
  border-radius: var(--radius-xl);
  transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
  box-shadow: var(--shadow-md);
}

.cta-button:hover {
  background: var(--bg-accent-hover);
  box-shadow: var(--shadow-lg);
}

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

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

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

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

  .nav-link {
    font-size: calc(var(--font-size-base) * 1.25);
    padding: 12px 24px;
  }

  .cta-button {
    display: none;
  }
}

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

  .nav {
    position: static;
    opacity: 1;
    visibility: visible;
    height: auto;
    background: none;
    display: flex;
  }
}

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
  }
  .footer-brand {
    flex: 1 1 250px;
    min-width: 200px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .footer-logo:hover {
    color: #ffc107;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .footer-nav a {
    color: #b0b0c8;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-legal {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .footer-legal a {
    color: #b0b0c8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
  }
  .footer-legal a:hover {
    color: #f0a500;
  }
  .footer-contact {
    flex: 1 1 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 15px 30px;
    padding: 20px 0;
    border-top: 1px solid #2a2a3e;
    border-bottom: 1px solid #2a2a3e;
    margin-top: 10px;
  }
  .contact-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
  }
  .contact-label {
    font-weight: 600;
    color: #c0c0d0;
  }
  .contact-item a {
    color: #b0b0c8;
    text-decoration: none;
    transition: color 0.2s;
  }
  .contact-item a:hover {
    color: #f0a500;
  }
  .footer-bottom {
    flex: 1 1 100%;
    text-align: center;
    padding-top: 15px;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #8888a0;
    margin: 0 0 8px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-copyright {
    font-size: 0.85rem;
    color: #8888a0;
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-brand {
      text-align: center;
    }
    .footer-right {
      justify-content: center;
      text-align: center;
    }
    .footer-nav ul {
      align-items: center;
    }
    .footer-legal {
      align-items: center;
    }
    .footer-contact {
      justify-content: center;
    }
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.site-header {
  background: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}

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

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  line-height: var(--line-height-base);
}

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

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

.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--neutral-900);
  border-radius: var(--radius-sm);
  transition: all 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);
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--neutral-800);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  padding: 8px 16px;
  border-radius: var(--radius-md);
  transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}

.nav-link:hover {
  background: var(--surface-2);
  color: var(--brand);
}

.nav-link.active {
  background: var(--bg-primary);
  color: var(--fg-on-primary);
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  background: var(--accent);
  color: var(--accent-contrast);
  font-size: var(--font-size-base);
  font-weight: 600;
  line-height: var(--line-height-base);
  text-decoration: none;
  border-radius: var(--radius-xl);
  transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
  box-shadow: var(--shadow-md);
}

.cta-button:hover {
  background: var(--bg-accent-hover);
  box-shadow: var(--shadow-lg);
}

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

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

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

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

  .nav-link {
    font-size: calc(var(--font-size-base) * 1.25);
    padding: 12px 24px;
  }

  .cta-button {
    display: none;
  }
}

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

  .nav {
    position: static;
    opacity: 1;
    visibility: visible;
    height: auto;
    background: none;
    display: flex;
  }
}

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
  }
  .footer-brand {
    flex: 1 1 250px;
    min-width: 200px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .footer-logo:hover {
    color: #ffc107;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .footer-nav a {
    color: #b0b0c8;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-legal {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .footer-legal a {
    color: #b0b0c8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
  }
  .footer-legal a:hover {
    color: #f0a500;
  }
  .footer-contact {
    flex: 1 1 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 15px 30px;
    padding: 20px 0;
    border-top: 1px solid #2a2a3e;
    border-bottom: 1px solid #2a2a3e;
    margin-top: 10px;
  }
  .contact-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
  }
  .contact-label {
    font-weight: 600;
    color: #c0c0d0;
  }
  .contact-item a {
    color: #b0b0c8;
    text-decoration: none;
    transition: color 0.2s;
  }
  .contact-item a:hover {
    color: #f0a500;
  }
  .footer-bottom {
    flex: 1 1 100%;
    text-align: center;
    padding-top: 15px;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #8888a0;
    margin: 0 0 8px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-copyright {
    font-size: 0.85rem;
    color: #8888a0;
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-brand {
      text-align: center;
    }
    .footer-right {
      justify-content: center;
      text-align: center;
    }
    .footer-nav ul {
      align-items: center;
    }
    .footer-legal {
      align-items: center;
    }
    .footer-contact {
      justify-content: center;
    }
  }

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

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

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

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

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

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

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

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

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

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

body{margin:0;padding:0;font-family:var(--font-family);font-size:var(--font-size-base);line-height:var(--line-height-base);box-sizing:border-box;background:var(--bg-page);color:var(--fg-on-page)}
*{box-sizing:border-box;}
.thx-lx4{padding:calc(var(--space-y)*3) var(--space-x);background:var(--bg-alt)}
.thx-lx4 .thx-wrap{max-width:900px;margin:0 auto;display:grid;gap:.72rem}
.thx-lx4 .thx-hero{padding:1rem;border-radius:var(--radius-xl);border:1px solid var(--border-on-surface);background:var(--surface-1);text-align:center}
.thx-lx4 h2{margin:0;font-size:clamp(1.75rem,3.2vw,2.45rem)}
.thx-lx4 .thx-hero p{margin:.4rem 0 0;color:var(--fg-on-surface-light)}
.thx-lx4 ul{margin:0;padding:0;list-style:none;display:grid;gap:.45rem}
.thx-lx4 li{padding:.72rem .82rem;border-radius:var(--radius-md);background:var(--surface-1);border-inline-start:4px solid var(--bg-primary)}
.thx-lx4 .thx-line{margin:0;padding:.75rem;border-radius:var(--radius-md);background:var(--surface-1);border:1px dashed var(--border-on-surface-light)}

.site-header {
  background: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}

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

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  line-height: var(--line-height-base);
}

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

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

.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--neutral-900);
  border-radius: var(--radius-sm);
  transition: all 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);
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--neutral-800);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  padding: 8px 16px;
  border-radius: var(--radius-md);
  transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}

.nav-link:hover {
  background: var(--surface-2);
  color: var(--brand);
}

.nav-link.active {
  background: var(--bg-primary);
  color: var(--fg-on-primary);
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  background: var(--accent);
  color: var(--accent-contrast);
  font-size: var(--font-size-base);
  font-weight: 600;
  line-height: var(--line-height-base);
  text-decoration: none;
  border-radius: var(--radius-xl);
  transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
  box-shadow: var(--shadow-md);
}

.cta-button:hover {
  background: var(--bg-accent-hover);
  box-shadow: var(--shadow-lg);
}

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

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

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

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

  .nav-link {
    font-size: calc(var(--font-size-base) * 1.25);
    padding: 12px 24px;
  }

  .cta-button {
    display: none;
  }
}

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

  .nav {
    position: static;
    opacity: 1;
    visibility: visible;
    height: auto;
    background: none;
    display: flex;
  }
}

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
  }
  .footer-brand {
    flex: 1 1 250px;
    min-width: 200px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .footer-logo:hover {
    color: #ffc107;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .footer-nav a {
    color: #b0b0c8;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-legal {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .footer-legal a {
    color: #b0b0c8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
  }
  .footer-legal a:hover {
    color: #f0a500;
  }
  .footer-contact {
    flex: 1 1 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 15px 30px;
    padding: 20px 0;
    border-top: 1px solid #2a2a3e;
    border-bottom: 1px solid #2a2a3e;
    margin-top: 10px;
  }
  .contact-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
  }
  .contact-label {
    font-weight: 600;
    color: #c0c0d0;
  }
  .contact-item a {
    color: #b0b0c8;
    text-decoration: none;
    transition: color 0.2s;
  }
  .contact-item a:hover {
    color: #f0a500;
  }
  .footer-bottom {
    flex: 1 1 100%;
    text-align: center;
    padding-top: 15px;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #8888a0;
    margin: 0 0 8px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-copyright {
    font-size: 0.85rem;
    color: #8888a0;
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-brand {
      text-align: center;
    }
    .footer-right {
      justify-content: center;
      text-align: center;
    }
    .footer-nav ul {
      align-items: center;
    }
    .footer-legal {
      align-items: center;
    }
    .footer-contact {
      justify-content: center;
    }
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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