:root {
  --font-family: "DM Sans", sans-serif;
  --font-size-base: 15.2px;
  --line-height-base: 1.45;

  --max-w: 1180px;
  --space-x: 1.33rem;
  --space-y: 1.38rem;
  --gap: 0.85rem;

  --radius-xl: 0.97rem;
  --radius-lg: 0.74rem;
  --radius-md: 0.42rem;
  --radius-sm: 0.23rem;

  --shadow-sm: 0 1px 5px rgba(0,0,0,0.11);
  --shadow-md: 0 7px 18px rgba(0,0,0,0.14);
  --shadow-lg: 0 20px 40px rgba(0,0,0,0.17);

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

  --brand: #2c3e50;
  --brand-contrast: #ffffff;
  --accent: #1a73e8;
  --accent-contrast: #ffffff;

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

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

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

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

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

  --bg-primary: #1a73e8;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #1557b0;
  --ring: #1a73e8;

  --bg-accent: #1a73e8;
  --fg-on-accent: #ffffff;
  --bg-accent-hover: #1557b0;

  --link: #1a73e8;
  --link-hover: #1557b0;

  --gradient-hero: linear-gradient(135deg, #2c3e50 0%, #1a73e8 100%);
  --gradient-accent: linear-gradient(135deg, #1a73e8 0%, #1557b0 100%);

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

header {
    background-color: var(--surface-1);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-y) var(--space-x);
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
    flex-shrink: 0;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: background-color var(--anim-duration) var(--anim-ease);
    flex-shrink: 0;
  }
  .burger:hover {
    background-color: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--surface-1);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
    padding: 0 var(--space-x);
  }
  .nav-menu.open {
    max-height: 400px;
    padding: var(--space-y) var(--space-x);
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--gap);
  }
  .nav-list a {
    display: block;
    padding: 8px 0;
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    border-bottom: 1px solid var(--border-on-surface-light);
    transition: color var(--anim-duration) var(--anim-ease);
  }
  .nav-list a:hover {
    color: var(--link-hover);
  }
  .nav-list li:last-child a {
    border-bottom: none;
  }
  @media (min-width: 768px) {
    .burger {
      display: flex;
    }
    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: var(--surface-1);
      box-shadow: var(--shadow-md);
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
      padding: 0 var(--space-x);
    }
    .nav-menu.open {
      max-height: 400px;
      padding: var(--space-y) var(--space-x);
    }
    .nav-list {
      flex-direction: column;
      gap: var(--gap);
    }
    .nav-list a {
      border-bottom: 1px solid var(--border-on-surface-light);
    }
    .nav-list li:last-child a {
      border-bottom: none;
    }
  }

.site-footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #333;
  padding-bottom: 1.5rem;
}
.footer-brand {
  margin-bottom: 0.5rem;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f5a623;
  text-decoration: none;
  letter-spacing: 1px;
}
.footer-logo:hover {
  color: #ffc107;
}
.footer-nav .nav-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin: 0;
  padding: 0;
}
.footer-nav .nav-list a {
  color: #ccc;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}
.footer-nav .nav-list a:hover {
  color: #f5a623;
}
.footer-middle {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #333;
  padding-bottom: 1.5rem;
}
.contact-info ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.contact-info li {
  font-size: 0.95rem;
}
.contact-info a {
  color: #f5a623;
  text-decoration: none;
}
.contact-info a:hover {
  text-decoration: underline;
}
.footer-bottom {
  text-align: center;
  font-size: 0.9rem;
}
.copyright {
  margin: 0 0 0.5rem 0;
  color: #aaa;
}
.disclaimer {
  margin: 0;
  color: #999;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.disclaimer a {
  color: #f5a623;
  text-decoration: none;
}
.disclaimer a:hover {
  text-decoration: underline;
}
@media (max-width: 600px) {
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-nav .nav-list {
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
  }
  .contact-info ul {
    flex-direction: column;
    gap: 0.5rem;
  }
}

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

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

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

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

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

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

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

.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-ux26 {
        padding: calc(var(--space-y) * 1.9) var(--space-x);
        background: var(--neutral-100);
        color: var(--neutral-900)
    }

    .next-ux26 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: var(--gap)
    }

    .next-ux26 h2, .next-ux26 h3, .next-ux26 p {
        margin: 0
    }

    .next-ux26 a {
        text-decoration: none
    }

    .next-ux26 .center, .next-ux26 .banner, .next-ux26 .stack, .next-ux26 .bar, .next-ux26 .split, .next-ux26 .duo article {
        padding: .9rem;
        border-radius: var(--radius-xl);
        background: var(--neutral-100);
        border: 1px solid var(--border-on-surface)
    }

    .next-ux26 .center {
        display: grid;
        gap: .5rem;
        justify-items: center;
        text-align: center
    }

    .next-ux26 .split {
        display: grid;
        grid-template-columns:1fr auto;
        gap: var(--gap);
        align-items: center
    }

    .next-ux26 .actions {
        display: flex;
        gap: .45rem;
        flex-wrap: wrap
    }

    .next-ux26 .actions a, .next-ux26 .center a, .next-ux26 .banner > a, .next-ux26 .duo a {
        display: inline-flex;
        min-height: 2.35rem;
        padding: 0 .85rem;
        align-items: center;
        border-radius: var(--radius-sm);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border: 1px solid var(--ring)
    }

    .next-ux26 .banner {
        display: grid;
        gap: .6rem
    }

    .next-ux26 .numbers {
        display: grid;
        grid-template-columns:repeat(3, minmax(0, 1fr));
        gap: .5rem
    }

    .next-ux26 .numbers div {
        padding: .6rem;
        border-radius: var(--radius-md);
        background: var(--neutral-100);
        border: 1px solid var(--neutral-300)
    }

    .next-ux26 .duo {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: var(--gap)
    }

    .next-ux26 .duo article {
        display: grid;
        gap: .45rem
    }

    .next-ux26 .stack {
        display: grid;
        gap: .6rem;
        justify-items: start
    }

    .next-ux26 .chips {
        display: flex;
        gap: .35rem;
        flex-wrap: wrap
    }

    .next-ux26 .chips span {
        padding: .28rem .5rem;
        border-radius: var(--radius-sm);
        background: var(--neutral-100);
        border: 1px solid var(--neutral-300)
    }

    .next-ux26 .bar {
        display: grid;
        grid-template-columns:1fr auto;
        gap: var(--gap);
        align-items: center
    }

    @media (max-width: 820px) {
        .next-ux26 .split, .next-ux26 .bar, .next-ux26 .duo {
            grid-template-columns:1fr
        }

        .next-ux26 .numbers {
            grid-template-columns:1fr 1fr
        }
    }

    @media (max-width: 620px) {
        .next-ux26 .numbers {
            grid-template-columns:1fr
        }
    }

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

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

    .faq-layout-a .section-head {
        margin-bottom: 14px;
    }

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

    .faq-layout-a .section-head p {
        margin: 10px 0 0;
        opacity: .92;
    }

    .faq-layout-a .list {
        display: grid;
        gap: 10px;
    }

    .faq-layout-a .item {
        border-radius: var(--radius-md);
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, .3);
        background: rgba(255, 255, 255, .1);
    }

    .faq-layout-a .q {
        width: 100%;
        border: 0;
        background: transparent;
        text-align: left;
        padding: 12px;
        font: inherit;
        font-weight: 600;
        cursor: pointer;
    }

    .faq-layout-a .a {
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease);
    }

    .faq-layout-a .a p {
        margin: 0;
        padding: 0 12px 12px;
        opacity: .95;
    }

    .faq-layout-a .item.open .a {
        max-height: 240px;
    }

.plans-ux9{padding:clamp(50px,7vw,92px) clamp(16px,4vw,36px);background:var(--neutral-0);color:var(--neutral-900)}.plans-ux9__wrap{max-width:var(--max-w);margin:0 auto}.plans-ux9__rail{display:grid;grid-auto-flow:column;grid-auto-columns:minmax(240px,1fr);gap:10px;overflow:auto;padding-bottom:4px}.plans-ux9 article{border:1px solid var(--neutral-300);border-radius:var(--radius-lg);background:var(--neutral-100);padding:12px}.plans-ux9 h3{margin:0}.plans-ux9 small{display:inline-flex;margin-top:6px;color:var(--brand)}.plans-ux9 p{margin:7px 0;color:var(--neutral-800)}.plans-ux9 ol{margin:0;padding-left:18px;display:grid;gap:5px;color:var(--neutral-800)}.plans-ux9 button{width:100%;margin-top:9px;background:var(--bg-primary);color:var(--fg-on-primary);border:0;border-radius:var(--radius-sm);padding:8px 10px}

header {
    background-color: var(--surface-1);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-y) var(--space-x);
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
    flex-shrink: 0;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: background-color var(--anim-duration) var(--anim-ease);
    flex-shrink: 0;
  }
  .burger:hover {
    background-color: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--surface-1);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
    padding: 0 var(--space-x);
  }
  .nav-menu.open {
    max-height: 400px;
    padding: var(--space-y) var(--space-x);
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--gap);
  }
  .nav-list a {
    display: block;
    padding: 8px 0;
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    border-bottom: 1px solid var(--border-on-surface-light);
    transition: color var(--anim-duration) var(--anim-ease);
  }
  .nav-list a:hover {
    color: var(--link-hover);
  }
  .nav-list li:last-child a {
    border-bottom: none;
  }
  @media (min-width: 768px) {
    .burger {
      display: flex;
    }
    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: var(--surface-1);
      box-shadow: var(--shadow-md);
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
      padding: 0 var(--space-x);
    }
    .nav-menu.open {
      max-height: 400px;
      padding: var(--space-y) var(--space-x);
    }
    .nav-list {
      flex-direction: column;
      gap: var(--gap);
    }
    .nav-list a {
      border-bottom: 1px solid var(--border-on-surface-light);
    }
    .nav-list li:last-child a {
      border-bottom: none;
    }
  }

.site-footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #333;
  padding-bottom: 1.5rem;
}
.footer-brand {
  margin-bottom: 0.5rem;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f5a623;
  text-decoration: none;
  letter-spacing: 1px;
}
.footer-logo:hover {
  color: #ffc107;
}
.footer-nav .nav-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin: 0;
  padding: 0;
}
.footer-nav .nav-list a {
  color: #ccc;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}
.footer-nav .nav-list a:hover {
  color: #f5a623;
}
.footer-middle {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #333;
  padding-bottom: 1.5rem;
}
.contact-info ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.contact-info li {
  font-size: 0.95rem;
}
.contact-info a {
  color: #f5a623;
  text-decoration: none;
}
.contact-info a:hover {
  text-decoration: underline;
}
.footer-bottom {
  text-align: center;
  font-size: 0.9rem;
}
.copyright {
  margin: 0 0 0.5rem 0;
  color: #aaa;
}
.disclaimer {
  margin: 0;
  color: #999;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.disclaimer a {
  color: #f5a623;
  text-decoration: none;
}
.disclaimer a:hover {
  text-decoration: underline;
}
@media (max-width: 600px) {
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-nav .nav-list {
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
  }
  .contact-info ul {
    flex-direction: column;
    gap: 0.5rem;
  }
}

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

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

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

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

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

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

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

.product-list--light-v6 {

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

.product-list__inner {
    max-width: 640px;
    margin: 0 auto;
}

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

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

.product-list__row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 8px 12px;
    border-top: 1px solid var(--border-on-surface-light);
}

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

.product-list__row-name {
    font-size: 0.9rem;
    color: var(--neutral-800);
}

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

header {
    background-color: var(--surface-1);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-y) var(--space-x);
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
    flex-shrink: 0;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: background-color var(--anim-duration) var(--anim-ease);
    flex-shrink: 0;
  }
  .burger:hover {
    background-color: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--surface-1);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
    padding: 0 var(--space-x);
  }
  .nav-menu.open {
    max-height: 400px;
    padding: var(--space-y) var(--space-x);
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--gap);
  }
  .nav-list a {
    display: block;
    padding: 8px 0;
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    border-bottom: 1px solid var(--border-on-surface-light);
    transition: color var(--anim-duration) var(--anim-ease);
  }
  .nav-list a:hover {
    color: var(--link-hover);
  }
  .nav-list li:last-child a {
    border-bottom: none;
  }
  @media (min-width: 768px) {
    .burger {
      display: flex;
    }
    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: var(--surface-1);
      box-shadow: var(--shadow-md);
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
      padding: 0 var(--space-x);
    }
    .nav-menu.open {
      max-height: 400px;
      padding: var(--space-y) var(--space-x);
    }
    .nav-list {
      flex-direction: column;
      gap: var(--gap);
    }
    .nav-list a {
      border-bottom: 1px solid var(--border-on-surface-light);
    }
    .nav-list li:last-child a {
      border-bottom: none;
    }
  }

.site-footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #333;
  padding-bottom: 1.5rem;
}
.footer-brand {
  margin-bottom: 0.5rem;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f5a623;
  text-decoration: none;
  letter-spacing: 1px;
}
.footer-logo:hover {
  color: #ffc107;
}
.footer-nav .nav-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin: 0;
  padding: 0;
}
.footer-nav .nav-list a {
  color: #ccc;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}
.footer-nav .nav-list a:hover {
  color: #f5a623;
}
.footer-middle {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #333;
  padding-bottom: 1.5rem;
}
.contact-info ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.contact-info li {
  font-size: 0.95rem;
}
.contact-info a {
  color: #f5a623;
  text-decoration: none;
}
.contact-info a:hover {
  text-decoration: underline;
}
.footer-bottom {
  text-align: center;
  font-size: 0.9rem;
}
.copyright {
  margin: 0 0 0.5rem 0;
  color: #aaa;
}
.disclaimer {
  margin: 0;
  color: #999;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.disclaimer a {
  color: #f5a623;
  text-decoration: none;
}
.disclaimer a:hover {
  text-decoration: underline;
}
@media (max-width: 600px) {
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-nav .nav-list {
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
  }
  .contact-info ul {
    flex-direction: column;
    gap: 0.5rem;
  }
}

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

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

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

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

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

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

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

.product-item--light-v6 {
        padding: 40px 20px;
        background: var(--bg-page);
        color: var(--fg-on-page);
    }

    .product-item__inner {
        max-width: 640px;
        margin: 0 auto;
    }

    .product-item__inner h1 {
        margin: 0 0 4px;
        font-size: clamp(22px,3.5vw,28px);
    }

    .product-item__desc {
        margin: 0;
        font-size: 0.95rem;
        color: var(--neutral-700);
    }

header {
    background-color: var(--surface-1);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-y) var(--space-x);
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
    flex-shrink: 0;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: background-color var(--anim-duration) var(--anim-ease);
    flex-shrink: 0;
  }
  .burger:hover {
    background-color: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--surface-1);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
    padding: 0 var(--space-x);
  }
  .nav-menu.open {
    max-height: 400px;
    padding: var(--space-y) var(--space-x);
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--gap);
  }
  .nav-list a {
    display: block;
    padding: 8px 0;
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    border-bottom: 1px solid var(--border-on-surface-light);
    transition: color var(--anim-duration) var(--anim-ease);
  }
  .nav-list a:hover {
    color: var(--link-hover);
  }
  .nav-list li:last-child a {
    border-bottom: none;
  }
  @media (min-width: 768px) {
    .burger {
      display: flex;
    }
    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: var(--surface-1);
      box-shadow: var(--shadow-md);
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
      padding: 0 var(--space-x);
    }
    .nav-menu.open {
      max-height: 400px;
      padding: var(--space-y) var(--space-x);
    }
    .nav-list {
      flex-direction: column;
      gap: var(--gap);
    }
    .nav-list a {
      border-bottom: 1px solid var(--border-on-surface-light);
    }
    .nav-list li:last-child a {
      border-bottom: none;
    }
  }

.site-footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #333;
  padding-bottom: 1.5rem;
}
.footer-brand {
  margin-bottom: 0.5rem;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f5a623;
  text-decoration: none;
  letter-spacing: 1px;
}
.footer-logo:hover {
  color: #ffc107;
}
.footer-nav .nav-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin: 0;
  padding: 0;
}
.footer-nav .nav-list a {
  color: #ccc;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}
.footer-nav .nav-list a:hover {
  color: #f5a623;
}
.footer-middle {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #333;
  padding-bottom: 1.5rem;
}
.contact-info ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.contact-info li {
  font-size: 0.95rem;
}
.contact-info a {
  color: #f5a623;
  text-decoration: none;
}
.contact-info a:hover {
  text-decoration: underline;
}
.footer-bottom {
  text-align: center;
  font-size: 0.9rem;
}
.copyright {
  margin: 0 0 0.5rem 0;
  color: #aaa;
}
.disclaimer {
  margin: 0;
  color: #999;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.disclaimer a {
  color: #f5a623;
  text-decoration: none;
}
.disclaimer a:hover {
  text-decoration: underline;
}
@media (max-width: 600px) {
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-nav .nav-list {
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
  }
  .contact-info ul {
    flex-direction: column;
    gap: 0.5rem;
  }
}

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

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

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

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

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

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

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

.product-item--colored-v5 {

    padding: 56px 20px;
    background: var(--neutral-900);
    color: var(--neutral-0);
}

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

.product-item__card {
    background: rgba(15,23,42,0.98);
    border-radius: var(--radius-xl);
    padding: 20px 22px;
    border: 1px solid rgba(148,163,184,0.75);
    box-shadow: var(--shadow-lg);
}

.product-item__header {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: baseline;
    margin-bottom: 8px;
}

.product-item__header h1 {
    margin: 0;
    font-size: clamp(22px,3.5vw,28px);
    color: var(--brand-contrast);
}

.product-item__desc {
    margin: 0 0 10px;
    font-size: 0.95rem;
    color: var(--neutral-200);
}

.product-item__meta {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--neutral-300);
}

.product-item__badge {
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--accent);
    color: var(--fg-on-accent);
}

.product-item__sku {
    opacity: 0.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;}
.cap-lx4{padding:calc(var(--space-y)*2.7) var(--space-x);background:var(--bg-alt)}
.cap-lx4 .cap-shell{max-width:var(--max-w);margin:0 auto;display:grid;grid-template-columns:280px 1fr;gap:var(--gap)}
.cap-lx4 .cap-headline{position:sticky;top:.8rem;align-self:start;padding:1rem;border:1px solid var(--border-on-surface);border-radius:var(--radius-lg);background:var(--surface-1)}
.cap-lx4 h2{margin:0 0 .5rem;font-size:clamp(1.7rem,3vw,2.3rem)}
.cap-lx4 .cap-headline p{margin:0;color:var(--fg-on-surface-light)}
.cap-lx4 .cap-list{list-style:none;margin:0;padding:0;display:grid;gap:.62rem}
.cap-lx4 .cap-list li{display:flex;justify-content:space-between;gap:1rem;align-items:flex-start;padding:.9rem;border:1px dashed var(--border-on-surface-light);border-radius:var(--radius-md);background:var(--surface-1)}
.cap-lx4 h3{margin:0 0 .2rem}
.cap-lx4 li p{margin:0;color:var(--fg-on-surface-light)}
.cap-lx4 a{white-space:nowrap;text-decoration:none;color:var(--link);font-weight:700}
@media (max-width:860px){.cap-lx4 .cap-shell{grid-template-columns:1fr}.cap-lx4 .cap-headline{position:static}.cap-lx4 .cap-list li{display:grid}}

header {
    background-color: var(--surface-1);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-y) var(--space-x);
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
    flex-shrink: 0;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: background-color var(--anim-duration) var(--anim-ease);
    flex-shrink: 0;
  }
  .burger:hover {
    background-color: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--surface-1);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
    padding: 0 var(--space-x);
  }
  .nav-menu.open {
    max-height: 400px;
    padding: var(--space-y) var(--space-x);
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--gap);
  }
  .nav-list a {
    display: block;
    padding: 8px 0;
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    border-bottom: 1px solid var(--border-on-surface-light);
    transition: color var(--anim-duration) var(--anim-ease);
  }
  .nav-list a:hover {
    color: var(--link-hover);
  }
  .nav-list li:last-child a {
    border-bottom: none;
  }
  @media (min-width: 768px) {
    .burger {
      display: flex;
    }
    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: var(--surface-1);
      box-shadow: var(--shadow-md);
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
      padding: 0 var(--space-x);
    }
    .nav-menu.open {
      max-height: 400px;
      padding: var(--space-y) var(--space-x);
    }
    .nav-list {
      flex-direction: column;
      gap: var(--gap);
    }
    .nav-list a {
      border-bottom: 1px solid var(--border-on-surface-light);
    }
    .nav-list li:last-child a {
      border-bottom: none;
    }
  }

.site-footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #333;
  padding-bottom: 1.5rem;
}
.footer-brand {
  margin-bottom: 0.5rem;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f5a623;
  text-decoration: none;
  letter-spacing: 1px;
}
.footer-logo:hover {
  color: #ffc107;
}
.footer-nav .nav-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin: 0;
  padding: 0;
}
.footer-nav .nav-list a {
  color: #ccc;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}
.footer-nav .nav-list a:hover {
  color: #f5a623;
}
.footer-middle {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #333;
  padding-bottom: 1.5rem;
}
.contact-info ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.contact-info li {
  font-size: 0.95rem;
}
.contact-info a {
  color: #f5a623;
  text-decoration: none;
}
.contact-info a:hover {
  text-decoration: underline;
}
.footer-bottom {
  text-align: center;
  font-size: 0.9rem;
}
.copyright {
  margin: 0 0 0.5rem 0;
  color: #aaa;
}
.disclaimer {
  margin: 0;
  color: #999;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.disclaimer a {
  color: #f5a623;
  text-decoration: none;
}
.disclaimer a:hover {
  text-decoration: underline;
}
@media (max-width: 600px) {
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-nav .nav-list {
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
  }
  .contact-info ul {
    flex-direction: column;
    gap: 0.5rem;
  }
}

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

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

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

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

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

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

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

.product-item--light-v6 {

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

.product-item__inner {
    max-width: 640px;
    margin: 0 auto;
}

.product-item__inner h1 {
    margin: 0 0 4px;
    font-size: clamp(22px,3.5vw,28px);
}

.product-item__desc {
    margin: 0;
    font-size: 0.95rem;
    color: var(--neutral-700);
}

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

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

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

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

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

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

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

header {
    background-color: var(--surface-1);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-y) var(--space-x);
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
    flex-shrink: 0;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: background-color var(--anim-duration) var(--anim-ease);
    flex-shrink: 0;
  }
  .burger:hover {
    background-color: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--surface-1);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
    padding: 0 var(--space-x);
  }
  .nav-menu.open {
    max-height: 400px;
    padding: var(--space-y) var(--space-x);
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--gap);
  }
  .nav-list a {
    display: block;
    padding: 8px 0;
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    border-bottom: 1px solid var(--border-on-surface-light);
    transition: color var(--anim-duration) var(--anim-ease);
  }
  .nav-list a:hover {
    color: var(--link-hover);
  }
  .nav-list li:last-child a {
    border-bottom: none;
  }
  @media (min-width: 768px) {
    .burger {
      display: flex;
    }
    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: var(--surface-1);
      box-shadow: var(--shadow-md);
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
      padding: 0 var(--space-x);
    }
    .nav-menu.open {
      max-height: 400px;
      padding: var(--space-y) var(--space-x);
    }
    .nav-list {
      flex-direction: column;
      gap: var(--gap);
    }
    .nav-list a {
      border-bottom: 1px solid var(--border-on-surface-light);
    }
    .nav-list li:last-child a {
      border-bottom: none;
    }
  }

.site-footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #333;
  padding-bottom: 1.5rem;
}
.footer-brand {
  margin-bottom: 0.5rem;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f5a623;
  text-decoration: none;
  letter-spacing: 1px;
}
.footer-logo:hover {
  color: #ffc107;
}
.footer-nav .nav-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin: 0;
  padding: 0;
}
.footer-nav .nav-list a {
  color: #ccc;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}
.footer-nav .nav-list a:hover {
  color: #f5a623;
}
.footer-middle {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #333;
  padding-bottom: 1.5rem;
}
.contact-info ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.contact-info li {
  font-size: 0.95rem;
}
.contact-info a {
  color: #f5a623;
  text-decoration: none;
}
.contact-info a:hover {
  text-decoration: underline;
}
.footer-bottom {
  text-align: center;
  font-size: 0.9rem;
}
.copyright {
  margin: 0 0 0.5rem 0;
  color: #aaa;
}
.disclaimer {
  margin: 0;
  color: #999;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.disclaimer a {
  color: #f5a623;
  text-decoration: none;
}
.disclaimer a:hover {
  text-decoration: underline;
}
@media (max-width: 600px) {
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-nav .nav-list {
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
  }
  .contact-info ul {
    flex-direction: column;
    gap: 0.5rem;
  }
}

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

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

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

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

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

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

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

.checkout {

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

    .checkout .checkout__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: var(--space-x);
    }

    @media (min-width: 1024px) {
        .checkout .checkout__c {
            grid-template-columns: 2fr 1fr;
        }
    }

    .checkout h2 {
        font-size: clamp(24px, 4vw, 32px);
        margin: 0 0 var(--space-y);
    }

    .checkout .checkout__items {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .checkout .checkout__item {
        display: flex;
        gap: 1rem;
        background: var(--surface-light);
        padding: 1rem;
        border-radius: var(--radius-lg);
        border: 1px solid var(--ring);
    }

    .checkout .checkout__item-image {
        width: 100px;
        height: 100px;
        object-fit: cover;
        border-radius: var(--radius-md);
    }

    .checkout .checkout__item-info {
        flex: 1;
    }

    .checkout h4 {
        margin: 0 0 0.5rem;
        color: var(--fg-on-primary);
    }

    .checkout .checkout__item-price {
        font-weight: 700;
        color: var(--bg-primary);
        margin: 0.5rem 0;
    }

    .checkout .checkout__item-quantity {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        margin-top: 0.5rem;
    }

    .checkout .checkout__item-quantity button {
        width: 32px;
        height: 32px;
        border-radius: var(--radius-sm);
        border: 1px solid var(--ring);
        background: var(--gradient-hero);
        cursor: pointer;
    }

    .checkout .checkout__summary {
        background: var(--surface-light);
        padding: clamp(24px, 3vw, 32px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--ring);
        box-shadow: var(--shadow-md);
    }

    .checkout .checkout__total {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--bg-primary);
        margin-bottom: var(--space-y);
        padding-bottom: var(--space-y);
        border-bottom: 1px solid var(--ring);
    }

    .checkout .checkout__form {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .checkout .checkout__form input,
    .checkout .checkout__form textarea {
        padding: 0.875rem;
        border-radius: var(--radius-md);
        border: 1px solid var(--ring);

        outline: none;
    }

    .checkout .checkout__form input:focus,
    .checkout .checkout__form textarea:focus {
        border-color: var(--bg-primary);
        box-shadow: 0 0 0 3px var(--ring);
    }

    .checkout .checkout__form button {
        padding: 1rem 2rem;
        border-radius: var(--radius-lg);
        border: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary) fff;
        font-weight: 600;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .checkout .checkout__form button:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
    }

header {
    background-color: var(--surface-1);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-y) var(--space-x);
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
    flex-shrink: 0;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: background-color var(--anim-duration) var(--anim-ease);
    flex-shrink: 0;
  }
  .burger:hover {
    background-color: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--surface-1);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
    padding: 0 var(--space-x);
  }
  .nav-menu.open {
    max-height: 400px;
    padding: var(--space-y) var(--space-x);
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--gap);
  }
  .nav-list a {
    display: block;
    padding: 8px 0;
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    border-bottom: 1px solid var(--border-on-surface-light);
    transition: color var(--anim-duration) var(--anim-ease);
  }
  .nav-list a:hover {
    color: var(--link-hover);
  }
  .nav-list li:last-child a {
    border-bottom: none;
  }
  @media (min-width: 768px) {
    .burger {
      display: flex;
    }
    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: var(--surface-1);
      box-shadow: var(--shadow-md);
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
      padding: 0 var(--space-x);
    }
    .nav-menu.open {
      max-height: 400px;
      padding: var(--space-y) var(--space-x);
    }
    .nav-list {
      flex-direction: column;
      gap: var(--gap);
    }
    .nav-list a {
      border-bottom: 1px solid var(--border-on-surface-light);
    }
    .nav-list li:last-child a {
      border-bottom: none;
    }
  }

.site-footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #333;
  padding-bottom: 1.5rem;
}
.footer-brand {
  margin-bottom: 0.5rem;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f5a623;
  text-decoration: none;
  letter-spacing: 1px;
}
.footer-logo:hover {
  color: #ffc107;
}
.footer-nav .nav-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin: 0;
  padding: 0;
}
.footer-nav .nav-list a {
  color: #ccc;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}
.footer-nav .nav-list a:hover {
  color: #f5a623;
}
.footer-middle {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #333;
  padding-bottom: 1.5rem;
}
.contact-info ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.contact-info li {
  font-size: 0.95rem;
}
.contact-info a {
  color: #f5a623;
  text-decoration: none;
}
.contact-info a:hover {
  text-decoration: underline;
}
.footer-bottom {
  text-align: center;
  font-size: 0.9rem;
}
.copyright {
  margin: 0 0 0.5rem 0;
  color: #aaa;
}
.disclaimer {
  margin: 0;
  color: #999;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.disclaimer a {
  color: #f5a623;
  text-decoration: none;
}
.disclaimer a:hover {
  text-decoration: underline;
}
@media (max-width: 600px) {
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-nav .nav-list {
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
  }
  .contact-info ul {
    flex-direction: column;
    gap: 0.5rem;
  }
}

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

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

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

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

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

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

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

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-lx8{padding:calc(var(--space-y)*3) var(--space-x);background:var(--bg-alt)}
.frm-lx8 .frm-shell{max-width:var(--max-w);margin:0 auto}
.frm-lx8 h2{margin:0 0 .9rem;font-size:clamp(1.8rem,3.4vw,2.6rem)}
.frm-lx8 .frm-sheet{padding:1rem;border:1px solid var(--border-on-surface);border-radius:var(--radius-xl);background:var(--surface-1);display:grid;gap:.75rem}
.frm-lx8 .frm-inline{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:.6rem}
.frm-lx8 label{display:grid;gap:.24rem}
.frm-lx8 span{font-size:.82rem;font-weight:700;color:var(--fg-on-surface-light)}
.frm-lx8 input,.frm-lx8 textarea{width:100%;padding:.74rem;border:1px solid var(--border-on-surface-light);border-radius:var(--radius-md);font:inherit;background:var(--surface-1);color:var(--fg-on-surface)}
.frm-lx8 input:focus,.frm-lx8 textarea:focus{outline:2px solid color-mix(in srgb,var(--ring) 32%, transparent);outline-offset:1px}
.frm-lx8 textarea{min-height:120px;resize:vertical}
.frm-lx8 .frm-actions{display:flex;justify-content:space-between;gap:.8rem;align-items:center}
.frm-lx8 .frm-actions p{margin:0;color:var(--fg-on-surface-light)}
.frm-lx8 button{padding:.78rem 1.2rem;border:0;border-radius:999px;background:var(--bg-primary);color:var(--fg-on-primary);font-weight:700;cursor:pointer}
.frm-lx8 button:hover{background:var(--bg-primary-hover)}
@media (max-width:900px){.frm-lx8 .frm-inline{grid-template-columns:1fr 1fr}}@media (max-width:620px){.frm-lx8 .frm-inline,.frm-lx8 .frm-actions{grid-template-columns:1fr;display:grid}}

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

.support-ux10 {
        padding: clamp(48px, 6vw, 80px) clamp(16px, 4vw, 36px);
        background: var(--neutral-100);
        color: var(--neutral-900);
    }

    .support-ux10__wrap {
        max-width: 900px;
        margin: 0 auto;
        display: grid;
        gap: 12px;
        grid-template-columns: 1fr 1fr;
    }

    .support-ux10__wrap article {
        border: 1px solid var(--neutral-300);
        border-radius: var(--radius-lg);
        background: var(--neutral-100);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-sm);
    }

    .support-ux10__wrap h3 {
        margin: 0 0 7px;
        color: var(--brand);
    }

    .support-ux10__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

    @media (max-width: 700px) {
        .support-ux10__wrap {
            grid-template-columns: 1fr;
        }
    }

header {
    background-color: var(--surface-1);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-y) var(--space-x);
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
    flex-shrink: 0;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: background-color var(--anim-duration) var(--anim-ease);
    flex-shrink: 0;
  }
  .burger:hover {
    background-color: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--surface-1);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
    padding: 0 var(--space-x);
  }
  .nav-menu.open {
    max-height: 400px;
    padding: var(--space-y) var(--space-x);
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--gap);
  }
  .nav-list a {
    display: block;
    padding: 8px 0;
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    border-bottom: 1px solid var(--border-on-surface-light);
    transition: color var(--anim-duration) var(--anim-ease);
  }
  .nav-list a:hover {
    color: var(--link-hover);
  }
  .nav-list li:last-child a {
    border-bottom: none;
  }
  @media (min-width: 768px) {
    .burger {
      display: flex;
    }
    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: var(--surface-1);
      box-shadow: var(--shadow-md);
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
      padding: 0 var(--space-x);
    }
    .nav-menu.open {
      max-height: 400px;
      padding: var(--space-y) var(--space-x);
    }
    .nav-list {
      flex-direction: column;
      gap: var(--gap);
    }
    .nav-list a {
      border-bottom: 1px solid var(--border-on-surface-light);
    }
    .nav-list li:last-child a {
      border-bottom: none;
    }
  }

.site-footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #333;
  padding-bottom: 1.5rem;
}
.footer-brand {
  margin-bottom: 0.5rem;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f5a623;
  text-decoration: none;
  letter-spacing: 1px;
}
.footer-logo:hover {
  color: #ffc107;
}
.footer-nav .nav-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin: 0;
  padding: 0;
}
.footer-nav .nav-list a {
  color: #ccc;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}
.footer-nav .nav-list a:hover {
  color: #f5a623;
}
.footer-middle {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #333;
  padding-bottom: 1.5rem;
}
.contact-info ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.contact-info li {
  font-size: 0.95rem;
}
.contact-info a {
  color: #f5a623;
  text-decoration: none;
}
.contact-info a:hover {
  text-decoration: underline;
}
.footer-bottom {
  text-align: center;
  font-size: 0.9rem;
}
.copyright {
  margin: 0 0 0.5rem 0;
  color: #aaa;
}
.disclaimer {
  margin: 0;
  color: #999;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.disclaimer a {
  color: #f5a623;
  text-decoration: none;
}
.disclaimer a:hover {
  text-decoration: underline;
}
@media (max-width: 600px) {
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-nav .nav-list {
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
  }
  .contact-info ul {
    flex-direction: column;
    gap: 0.5rem;
  }
}

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

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

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

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

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

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

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

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

header {
    background-color: var(--surface-1);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-y) var(--space-x);
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
    flex-shrink: 0;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: background-color var(--anim-duration) var(--anim-ease);
    flex-shrink: 0;
  }
  .burger:hover {
    background-color: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--surface-1);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
    padding: 0 var(--space-x);
  }
  .nav-menu.open {
    max-height: 400px;
    padding: var(--space-y) var(--space-x);
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--gap);
  }
  .nav-list a {
    display: block;
    padding: 8px 0;
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    border-bottom: 1px solid var(--border-on-surface-light);
    transition: color var(--anim-duration) var(--anim-ease);
  }
  .nav-list a:hover {
    color: var(--link-hover);
  }
  .nav-list li:last-child a {
    border-bottom: none;
  }
  @media (min-width: 768px) {
    .burger {
      display: flex;
    }
    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: var(--surface-1);
      box-shadow: var(--shadow-md);
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
      padding: 0 var(--space-x);
    }
    .nav-menu.open {
      max-height: 400px;
      padding: var(--space-y) var(--space-x);
    }
    .nav-list {
      flex-direction: column;
      gap: var(--gap);
    }
    .nav-list a {
      border-bottom: 1px solid var(--border-on-surface-light);
    }
    .nav-list li:last-child a {
      border-bottom: none;
    }
  }

.site-footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #333;
  padding-bottom: 1.5rem;
}
.footer-brand {
  margin-bottom: 0.5rem;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f5a623;
  text-decoration: none;
  letter-spacing: 1px;
}
.footer-logo:hover {
  color: #ffc107;
}
.footer-nav .nav-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin: 0;
  padding: 0;
}
.footer-nav .nav-list a {
  color: #ccc;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}
.footer-nav .nav-list a:hover {
  color: #f5a623;
}
.footer-middle {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #333;
  padding-bottom: 1.5rem;
}
.contact-info ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.contact-info li {
  font-size: 0.95rem;
}
.contact-info a {
  color: #f5a623;
  text-decoration: none;
}
.contact-info a:hover {
  text-decoration: underline;
}
.footer-bottom {
  text-align: center;
  font-size: 0.9rem;
}
.copyright {
  margin: 0 0 0.5rem 0;
  color: #aaa;
}
.disclaimer {
  margin: 0;
  color: #999;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.disclaimer a {
  color: #f5a623;
  text-decoration: none;
}
.disclaimer a:hover {
  text-decoration: underline;
}
@media (max-width: 600px) {
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-nav .nav-list {
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
  }
  .contact-info ul {
    flex-direction: column;
    gap: 0.5rem;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

header {
    background-color: var(--surface-1);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-y) var(--space-x);
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
    flex-shrink: 0;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: background-color var(--anim-duration) var(--anim-ease);
    flex-shrink: 0;
  }
  .burger:hover {
    background-color: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--surface-1);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
    padding: 0 var(--space-x);
  }
  .nav-menu.open {
    max-height: 400px;
    padding: var(--space-y) var(--space-x);
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--gap);
  }
  .nav-list a {
    display: block;
    padding: 8px 0;
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    border-bottom: 1px solid var(--border-on-surface-light);
    transition: color var(--anim-duration) var(--anim-ease);
  }
  .nav-list a:hover {
    color: var(--link-hover);
  }
  .nav-list li:last-child a {
    border-bottom: none;
  }
  @media (min-width: 768px) {
    .burger {
      display: flex;
    }
    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: var(--surface-1);
      box-shadow: var(--shadow-md);
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
      padding: 0 var(--space-x);
    }
    .nav-menu.open {
      max-height: 400px;
      padding: var(--space-y) var(--space-x);
    }
    .nav-list {
      flex-direction: column;
      gap: var(--gap);
    }
    .nav-list a {
      border-bottom: 1px solid var(--border-on-surface-light);
    }
    .nav-list li:last-child a {
      border-bottom: none;
    }
  }

.site-footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #333;
  padding-bottom: 1.5rem;
}
.footer-brand {
  margin-bottom: 0.5rem;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f5a623;
  text-decoration: none;
  letter-spacing: 1px;
}
.footer-logo:hover {
  color: #ffc107;
}
.footer-nav .nav-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin: 0;
  padding: 0;
}
.footer-nav .nav-list a {
  color: #ccc;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}
.footer-nav .nav-list a:hover {
  color: #f5a623;
}
.footer-middle {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #333;
  padding-bottom: 1.5rem;
}
.contact-info ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.contact-info li {
  font-size: 0.95rem;
}
.contact-info a {
  color: #f5a623;
  text-decoration: none;
}
.contact-info a:hover {
  text-decoration: underline;
}
.footer-bottom {
  text-align: center;
  font-size: 0.9rem;
}
.copyright {
  margin: 0 0 0.5rem 0;
  color: #aaa;
}
.disclaimer {
  margin: 0;
  color: #999;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.disclaimer a {
  color: #f5a623;
  text-decoration: none;
}
.disclaimer a:hover {
  text-decoration: underline;
}
@media (max-width: 600px) {
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-nav .nav-list {
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
  }
  .contact-info ul {
    flex-direction: column;
    gap: 0.5rem;
  }
}

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

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

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

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

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

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

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

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-lx8{padding:calc(var(--space-y)*2.9) var(--space-x);background:var(--bg-alt)}
.thx-lx8 .thx-shell{max-width:900px;margin:0 auto;text-align:center}
.thx-lx8 h2{margin:0;font-size:clamp(1.76rem,3.2vw,2.46rem)}
.thx-lx8 .thx-sub{margin:.42rem 0 .92rem;color:var(--fg-on-surface-light)}
.thx-lx8 .thx-steps{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:.55rem}
.thx-lx8 .thx-steps div{padding:.82rem;border-radius:var(--radius-md);border:1px solid var(--border-on-surface);background:var(--surface-1);display:grid;gap:.22rem}
.thx-lx8 b{font-size:.94rem}
.thx-lx8 span{color:var(--fg-on-surface-light)}
@keyframes thankSoft{0%{opacity:.65;transform:translateY(5px)}100%{opacity:1;transform:none}}
.thx-lx8 .thx-steps div{animation:thankSoft .45s var(--anim-ease) both}
.thx-lx8 .thx-steps div:nth-child(2){animation-delay:.06s}.thx-lx8 .thx-steps div:nth-child(3){animation-delay:.12s}
@media (max-width:760px){.thx-lx8 .thx-steps{grid-template-columns:1fr}}

header {
    background-color: var(--surface-1);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-y) var(--space-x);
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
    flex-shrink: 0;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: background-color var(--anim-duration) var(--anim-ease);
    flex-shrink: 0;
  }
  .burger:hover {
    background-color: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--surface-1);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
    padding: 0 var(--space-x);
  }
  .nav-menu.open {
    max-height: 400px;
    padding: var(--space-y) var(--space-x);
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--gap);
  }
  .nav-list a {
    display: block;
    padding: 8px 0;
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    border-bottom: 1px solid var(--border-on-surface-light);
    transition: color var(--anim-duration) var(--anim-ease);
  }
  .nav-list a:hover {
    color: var(--link-hover);
  }
  .nav-list li:last-child a {
    border-bottom: none;
  }
  @media (min-width: 768px) {
    .burger {
      display: flex;
    }
    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: var(--surface-1);
      box-shadow: var(--shadow-md);
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
      padding: 0 var(--space-x);
    }
    .nav-menu.open {
      max-height: 400px;
      padding: var(--space-y) var(--space-x);
    }
    .nav-list {
      flex-direction: column;
      gap: var(--gap);
    }
    .nav-list a {
      border-bottom: 1px solid var(--border-on-surface-light);
    }
    .nav-list li:last-child a {
      border-bottom: none;
    }
  }

.site-footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #333;
  padding-bottom: 1.5rem;
}
.footer-brand {
  margin-bottom: 0.5rem;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f5a623;
  text-decoration: none;
  letter-spacing: 1px;
}
.footer-logo:hover {
  color: #ffc107;
}
.footer-nav .nav-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin: 0;
  padding: 0;
}
.footer-nav .nav-list a {
  color: #ccc;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}
.footer-nav .nav-list a:hover {
  color: #f5a623;
}
.footer-middle {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #333;
  padding-bottom: 1.5rem;
}
.contact-info ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.contact-info li {
  font-size: 0.95rem;
}
.contact-info a {
  color: #f5a623;
  text-decoration: none;
}
.contact-info a:hover {
  text-decoration: underline;
}
.footer-bottom {
  text-align: center;
  font-size: 0.9rem;
}
.copyright {
  margin: 0 0 0.5rem 0;
  color: #aaa;
}
.disclaimer {
  margin: 0;
  color: #999;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.disclaimer a {
  color: #f5a623;
  text-decoration: none;
}
.disclaimer a:hover {
  text-decoration: underline;
}
@media (max-width: 600px) {
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-nav .nav-list {
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
  }
  .contact-info ul {
    flex-direction: column;
    gap: 0.5rem;
  }
}

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

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

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

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

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

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

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

.err-slab-e {
        padding: clamp(56px, 10vw, 112px) 20px;
        background: repeating-linear-gradient(45deg, var(--bg-alt), var(--bg-alt) 14px, var(--neutral-0) 14px, var(--neutral-0) 28px);
        color: var(--fg-on-page);
    }

    .err-slab-e .inner {
        max-width: 700px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(26px, 4vw, 42px);
        background: var(--surface-1);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-md);
    }

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

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

    .err-slab-e a {
        display: inline-block;
        margin-top: 16px;
        color: var(--link);
        text-decoration: none;
        border-bottom: 2px solid var(--link);
        padding-bottom: 2px;
    }