:root {
  --font-family: "Raleway", sans-serif;
  --font-size-base: 18.1px;
  --line-height-base: 1.44;

  --max-w: 1160px;
  --space-x: 1.77rem;
  --space-y: 1.5rem;
  --gap: 1.16rem;

  --radius-xl: 1.24rem;
  --radius-lg: 0.92rem;
  --radius-md: 0.57rem;
  --radius-sm: 0.3rem;

  --shadow-sm: 0 3px 5px rgba(0,0,0,0.18);
  --shadow-md: 0 12px 22px rgba(0,0,0,0.23);
  --shadow-lg: 0 30px 34px rgba(0,0,0,0.29);

  --overlay: rgba(0, 0, 0, 0.7);
  --anim-duration: 110ms;
  --anim-ease: cubic-bezier(0.22,1,0.36,1);
  --random-number: 1;

  --brand: #00d4aa;
  --brand-contrast: #0a0a1a;
  --accent: #00d4aa;
  --accent-contrast: #0a0a1a;

  --neutral-0: #ffffff;
  --neutral-100: #e0e0e0;
  --neutral-300: #a0a0b0;
  --neutral-600: #505060;
  --neutral-800: #202030;
  --neutral-900: #0a0a1a;

  --bg-page: #0a0a1a;
  --fg-on-page: #e0e0e0;

  --bg-alt: #12122a;
  --fg-on-alt: #c0c0d0;

  --surface-1: #1a1a35;
  --surface-2: #252545;
  --fg-on-surface: #d0d0e0;
  --border-on-surface: #3a3a5a;

  --surface-light: #2a2a4a;
  --fg-on-surface-light: #d0d0e0;
  --border-on-surface-light: #4a4a6a;

  --bg-primary: #00d4aa;
  --fg-on-primary: #0a0a1a;
  --bg-primary-hover: #00e6b8;
  --ring: #00d4aa;

  --bg-accent: #00d4aa;
  --fg-on-accent: #0a0a1a;
  --bg-accent-hover: #00e6b8;

  --link: #00d4aa;
  --link-hover: #00e6b8;

  --gradient-hero: linear-gradient(135deg, #0a0a1a 0%, #1a1a35 50%, #0a0a1a 100%);
  --gradient-accent: linear-gradient(135deg, #00d4aa 0%, #00b894 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: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    line-height: 1;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--neutral-900);
    border-radius: 2px;
    transition: all 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-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }
  .nav-link {
    text-decoration: none;
    color: var(--neutral-600);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-link:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--neutral-900);
  }
  .nav-link.active {
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    font-weight: 600;
    box-shadow: var(--shadow-sm);
  }
  .cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.25rem;
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-lg);
    transition: background var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }
  .cta-secondary:hover {
    background: var(--bg-accent-hover);
  }
  @media (max-width: 767px) {
    .burger {
      display: flex;
    }
    .nav {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1);
      border-bottom: 1px solid var(--border-on-surface);
      box-shadow: var(--shadow-md);
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease);
    }
    .nav.open {
      max-height: 300px;
    }
    .nav-list {
      flex-direction: column;
      padding: var(--space-y) var(--space-x);
      gap: 0.5rem;
    }
    .nav-link {
      display: block;
      padding: 0.75rem 1rem;
    }
    .cta-secondary {
      display: none;
    }
  }
  @media (min-width: 768px) {
    .burger {
      display: none;
    }
    .nav {
      position: static;
      max-height: none;
      overflow: visible;
      box-shadow: none;
      border: none;
    }
    .nav-list {
      flex-direction: row;
    }
  }

.site-footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2.5rem 1.5rem 1.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, 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;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .footer-logo .logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    text-decoration: none;
    letter-spacing: 0.5px;
  }
  .footer-logo .logo-text:hover {
    color: #ffb830;
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .nav-list a {
    color: #c0c0d0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
  }
  .nav-list a:hover {
    color: #f0a500;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer-contact {
    flex: 1 1 280px;
  }
  .contact-info {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
  }
  .contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
  }
  .contact-item a {
    color: #c0c0d0;
    text-decoration: none;
  }
  .contact-item a:hover {
    color: #f0a500;
  }
  .icon {
    font-size: 1.1rem;
    flex-shrink: 0;
  }
  .footer-legal {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: flex-end;
    text-align: right;
  }
  .disclaimer {
    font-size: 0.85rem;
    color: #a0a0b0;
    max-width: 500px;
    line-height: 1.5;
  }
  .legal-links {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  .legal-links a {
    color: #c0c0d0;
    text-decoration: none;
    font-size: 0.9rem;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s, color 0.2s;
  }
  .legal-links a:hover {
    color: #f0a500;
    border-bottom-color: #f0a500;
  }
  .copyright {
    font-size: 0.85rem;
    color: #8888a0;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .nav-list {
      justify-content: center;
    }
    .footer-bottom {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-legal {
      align-items: center;
      text-align: center;
    }
    .legal-links {
      justify-content: center;
    }
    .contact-info {
      align-items: center;
    }
  }

.cookie-cv7 {
        position: fixed;
        left: var(--space-x);
        bottom: var(--space-y);
        width: min(360px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv7__card {
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        background: linear-gradient(140deg, var(--brand), var(--bg-primary-hover));
        color: var(--brand-contrast);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv7__card h3 {
        margin: 0 0 6px;
    }

    .cookie-cv7__card p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv7__actions {
        margin-top: 12px;
        display: grid;
        gap: 8px;
    }

    .cookie-cv7__actions button {
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.14);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-cv7__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

.intro-cardinal-c13 {
        padding: clamp(3.8rem, 8vw, 6.9rem) var(--space-x);
        background: radial-gradient(circle at 50% 0, rgba(255, 255, 255, .16), transparent 30%), var(--gradient-hero);
        color: var(--fg-on-primary);
    }

    .intro-cardinal-c13__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1.15fr .85fr;
        gap: 1rem;
        align-items: center;
    }

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

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

    .intro-cardinal-c13__copy strong {
        display: block;
        margin-top: .7rem;
    }

    .intro-cardinal-c13__copy span {
        display: block;
        margin-top: .9rem;

        max-width: 38rem;
    }

    .intro-cardinal-c13__cards {
        display: grid;
        gap: .75rem;
    }

    .intro-cardinal-c13__cards div {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    @media (max-width: 860px) {
        .intro-cardinal-c13__wrap {
            grid-template-columns: 1fr;
        }
    }

.next-ux28{padding:clamp(56px,8vw,96px) clamp(16px,4vw,40px);background:var(--neutral-0);color:var(--neutral-900)}
.next-ux28__wrap{max-width:var(--max-w);margin:0 auto;display:grid;grid-template-columns:1.1fr .9fr;gap:12px}
.next-ux28__main{border:1px solid var(--neutral-300);border-radius:var(--radius-lg);padding:14px;background:var(--neutral-100)}
.next-ux28__main h2{margin:0;font-size:clamp(28px,4vw,42px)}
.next-ux28__main p{margin:8px 0 10px;color:var(--neutral-600)}
.next-ux28__main a{display:inline-flex;padding:9px 12px;border-radius:var(--radius-sm);background:var(--bg-primary);color:var(--fg-on-primary);text-decoration:none}
.next-ux28__notes{border:1px solid var(--neutral-300);border-radius:var(--radius-lg);padding:14px;background:var(--neutral-100)}
.next-ux28__notes p{margin:0 0 8px;color:var(--neutral-800)}
.next-ux28__notes p:last-child{margin-bottom:0}
@media(max-width:820px){.next-ux28__wrap{grid-template-columns:1fr}}

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

.visual-ledger-l2 {
        padding: clamp(3.1rem, 7vw, 5.7rem) var(--space-x);
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

    .visual-ledger-l2__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .visual-ledger-l2__head {
        margin-bottom: 1rem;
        text-align: center;
    }

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

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

    .visual-ledger-l2__deck {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
        gap: var(--gap);
    }

    .visual-ledger-l2__deck figure {
        margin: 0;
        overflow: hidden;
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
    }

    .visual-ledger-l2__deck img {
        display: block;
        width: 100%;
        height: 14rem;
        object-fit: cover;
    }

    .visual-ledger-l2__deck figcaption {
        padding: 1rem;
    }

    .visual-ledger-l2__deck strong {
        color: var(--brand);
    }

    .visual-ledger-l2__deck h3 {
        margin: .5rem 0 .35rem;
    }

    .visual-ledger-l2__deck p {
        margin: 0;
        color: var(--neutral-600);
    }

.why-choose {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: clamp(40px, 6vw, 80px) clamp(16px, 3vw, 40px);
    }

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

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

        transform: translateY(20px);
    }

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

    .why-choose .why-choose__subtitle {
        font-size: clamp(16px, 2vw, 20px);
        margin: 0;
        opacity: 0.9;
    }

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

    .why-choose .why-choose__item {
        background: var(--fg-on-primary);
        padding: clamp(20px, 3vw, 32px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface-light);
        transition: transform var(--anim-duration) var(--anim-ease);

        transform: translateY(30px);
    }

    .why-choose .why-choose__item:hover {
        transform: translateY(-4px);
    }

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

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

    .why-choose .why-choose__item p {
        margin: 0;
        color: var(--fg-on-surface-light);
        opacity: 0.85;
        line-height: var(--line-height-base);
    }

header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    line-height: 1;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--neutral-900);
    border-radius: 2px;
    transition: all 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-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }
  .nav-link {
    text-decoration: none;
    color: var(--neutral-600);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-link:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--neutral-900);
  }
  .nav-link.active {
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    font-weight: 600;
    box-shadow: var(--shadow-sm);
  }
  .cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.25rem;
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-lg);
    transition: background var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }
  .cta-secondary:hover {
    background: var(--bg-accent-hover);
  }
  @media (max-width: 767px) {
    .burger {
      display: flex;
    }
    .nav {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1);
      border-bottom: 1px solid var(--border-on-surface);
      box-shadow: var(--shadow-md);
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease);
    }
    .nav.open {
      max-height: 300px;
    }
    .nav-list {
      flex-direction: column;
      padding: var(--space-y) var(--space-x);
      gap: 0.5rem;
    }
    .nav-link {
      display: block;
      padding: 0.75rem 1rem;
    }
    .cta-secondary {
      display: none;
    }
  }
  @media (min-width: 768px) {
    .burger {
      display: none;
    }
    .nav {
      position: static;
      max-height: none;
      overflow: visible;
      box-shadow: none;
      border: none;
    }
    .nav-list {
      flex-direction: row;
    }
  }

.site-footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2.5rem 1.5rem 1.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, 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;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .footer-logo .logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    text-decoration: none;
    letter-spacing: 0.5px;
  }
  .footer-logo .logo-text:hover {
    color: #ffb830;
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .nav-list a {
    color: #c0c0d0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
  }
  .nav-list a:hover {
    color: #f0a500;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer-contact {
    flex: 1 1 280px;
  }
  .contact-info {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
  }
  .contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
  }
  .contact-item a {
    color: #c0c0d0;
    text-decoration: none;
  }
  .contact-item a:hover {
    color: #f0a500;
  }
  .icon {
    font-size: 1.1rem;
    flex-shrink: 0;
  }
  .footer-legal {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: flex-end;
    text-align: right;
  }
  .disclaimer {
    font-size: 0.85rem;
    color: #a0a0b0;
    max-width: 500px;
    line-height: 1.5;
  }
  .legal-links {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  .legal-links a {
    color: #c0c0d0;
    text-decoration: none;
    font-size: 0.9rem;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s, color 0.2s;
  }
  .legal-links a:hover {
    color: #f0a500;
    border-bottom-color: #f0a500;
  }
  .copyright {
    font-size: 0.85rem;
    color: #8888a0;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .nav-list {
      justify-content: center;
    }
    .footer-bottom {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-legal {
      align-items: center;
      text-align: center;
    }
    .legal-links {
      justify-content: center;
    }
    .contact-info {
      align-items: center;
    }
  }

.cookie-cv7 {
        position: fixed;
        left: var(--space-x);
        bottom: var(--space-y);
        width: min(360px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv7__card {
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        background: linear-gradient(140deg, var(--brand), var(--bg-primary-hover));
        color: var(--brand-contrast);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv7__card h3 {
        margin: 0 0 6px;
    }

    .cookie-cv7__card p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv7__actions {
        margin-top: 12px;
        display: grid;
        gap: 8px;
    }

    .cookie-cv7__actions button {
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.14);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-cv7__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

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

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

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

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

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

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

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

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

    .identity-nv7__grid h3 {
        margin: 0;
    }

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

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

body{margin:0;padding:0;font-family:var(--font-family);font-size:var(--font-size-base);line-height:var(--line-height-base);box-sizing:border-box;background:var(--bg-page);color:var(--fg-on-page)}
*{box-sizing:border-box;}
.mis-lx8{padding:calc(var(--space-y)*2.95) var(--space-x);background:var(--bg-alt)}
.mis-lx8 .mis-shell{max-width:var(--max-w);margin:0 auto}
.mis-lx8 h2{margin:0 0 .9rem;font-size:clamp(1.75rem,3.1vw,2.45rem)}
.mis-lx8 .mis-split{display:grid;grid-template-columns:.9fr 1.1fr;gap:var(--gap)}
.mis-lx8 .mis-split>p{margin:0;padding:1rem;border-radius:var(--radius-lg);background:var(--surface-1);border:1px solid var(--border-on-surface);color:var(--fg-on-surface-light)}
.mis-lx8 .mis-points{display:grid;gap:.55rem}
.mis-lx8 .mis-points div{padding:.8rem .9rem;border-radius:var(--radius-md);background:var(--surface-1);border-inline-start:4px solid var(--bg-primary)}
.mis-lx8 h3{margin:0 0 .2rem;font-size:1.02rem}
.mis-lx8 .mis-points p{margin:0;color:var(--fg-on-surface-light)}
@keyframes missionFloat{0%{transform:translateY(4px);opacity:.75}100%{transform:none;opacity:1}}
.mis-lx8 .mis-points div{animation:missionFloat .45s var(--anim-ease) both}
.mis-lx8 .mis-points div:nth-child(2){animation-delay:.06s}.mis-lx8 .mis-points div:nth-child(3){animation-delay:.12s}
@media (max-width:860px){.mis-lx8 .mis-split{grid-template-columns:1fr}}

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

header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    line-height: 1;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--neutral-900);
    border-radius: 2px;
    transition: all 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-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }
  .nav-link {
    text-decoration: none;
    color: var(--neutral-600);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-link:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--neutral-900);
  }
  .nav-link.active {
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    font-weight: 600;
    box-shadow: var(--shadow-sm);
  }
  .cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.25rem;
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-lg);
    transition: background var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }
  .cta-secondary:hover {
    background: var(--bg-accent-hover);
  }
  @media (max-width: 767px) {
    .burger {
      display: flex;
    }
    .nav {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1);
      border-bottom: 1px solid var(--border-on-surface);
      box-shadow: var(--shadow-md);
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease);
    }
    .nav.open {
      max-height: 300px;
    }
    .nav-list {
      flex-direction: column;
      padding: var(--space-y) var(--space-x);
      gap: 0.5rem;
    }
    .nav-link {
      display: block;
      padding: 0.75rem 1rem;
    }
    .cta-secondary {
      display: none;
    }
  }
  @media (min-width: 768px) {
    .burger {
      display: none;
    }
    .nav {
      position: static;
      max-height: none;
      overflow: visible;
      box-shadow: none;
      border: none;
    }
    .nav-list {
      flex-direction: row;
    }
  }

.site-footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2.5rem 1.5rem 1.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, 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;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .footer-logo .logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    text-decoration: none;
    letter-spacing: 0.5px;
  }
  .footer-logo .logo-text:hover {
    color: #ffb830;
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .nav-list a {
    color: #c0c0d0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
  }
  .nav-list a:hover {
    color: #f0a500;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer-contact {
    flex: 1 1 280px;
  }
  .contact-info {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
  }
  .contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
  }
  .contact-item a {
    color: #c0c0d0;
    text-decoration: none;
  }
  .contact-item a:hover {
    color: #f0a500;
  }
  .icon {
    font-size: 1.1rem;
    flex-shrink: 0;
  }
  .footer-legal {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: flex-end;
    text-align: right;
  }
  .disclaimer {
    font-size: 0.85rem;
    color: #a0a0b0;
    max-width: 500px;
    line-height: 1.5;
  }
  .legal-links {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  .legal-links a {
    color: #c0c0d0;
    text-decoration: none;
    font-size: 0.9rem;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s, color 0.2s;
  }
  .legal-links a:hover {
    color: #f0a500;
    border-bottom-color: #f0a500;
  }
  .copyright {
    font-size: 0.85rem;
    color: #8888a0;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .nav-list {
      justify-content: center;
    }
    .footer-bottom {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-legal {
      align-items: center;
      text-align: center;
    }
    .legal-links {
      justify-content: center;
    }
    .contact-info {
      align-items: center;
    }
  }

.cookie-cv7 {
        position: fixed;
        left: var(--space-x);
        bottom: var(--space-y);
        width: min(360px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv7__card {
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        background: linear-gradient(140deg, var(--brand), var(--bg-primary-hover));
        color: var(--brand-contrast);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv7__card h3 {
        margin: 0 0 6px;
    }

    .cookie-cv7__card p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv7__actions {
        margin-top: 12px;
        display: grid;
        gap: 8px;
    }

    .cookie-cv7__actions button {
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.14);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-cv7__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

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

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

.nfsocial-v10 {
        padding: clamp(48px, 8vw, 80px) 0;
        background: var(--surface-1);
    }

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

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

    .nfsocial-v10__text {
        border-left: 2px solid var(--border-on-surface);
        padding-left: var(--space-x);
    }

    .nfsocial-v10__text:first-child {
        border-left: 0;
        padding-left: 0;
    }

    .nfsocial-v10__text h2 {
        margin-bottom: var(--space-y);
        color: var(--fg-on-page);
    }

    .nfsocial-v10__text p {
        margin-bottom: var(--space-y);
        color: var(--neutral-600);
    }

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

        .nfsocial-v10__text {
            border-left: 0;
            padding-left: 0;
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

.plans-ux7{padding:clamp(50px,7vw,92px) clamp(16px,4vw,36px);background:var(--neutral-0);color:var(--neutral-900)}.plans-ux7__wrap{max-width:var(--max-w);margin:0 auto}.plans-ux7 p{margin:8px 0 12px;color:var(--neutral-600)}.plans-ux7__grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:10px}.plans-ux7 article{border:1px solid var(--neutral-300);background:var(--neutral-100);border-radius:var(--radius-lg);padding:12px}.plans-ux7 h3{margin:0}.plans-ux7 ul{margin:8px 0 0;padding-left:18px;display:grid;gap:5px;color:var(--neutral-800)}.plans-ux7 button{width:100%;margin-top:9px;border:1px solid var(--neutral-300);border-radius:var(--radius-sm);background:var(--neutral-0);color:var(--neutral-900);padding:8px 10px}

header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    line-height: 1;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--neutral-900);
    border-radius: 2px;
    transition: all 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-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }
  .nav-link {
    text-decoration: none;
    color: var(--neutral-600);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-link:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--neutral-900);
  }
  .nav-link.active {
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    font-weight: 600;
    box-shadow: var(--shadow-sm);
  }
  .cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.25rem;
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-lg);
    transition: background var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }
  .cta-secondary:hover {
    background: var(--bg-accent-hover);
  }
  @media (max-width: 767px) {
    .burger {
      display: flex;
    }
    .nav {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1);
      border-bottom: 1px solid var(--border-on-surface);
      box-shadow: var(--shadow-md);
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease);
    }
    .nav.open {
      max-height: 300px;
    }
    .nav-list {
      flex-direction: column;
      padding: var(--space-y) var(--space-x);
      gap: 0.5rem;
    }
    .nav-link {
      display: block;
      padding: 0.75rem 1rem;
    }
    .cta-secondary {
      display: none;
    }
  }
  @media (min-width: 768px) {
    .burger {
      display: none;
    }
    .nav {
      position: static;
      max-height: none;
      overflow: visible;
      box-shadow: none;
      border: none;
    }
    .nav-list {
      flex-direction: row;
    }
  }

.site-footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2.5rem 1.5rem 1.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, 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;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .footer-logo .logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    text-decoration: none;
    letter-spacing: 0.5px;
  }
  .footer-logo .logo-text:hover {
    color: #ffb830;
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .nav-list a {
    color: #c0c0d0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
  }
  .nav-list a:hover {
    color: #f0a500;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer-contact {
    flex: 1 1 280px;
  }
  .contact-info {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
  }
  .contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
  }
  .contact-item a {
    color: #c0c0d0;
    text-decoration: none;
  }
  .contact-item a:hover {
    color: #f0a500;
  }
  .icon {
    font-size: 1.1rem;
    flex-shrink: 0;
  }
  .footer-legal {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: flex-end;
    text-align: right;
  }
  .disclaimer {
    font-size: 0.85rem;
    color: #a0a0b0;
    max-width: 500px;
    line-height: 1.5;
  }
  .legal-links {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  .legal-links a {
    color: #c0c0d0;
    text-decoration: none;
    font-size: 0.9rem;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s, color 0.2s;
  }
  .legal-links a:hover {
    color: #f0a500;
    border-bottom-color: #f0a500;
  }
  .copyright {
    font-size: 0.85rem;
    color: #8888a0;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .nav-list {
      justify-content: center;
    }
    .footer-bottom {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-legal {
      align-items: center;
      text-align: center;
    }
    .legal-links {
      justify-content: center;
    }
    .contact-info {
      align-items: center;
    }
  }

.cookie-cv7 {
        position: fixed;
        left: var(--space-x);
        bottom: var(--space-y);
        width: min(360px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv7__card {
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        background: linear-gradient(140deg, var(--brand), var(--bg-primary-hover));
        color: var(--brand-contrast);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv7__card h3 {
        margin: 0 0 6px;
    }

    .cookie-cv7__card p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv7__actions {
        margin-top: 12px;
        display: grid;
        gap: 8px;
    }

    .cookie-cv7__actions button {
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.14);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-cv7__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

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-u3{padding:calc(var(--space-y)*2.9) var(--space-x);background:var(--bg-primary);color:var(--fg-on-primary)} .contacts-u3 .shell{max-width:var(--max-w);margin:0 auto;display:grid;gap:var(--gap)} .contacts-u3 h2{margin:0;font-size:clamp(1.85rem,3.6vw,2.8rem);line-height:1.1} .contacts-u3 .sub{margin:.35rem 0 0;opacity:.9;} .contacts-u3 article,.contacts-u3 li{padding:.85rem;border-radius:var(--radius-sm);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);list-style:none} .contacts-u3 p{margin:0} .contacts-u3 a{text-decoration:none;color:inherit;font-weight:700} .contacts-u3 .acc{display:grid;gap:.5rem} .contacts-u3 details{padding:.82rem .9rem;border-radius:var(--radius-sm);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover)} .contacts-u3 summary{cursor:pointer;font-weight:700} .contacts-u3 details p{margin:.35rem 0 0} .contacts-u3 article{transition:transform var(--anim-duration) var(--anim-ease),box-shadow var(--anim-duration) var(--anim-ease)} .contacts-u3 article:hover{transform:translateY(-4px);box-shadow:var(--shadow-md)} @media (max-width:860px){.contacts-u3 .split,.contacts-u3 .media,.contacts-u3 .grid,.contacts-u3 .cards,.contacts-u3 .bento,.contacts-u3 .foot{grid-template-columns:1fr}}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    line-height: 1;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--neutral-900);
    border-radius: 2px;
    transition: all 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-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }
  .nav-link {
    text-decoration: none;
    color: var(--neutral-600);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-link:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--neutral-900);
  }
  .nav-link.active {
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    font-weight: 600;
    box-shadow: var(--shadow-sm);
  }
  .cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.25rem;
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-lg);
    transition: background var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }
  .cta-secondary:hover {
    background: var(--bg-accent-hover);
  }
  @media (max-width: 767px) {
    .burger {
      display: flex;
    }
    .nav {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1);
      border-bottom: 1px solid var(--border-on-surface);
      box-shadow: var(--shadow-md);
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease);
    }
    .nav.open {
      max-height: 300px;
    }
    .nav-list {
      flex-direction: column;
      padding: var(--space-y) var(--space-x);
      gap: 0.5rem;
    }
    .nav-link {
      display: block;
      padding: 0.75rem 1rem;
    }
    .cta-secondary {
      display: none;
    }
  }
  @media (min-width: 768px) {
    .burger {
      display: none;
    }
    .nav {
      position: static;
      max-height: none;
      overflow: visible;
      box-shadow: none;
      border: none;
    }
    .nav-list {
      flex-direction: row;
    }
  }

.site-footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2.5rem 1.5rem 1.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, 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;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .footer-logo .logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    text-decoration: none;
    letter-spacing: 0.5px;
  }
  .footer-logo .logo-text:hover {
    color: #ffb830;
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .nav-list a {
    color: #c0c0d0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
  }
  .nav-list a:hover {
    color: #f0a500;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer-contact {
    flex: 1 1 280px;
  }
  .contact-info {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
  }
  .contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
  }
  .contact-item a {
    color: #c0c0d0;
    text-decoration: none;
  }
  .contact-item a:hover {
    color: #f0a500;
  }
  .icon {
    font-size: 1.1rem;
    flex-shrink: 0;
  }
  .footer-legal {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: flex-end;
    text-align: right;
  }
  .disclaimer {
    font-size: 0.85rem;
    color: #a0a0b0;
    max-width: 500px;
    line-height: 1.5;
  }
  .legal-links {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  .legal-links a {
    color: #c0c0d0;
    text-decoration: none;
    font-size: 0.9rem;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s, color 0.2s;
  }
  .legal-links a:hover {
    color: #f0a500;
    border-bottom-color: #f0a500;
  }
  .copyright {
    font-size: 0.85rem;
    color: #8888a0;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .nav-list {
      justify-content: center;
    }
    .footer-bottom {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-legal {
      align-items: center;
      text-align: center;
    }
    .legal-links {
      justify-content: center;
    }
    .contact-info {
      align-items: center;
    }
  }

.cookie-cv7 {
        position: fixed;
        left: var(--space-x);
        bottom: var(--space-y);
        width: min(360px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv7__card {
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        background: linear-gradient(140deg, var(--brand), var(--bg-primary-hover));
        color: var(--brand-contrast);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv7__card h3 {
        margin: 0 0 6px;
    }

    .cookie-cv7__card p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv7__actions {
        margin-top: 12px;
        display: grid;
        gap: 8px;
    }

    .cookie-cv7__actions button {
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.14);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-cv7__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

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;}
.pol-lx6{padding:calc(var(--space-y)*2.65) var(--space-x)}
.pol-lx6 .pol-grid{max-width:var(--max-w);margin:0 auto;display:grid;grid-template-columns:repeat(12,minmax(0,1fr));gap:.6rem}
.pol-lx6 .pol-main{grid-column:span 12;padding:1rem;border-radius:var(--radius-xl);background:var(--surface-1);border:1px solid var(--border-on-surface)}
.pol-lx6 .pol-main h2{margin:0;font-size:clamp(1.75rem,3.2vw,2.45rem)}
.pol-lx6 .pol-main p{margin:.38rem 0 0;color:var(--fg-on-surface-light)}
.pol-lx6 .pol-card{grid-column:span 4;padding:.85rem;border-radius:var(--radius-md);background:var(--surface-2);border:1px solid var(--border-on-surface)}
.pol-lx6 .pol-card h3{margin:0 0 .22rem;font-size:1rem}
.pol-lx6 .pol-card p{margin:0;color:var(--fg-on-surface-light)}
.pol-lx6 .pol-foot{grid-column:span 12;padding:.85rem;border-radius:var(--radius-md);background:color-mix(in srgb,var(--surface-1) 86%, var(--bg-accent) 14%);border:1px solid var(--border-on-surface)}
.pol-lx6 .pol-foot h3{margin:0 0 .2rem}
.pol-lx6 .pol-foot p{margin:0}
@media (max-width:920px){.pol-lx6 .pol-card{grid-column:span 6}}@media (max-width:620px){.pol-lx6 .pol-card{grid-column:1/-1}}

header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    line-height: 1;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--neutral-900);
    border-radius: 2px;
    transition: all 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-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }
  .nav-link {
    text-decoration: none;
    color: var(--neutral-600);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-link:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--neutral-900);
  }
  .nav-link.active {
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    font-weight: 600;
    box-shadow: var(--shadow-sm);
  }
  .cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.25rem;
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-lg);
    transition: background var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }
  .cta-secondary:hover {
    background: var(--bg-accent-hover);
  }
  @media (max-width: 767px) {
    .burger {
      display: flex;
    }
    .nav {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1);
      border-bottom: 1px solid var(--border-on-surface);
      box-shadow: var(--shadow-md);
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease);
    }
    .nav.open {
      max-height: 300px;
    }
    .nav-list {
      flex-direction: column;
      padding: var(--space-y) var(--space-x);
      gap: 0.5rem;
    }
    .nav-link {
      display: block;
      padding: 0.75rem 1rem;
    }
    .cta-secondary {
      display: none;
    }
  }
  @media (min-width: 768px) {
    .burger {
      display: none;
    }
    .nav {
      position: static;
      max-height: none;
      overflow: visible;
      box-shadow: none;
      border: none;
    }
    .nav-list {
      flex-direction: row;
    }
  }

.site-footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2.5rem 1.5rem 1.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, 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;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .footer-logo .logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    text-decoration: none;
    letter-spacing: 0.5px;
  }
  .footer-logo .logo-text:hover {
    color: #ffb830;
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .nav-list a {
    color: #c0c0d0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
  }
  .nav-list a:hover {
    color: #f0a500;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer-contact {
    flex: 1 1 280px;
  }
  .contact-info {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
  }
  .contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
  }
  .contact-item a {
    color: #c0c0d0;
    text-decoration: none;
  }
  .contact-item a:hover {
    color: #f0a500;
  }
  .icon {
    font-size: 1.1rem;
    flex-shrink: 0;
  }
  .footer-legal {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: flex-end;
    text-align: right;
  }
  .disclaimer {
    font-size: 0.85rem;
    color: #a0a0b0;
    max-width: 500px;
    line-height: 1.5;
  }
  .legal-links {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  .legal-links a {
    color: #c0c0d0;
    text-decoration: none;
    font-size: 0.9rem;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s, color 0.2s;
  }
  .legal-links a:hover {
    color: #f0a500;
    border-bottom-color: #f0a500;
  }
  .copyright {
    font-size: 0.85rem;
    color: #8888a0;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .nav-list {
      justify-content: center;
    }
    .footer-bottom {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-legal {
      align-items: center;
      text-align: center;
    }
    .legal-links {
      justify-content: center;
    }
    .contact-info {
      align-items: center;
    }
  }

.cookie-cv7 {
        position: fixed;
        left: var(--space-x);
        bottom: var(--space-y);
        width: min(360px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv7__card {
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        background: linear-gradient(140deg, var(--brand), var(--bg-primary-hover));
        color: var(--brand-contrast);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv7__card h3 {
        margin: 0 0 6px;
    }

    .cookie-cv7__card p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv7__actions {
        margin-top: 12px;
        display: grid;
        gap: 8px;
    }

    .cookie-cv7__actions button {
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.14);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-cv7__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

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

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

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

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

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

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

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

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

header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    line-height: 1;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--neutral-900);
    border-radius: 2px;
    transition: all 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-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }
  .nav-link {
    text-decoration: none;
    color: var(--neutral-600);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-link:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--neutral-900);
  }
  .nav-link.active {
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    font-weight: 600;
    box-shadow: var(--shadow-sm);
  }
  .cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.25rem;
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-lg);
    transition: background var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }
  .cta-secondary:hover {
    background: var(--bg-accent-hover);
  }
  @media (max-width: 767px) {
    .burger {
      display: flex;
    }
    .nav {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1);
      border-bottom: 1px solid var(--border-on-surface);
      box-shadow: var(--shadow-md);
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease);
    }
    .nav.open {
      max-height: 300px;
    }
    .nav-list {
      flex-direction: column;
      padding: var(--space-y) var(--space-x);
      gap: 0.5rem;
    }
    .nav-link {
      display: block;
      padding: 0.75rem 1rem;
    }
    .cta-secondary {
      display: none;
    }
  }
  @media (min-width: 768px) {
    .burger {
      display: none;
    }
    .nav {
      position: static;
      max-height: none;
      overflow: visible;
      box-shadow: none;
      border: none;
    }
    .nav-list {
      flex-direction: row;
    }
  }

.site-footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2.5rem 1.5rem 1.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, 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;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .footer-logo .logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    text-decoration: none;
    letter-spacing: 0.5px;
  }
  .footer-logo .logo-text:hover {
    color: #ffb830;
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .nav-list a {
    color: #c0c0d0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
  }
  .nav-list a:hover {
    color: #f0a500;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer-contact {
    flex: 1 1 280px;
  }
  .contact-info {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
  }
  .contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
  }
  .contact-item a {
    color: #c0c0d0;
    text-decoration: none;
  }
  .contact-item a:hover {
    color: #f0a500;
  }
  .icon {
    font-size: 1.1rem;
    flex-shrink: 0;
  }
  .footer-legal {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: flex-end;
    text-align: right;
  }
  .disclaimer {
    font-size: 0.85rem;
    color: #a0a0b0;
    max-width: 500px;
    line-height: 1.5;
  }
  .legal-links {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  .legal-links a {
    color: #c0c0d0;
    text-decoration: none;
    font-size: 0.9rem;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s, color 0.2s;
  }
  .legal-links a:hover {
    color: #f0a500;
    border-bottom-color: #f0a500;
  }
  .copyright {
    font-size: 0.85rem;
    color: #8888a0;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .nav-list {
      justify-content: center;
    }
    .footer-bottom {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-legal {
      align-items: center;
      text-align: center;
    }
    .legal-links {
      justify-content: center;
    }
    .contact-info {
      align-items: center;
    }
  }

.cookie-cv7 {
        position: fixed;
        left: var(--space-x);
        bottom: var(--space-y);
        width: min(360px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv7__card {
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        background: linear-gradient(140deg, var(--brand), var(--bg-primary-hover));
        color: var(--brand-contrast);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv7__card h3 {
        margin: 0 0 6px;
    }

    .cookie-cv7__card p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv7__actions {
        margin-top: 12px;
        display: grid;
        gap: 8px;
    }

    .cookie-cv7__actions button {
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.14);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-cv7__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

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-lx10{padding:calc(var(--space-y)*2.7) var(--space-x)}
.thx-lx10 .thx-wrap{max-width:820px;margin:0 auto;display:grid;gap:.58rem}
.thx-lx10 .thx-note{padding:1rem;border-radius:var(--radius-xl);background:linear-gradient(180deg,var(--surface-1),var(--surface-2));border:1px solid var(--border-on-surface);text-align:center}
.thx-lx10 h2{margin:0;font-size:clamp(1.72rem,3vw,2.4rem)}
.thx-lx10 .thx-note p{margin:.38rem 0 0;color:var(--fg-on-surface-light)}
.thx-lx10 .thx-inline{margin:0;padding:.72rem .8rem;border-radius:var(--radius-md);background:var(--surface-1);border:1px solid var(--border-on-surface)}

header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    line-height: 1;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--neutral-900);
    border-radius: 2px;
    transition: all 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-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }
  .nav-link {
    text-decoration: none;
    color: var(--neutral-600);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-link:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--neutral-900);
  }
  .nav-link.active {
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    font-weight: 600;
    box-shadow: var(--shadow-sm);
  }
  .cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.25rem;
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-lg);
    transition: background var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }
  .cta-secondary:hover {
    background: var(--bg-accent-hover);
  }
  @media (max-width: 767px) {
    .burger {
      display: flex;
    }
    .nav {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1);
      border-bottom: 1px solid var(--border-on-surface);
      box-shadow: var(--shadow-md);
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease);
    }
    .nav.open {
      max-height: 300px;
    }
    .nav-list {
      flex-direction: column;
      padding: var(--space-y) var(--space-x);
      gap: 0.5rem;
    }
    .nav-link {
      display: block;
      padding: 0.75rem 1rem;
    }
    .cta-secondary {
      display: none;
    }
  }
  @media (min-width: 768px) {
    .burger {
      display: none;
    }
    .nav {
      position: static;
      max-height: none;
      overflow: visible;
      box-shadow: none;
      border: none;
    }
    .nav-list {
      flex-direction: row;
    }
  }

.site-footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2.5rem 1.5rem 1.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, 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;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .footer-logo .logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    text-decoration: none;
    letter-spacing: 0.5px;
  }
  .footer-logo .logo-text:hover {
    color: #ffb830;
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .nav-list a {
    color: #c0c0d0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
  }
  .nav-list a:hover {
    color: #f0a500;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer-contact {
    flex: 1 1 280px;
  }
  .contact-info {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
  }
  .contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
  }
  .contact-item a {
    color: #c0c0d0;
    text-decoration: none;
  }
  .contact-item a:hover {
    color: #f0a500;
  }
  .icon {
    font-size: 1.1rem;
    flex-shrink: 0;
  }
  .footer-legal {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: flex-end;
    text-align: right;
  }
  .disclaimer {
    font-size: 0.85rem;
    color: #a0a0b0;
    max-width: 500px;
    line-height: 1.5;
  }
  .legal-links {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  .legal-links a {
    color: #c0c0d0;
    text-decoration: none;
    font-size: 0.9rem;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s, color 0.2s;
  }
  .legal-links a:hover {
    color: #f0a500;
    border-bottom-color: #f0a500;
  }
  .copyright {
    font-size: 0.85rem;
    color: #8888a0;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .nav-list {
      justify-content: center;
    }
    .footer-bottom {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-legal {
      align-items: center;
      text-align: center;
    }
    .legal-links {
      justify-content: center;
    }
    .contact-info {
      align-items: center;
    }
  }

.cookie-cv7 {
        position: fixed;
        left: var(--space-x);
        bottom: var(--space-y);
        width: min(360px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv7__card {
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        background: linear-gradient(140deg, var(--brand), var(--bg-primary-hover));
        color: var(--brand-contrast);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv7__card h3 {
        margin: 0 0 6px;
    }

    .cookie-cv7__card p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv7__actions {
        margin-top: 12px;
        display: grid;
        gap: 8px;
    }

    .cookie-cv7__actions button {
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.14);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-cv7__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

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

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

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

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

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