:root {
  --font-family: "Noto Sans", sans-serif;
  --font-size-base: 17px;
  --line-height-base: 1.83;

  --max-w: 940px;
  --space-x: 1.04rem;
  --space-y: 1.5rem;
  --gap: 0.67rem;

  --radius-xl: 0.77rem;
  --radius-lg: 0.61rem;
  --radius-md: 0.33rem;
  --radius-sm: 0.21rem;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.1);

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

  --brand: #005f73;
  --brand-contrast: #ffffff;
  --accent: #e63946;
  --accent-contrast: #ffffff;

  --neutral-0: #ffffff;
  --neutral-100: #f1f5f9;
  --neutral-300: #cbd5e1;
  --neutral-600: #64748b;
  --neutral-800: #1e293b;
  --neutral-900: #0f172a;

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

  --bg-alt: #f8fafc;
  --fg-on-alt: #334155;

  --surface-1: #ffffff;
  --surface-2: #f1f5f9;
  --fg-on-surface: #1e293b;
  --border-on-surface: #e2e8f0;

  --surface-light: #ffffff;
  --fg-on-surface-light: #475569;
  --border-on-surface-light: #e2e8f0;

  --bg-primary: #005f73;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #0a4a5c;
  --ring: #005f73;

  --bg-accent: #e63946;
  --fg-on-accent: #ffffff;
  --bg-accent-hover: #c1121f;

  --link: #005f73;
  --link-hover: #e63946;

  --gradient-hero: linear-gradient(135deg, #005f73 0%, #0a9396 100%);
  --gradient-accent: linear-gradient(135deg, #e63946 0%, #c1121f 100%);

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

header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    padding: 0 var(--space-x);
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    gap: var(--gap);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: -0.02em;
    transition: color var(--anim-duration) var(--anim-ease);
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .nav-menu {
    display: flex;
    gap: var(--gap);
    align-items: center;
  }
  .nav-link {
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    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(--brand);
  }
  .header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .search-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--fg-on-surface);
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .search-toggle:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--brand);
  }
  .burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    padding: 0.5rem;
    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: 22px;
    height: 2px;
    background: 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);
  }
  @media (max-width: 767px) {
    .nav-menu {
      position: fixed;
      top: 64px;
      left: 0;
      right: 0;
      background: var(--surface-1);
      flex-direction: column;
      padding: var(--space-y) var(--space-x);
      gap: 0.5rem;
      border-bottom: 1px solid var(--border-on-surface);
      box-shadow: var(--shadow-md);
      transform: translateY(-100%);
      opacity: 0;
      pointer-events: none;
      transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }
    .nav-menu.open {
      transform: translateY(0);
      opacity: 1;
      pointer-events: auto;
    }
    .nav-link {
      width: 100%;
      text-align: center;
      padding: 0.75rem 1rem;
    }
    .burger {
      display: flex;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 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: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #333;
  }

  .footer-logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    text-decoration: none;
    letter-spacing: 1px;
  }

  .footer-logo a:hover {
    color: #ffc107;
  }

  .footer-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
  }

  .footer-nav a {
    color: #ccc;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }

  .footer-nav a:hover {
    color: #f0a500;
  }

  .footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
  }

  .footer-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-style: normal;
    color: #ccc;
  }

  .contact-item a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .contact-item a:hover {
    color: #f0a500;
  }

  .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .footer-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }

  .footer-links a:hover {
    color: #f0a500;
  }

  .footer-disclaimer {
    font-size: 0.85rem;
    color: #999;
    line-height: 1.5;
    border-top: 1px solid #333;
    padding-top: 1rem;
    margin-top: 0.5rem;
  }

  .footer-disclaimer p {
    margin: 0;
  }

  .footer-copyright {
    font-size: 0.85rem;
    color: #888;
    text-align: center;
    padding-top: 0.5rem;
  }

  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 1rem;
    }

    .footer-nav ul {
      justify-content: center;
      gap: 1rem;
    }

    .footer-legal {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .footer-contact {
      justify-content: center;
    }

    .footer-links {
      justify-content: center;
    }
  }

.cookie-lv4 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: var(--surface-2);
        border-bottom: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
    }

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

    .cookie-lv4__inner span {
        color: var(--neutral-600);
        margin-left: 6px;
    }

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

    .cookie-lv4__actions a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--link);
        padding: 6px 10px;
    }

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

.intro-buttons-c7 { padding: clamp(3.9rem,9vw,7rem) var(--space-x); background: radial-gradient(circle at 20% 20%, rgba(255,255,255,.18), transparent 25%), var(--gradient-accent); color: var(--fg-on-primary); }
.intro-buttons-c7__wrap { max-width: 58rem; margin: 0 auto; text-align: center; }
.intro-buttons-c7__copy p { margin: 0; color: rgba(255,255,255,.75); text-transform: uppercase; letter-spacing: .1em; font-size: .82rem; }
.intro-buttons-c7__copy h1 { margin: .6rem 0 0; font-size: clamp(2.5rem,5vw,4.6rem); line-height: 1; }
.intro-buttons-c7__copy span { display: block; margin-top: .9rem; color: rgba(255,255,255,.88); }
.intro-buttons-c7__actions { margin-top: 1.2rem; display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap; }
.intro-buttons-c7__btn { display: inline-flex; min-height: 2.85rem; align-items: center; justify-content: center; padding: 0 1rem; border-radius: 999px; text-decoration: none; background: rgba(255,255,255,.14); color: var(--fg-on-primary); border: 1px solid rgba(255,255,255,.18); }
.intro-buttons-c7__btn--primary { background: var(--surface-1); color: var(--fg-on-page); }

.cta-struct-v2 {
        padding: calc(var(--space-y) * 1.9) var(--space-x);
        background: var(--neutral-100);
        color: var(--neutral-900)
    }

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

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

    .cta-struct-v2 a {
        text-decoration: none
    }

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

    .cta-struct-v2 .center {
        display: grid;
        gap: .5rem;
        justify-items: center;
        text-align: center
    }

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

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

    .cta-struct-v2 .actions a, .cta-struct-v2 .center a, .cta-struct-v2 .banner > a, .cta-struct-v2 .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)
    }

    .cta-struct-v2 .banner {
        display: grid;
        gap: .6rem
    }

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

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

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

    .cta-struct-v2 .duo article {
        display: grid;
        gap: .45rem
    }

    .cta-struct-v2 .stack {
        display: grid;
        gap: .6rem;
        justify-items: start
    }

    .cta-struct-v2 .chips {
        display: flex;
        gap: .35rem;
        flex-wrap: wrap
    }

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

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

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

        .cta-struct-v2 .numbers {
            grid-template-columns:1fr 1fr
        }
    }

    @media (max-width: 620px) {
        .cta-struct-v2 .numbers {
            grid-template-columns:1fr
        }
    }

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

    .faq-layout-e .wrap {
        max-width: 860px;
        margin: 0 auto;
    }

    .faq-layout-e .section-head {
        margin-bottom: 16px;
    }

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

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

    .faq-layout-e .accordion {
        border-top: 1px solid var(--border-on-surface-light);
    }

    .faq-layout-e .entry {
        border-bottom: 1px solid var(--border-on-surface-light);
    }

    .faq-layout-e .question {
        width: 100%;
        text-align: left;
        border: 0;
        background: transparent;
        padding: 12px 0;
        font: inherit;
        font-weight: 600;
        color: var(--brand);
        cursor: pointer;
    }

    .faq-layout-e .answer {
        margin: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
        color: var(--neutral-600);
        padding: 0;
    }

    .faq-layout-e .entry.open .answer {
        max-height: 220px;
        padding-bottom: 12px;
    }

.values-ranks-l10 {
        padding: clamp(3.1rem, 7vw, 5.7rem) var(--space-x);
        background: linear-gradient(180deg, var(--surface-1), var(--bg-alt));
        color: var(--fg-on-page);
    }

    .values-ranks-l10__wrap {
        max-width: 58rem;
        margin: 0 auto;
    }

    .values-ranks-l10__head {
        margin-bottom: 1.1rem;
        text-align: center;
    }

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

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

    .values-ranks-l10__head span {
        display: block;
        margin-top: .75rem;
        color: var(--neutral-600);
    }

    .values-ranks-l10__rows {
        display: grid;
        gap: .8rem;
    }

    .values-ranks-l10__rows article {
        display: grid;
        grid-template-columns: 3rem 1fr;
        gap: .9rem;
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
    }

    .values-ranks-l10__rows strong {
        display: grid;
        place-items: center;
        width: 3rem;
        height: 3rem;
        border-radius: 999px;
        background: var(--surface-2);
        color: var(--brand);
    }

    .values-ranks-l10__rows h3 {
        margin: 0;
    }

    .values-ranks-l10__rows p {
        margin: .35rem 0 0;
        color: var(--neutral-600);
    }

    .values-ranks-l10__rows small {
        display: block;
        margin-top: .55rem;
        color: var(--neutral-800);
    }

header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    padding: 0 var(--space-x);
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    gap: var(--gap);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: -0.02em;
    transition: color var(--anim-duration) var(--anim-ease);
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .nav-menu {
    display: flex;
    gap: var(--gap);
    align-items: center;
  }
  .nav-link {
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    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(--brand);
  }
  .header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .search-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--fg-on-surface);
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .search-toggle:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--brand);
  }
  .burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    padding: 0.5rem;
    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: 22px;
    height: 2px;
    background: 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);
  }
  @media (max-width: 767px) {
    .nav-menu {
      position: fixed;
      top: 64px;
      left: 0;
      right: 0;
      background: var(--surface-1);
      flex-direction: column;
      padding: var(--space-y) var(--space-x);
      gap: 0.5rem;
      border-bottom: 1px solid var(--border-on-surface);
      box-shadow: var(--shadow-md);
      transform: translateY(-100%);
      opacity: 0;
      pointer-events: none;
      transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }
    .nav-menu.open {
      transform: translateY(0);
      opacity: 1;
      pointer-events: auto;
    }
    .nav-link {
      width: 100%;
      text-align: center;
      padding: 0.75rem 1rem;
    }
    .burger {
      display: flex;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 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: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #333;
  }

  .footer-logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    text-decoration: none;
    letter-spacing: 1px;
  }

  .footer-logo a:hover {
    color: #ffc107;
  }

  .footer-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
  }

  .footer-nav a {
    color: #ccc;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }

  .footer-nav a:hover {
    color: #f0a500;
  }

  .footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
  }

  .footer-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-style: normal;
    color: #ccc;
  }

  .contact-item a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .contact-item a:hover {
    color: #f0a500;
  }

  .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .footer-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }

  .footer-links a:hover {
    color: #f0a500;
  }

  .footer-disclaimer {
    font-size: 0.85rem;
    color: #999;
    line-height: 1.5;
    border-top: 1px solid #333;
    padding-top: 1rem;
    margin-top: 0.5rem;
  }

  .footer-disclaimer p {
    margin: 0;
  }

  .footer-copyright {
    font-size: 0.85rem;
    color: #888;
    text-align: center;
    padding-top: 0.5rem;
  }

  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 1rem;
    }

    .footer-nav ul {
      justify-content: center;
      gap: 1rem;
    }

    .footer-legal {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .footer-contact {
      justify-content: center;
    }

    .footer-links {
      justify-content: center;
    }
  }

.cookie-lv4 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: var(--surface-2);
        border-bottom: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
    }

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

    .cookie-lv4__inner span {
        color: var(--neutral-600);
        margin-left: 6px;
    }

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

    .cookie-lv4__actions a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--link);
        padding: 6px 10px;
    }

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

.profile {

        color: var(--fg-on-page);
        background: linear-gradient(135deg, var(--bg-accent) 0%, var(--bg-page) 100%);
        padding: clamp(24px, 4vw, 56px) clamp(16px, 4vw, 40px);
    }

    .profile .profile__c {
        max-width: 900px;
        margin: 0 auto;
    }

    .profile .profile__h {
        text-align: center;
        margin-bottom: clamp(32px, 5vw, 48px);
    }

    .profile h1 {
        font-size: clamp(32px, 6vw, 56px);
        margin: 0 0 0.75rem;
        color: var(--fg-on-page);
        font-weight: 700;
    }

    .profile .profile__h p {
        font-size: clamp(16px, 2.4vw, 20px);
        color: var(--neutral-600);
        margin: 0;
    }

    .profile .profile__tabs {
        display: flex;
        gap: 0.5rem;
        justify-content: center;
        margin-bottom: clamp(32px, 5vw, 48px);
        flex-wrap: wrap;
    }

    /* Si randomNumber es 1 (impar) - order: 0 */
    .profile .profile__tabs > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    .profile .profile__tab {
        padding: 0.875rem 2rem;
        border-radius: var(--radius-lg);
        border: 2px solid var(--ring);
        background: var(--bg-page);
        color: var(--fg-on-page);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        font-weight: 600;
    }

    .profile .profile__tab:hover {
        background: var(--bg-alt);
        border-color: var(--bg-primary);
    }

    .profile .profile__tab.active {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-color: var(--bg-primary);
        box-shadow: var(--shadow-sm);
    }

    .profile .profile__panels {
        background: var(--surface-light);
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-xl);
        padding: clamp(32px, 4vw, 48px);
        box-shadow: var(--shadow-md);
    }

    .profile .profile__panel {
        display: none;
    }

    .profile .profile__panel.active {
        display: block;
    }

    .profile .profile__avatar-section {
        display: flex;
        gap: clamp(24px, 4vw, 40px);
        align-items: center;
        margin-bottom: clamp(32px, 4vw, 40px);
        padding-bottom: clamp(24px, 4vw, 32px);
        border-bottom: 1px solid var(--border-on-surface-light);
    }

    /* Si randomNumber es 1 (impar) - order: 0 */
    .profile .profile__avatar-section > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    .profile .profile__avatar {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2.5rem;
        font-weight: 700;
        border: 4px solid var(--ring);
        box-shadow: var(--shadow-md);
        flex-shrink: 0;
    }

    .profile .profile__avatar-actions {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        flex: 1;
    }

    .profile .profile__upload-btn {
        padding: 0.75rem 1.5rem;
        border-radius: var(--radius-md);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        font-weight: 600;
        text-align: center;
        border: 2px solid var(--bg-primary);
    }

    .profile .profile__upload-btn input {
        display: none;
    }

    .profile .profile__upload-btn:hover {
        background: var(--bg-primary-hover);
    }

    .profile .profile__remove-btn {
        padding: 0.75rem 1.5rem;
        border-radius: var(--radius-md);
        background: transparent;
        color: var(--fg-on-page);
        border: 2px solid var(--ring);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        font-weight: 600;
    }

    .profile .profile__remove-btn:hover {
        border-color: var(--accent);
        color: var(--accent);
        background: rgba(239, 68, 68, 0.1);
    }

    .profile .profile__form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: clamp(20px, 3vw, 28px);
        margin-bottom: clamp(20px, 3vw, 28px);
    }

    /* Si randomNumber es 1 (impar) - order: 0 */
    .profile .profile__form-row > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    @media (max-width: 767px) {
        .profile .profile__form-row {
            grid-template-columns: 1fr;
        }

        .profile .profile__avatar-section {
            flex-direction: column;
            text-align: center;
        }
    }

    .profile .profile__form-group {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        margin-bottom: clamp(20px, 3vw, 24px);
    }

    .profile .profile__form-group label {
        font-weight: 600;
        color: var(--fg-on-page);
        font-size: 0.875rem;
    }

    .profile .profile__form-group input,
    .profile .profile__form-group textarea {
        padding: 0.875rem 1.25rem;
        border-radius: var(--radius-md);
        border: 2px solid var(--ring);
        background: var(--bg-page);
        color: var(--fg-on-page);

        font-size: 1rem;
        outline: none;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .profile .profile__form-group input::placeholder,
    .profile .profile__form-group textarea::placeholder {
        color: var(--neutral-600);
    }

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

    .profile .profile__submit {
        padding: 1rem 2.5rem;
        border-radius: var(--radius-lg);
        border: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 700;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        align-self: flex-start;
        box-shadow: var(--shadow-md);
    }

    .profile .profile__submit:hover {
        background: var(--bg-primary-hover);
        transform: translateY(-3px);
        box-shadow: var(--shadow-lg);
    }

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

    .support-ux10__wrap a {
        color: var(--link);
        text-decoration: underline;
    }

    .support-ux10__wrap a:hover {
        color: var(--link-hover);
    }

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

.settings {

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

    .settings .settings__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .settings .settings__h {
        text-align: center;
        margin-bottom: clamp(40px, 6vw, 64px);
    }

    .settings h1 {
        font-size: clamp(32px, 6vw, 56px);
        margin: 0 0 0.75rem;
        color: var(--fg-on-primary);
        font-weight: 700;
    }

    .settings .settings__h p {
        font-size: clamp(16px, 2.4vw, 20px);
        opacity: 0.9;
        margin: 0;
    }

    .settings .settings__layout {
        display: grid;
        grid-template-columns: 240px 1fr;
        gap: clamp(32px, 5vw, 48px);
        align-items: start;
    }

    /* Si randomNumber es 1 (impar) - primer hijo mantiene order: 0 */
    .settings .settings__layout > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    @media (max-width: 1023px) {
        .settings .settings__layout {
            grid-template-columns: 1fr;
        }
    }

    .settings .settings__sidebar {
        position: sticky;
        top: 20px;
    }

    .settings .settings__nav {
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.25);
        border-radius: var(--radius-lg);
        padding: clamp(16px, 2.5vw, 24px);
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    /* Si randomNumber es 1 (impar) - primer hijo mantiene order: 0 */
    .settings .settings__nav > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    .settings .settings__nav-link {
        padding: 0.875rem 1rem;
        border-radius: var(--radius-md);
        color: var(--fg-on-primary);
        text-decoration: none;
        transition: all var(--anim-duration) var(--anim-ease);
        display: flex;
        align-items: center;
        gap: 0.75rem;
        font-weight: 500;
    }

    .settings .settings__nav-link:hover {
        background: rgba(255, 255, 255, 0.2);
    }

    .settings .settings__nav-link.active {
        background: var(--fg-on-primary);
        color: var(--bg-primary);
    }

    .settings .settings__nav-icon {
        font-size: 1.25rem;
        width: 24px;
        text-align: center;
    }

    .settings .settings__main {
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.25);
        border-radius: var(--radius-xl);
        padding: clamp(32px, 4vw, 48px);
    }

    .settings .settings__panel {
        display: none;
    }

    .settings .settings__panel.active {
        display: block;
    }

    .settings .settings__panel h2 {
        margin: 0 0 clamp(24px, 4vw, 32px);
        font-size: clamp(24px, 3.5vw, 28px);
        color: var(--fg-on-primary);
        font-weight: 700;
    }

    .settings .settings__avatar-section {
        display: flex;
        gap: clamp(20px, 3vw, 32px);
        align-items: center;
        margin-bottom: clamp(24px, 4vw, 32px);
        padding-bottom: clamp(24px, 4vw, 32px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    /* Si randomNumber es 1 (impar) - primer hijo mantiene order: 0 */
    .settings .settings__avatar-section > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    .settings .settings__avatar {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        background: var(--fg-on-primary);
        color: var(--bg-primary);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        font-weight: 700;
        border: 4px solid rgba(255, 255, 255, 0.3);
    }

    .settings .settings__avatar-actions {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .settings .settings__upload-btn {
        padding: 0.75rem 1.5rem;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, 0.2);
        color: var(--fg-on-primary);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        font-weight: 600;
        text-align: center;
        border: 2px solid rgba(255, 255, 255, 0.3);
    }

    .settings .settings__upload-btn input {
        display: none;
    }

    .settings .settings__upload-btn:hover {
        background: rgba(255, 255, 255, 0.3);
    }

    .settings .settings__remove-btn {
        padding: 0.75rem 1.5rem;
        border-radius: var(--radius-md);
        background: transparent;
        color: var(--fg-on-primary);
        border: 2px solid rgba(255, 255, 255, 0.3);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        font-weight: 600;
    }

    .settings .settings__remove-btn:hover {
        border-color: rgba(255, 255, 255, 0.5);
        background: rgba(255, 255, 255, 0.1);
    }

    .settings .settings__form-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: clamp(20px, 3vw, 28px);
        margin-bottom: clamp(20px, 3vw, 28px);
    }

    /* Si randomNumber es 1 (impar) - primer hijo mantiene order: 0 */
    .settings .settings__form-grid > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    @media (max-width: 767px) {
        .settings .settings__form-grid {
            grid-template-columns: 1fr;
        }
    }

    .settings .settings__form-group {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        margin-bottom: clamp(20px, 3vw, 28px);
    }

    .settings .settings__form-group label {
        font-weight: 600;
        color: var(--fg-on-primary);
        font-size: 0.875rem;
    }

    .settings .settings__form-group input,
    .settings .settings__form-group textarea {
        padding: 0.875rem 1.25rem;
        border-radius: var(--radius-md);
        border: 2px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.1);
        color: var(--fg-on-primary);

        font-size: 1rem;
        outline: none;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .settings .settings__form-group input::placeholder,
    .settings .settings__form-group textarea::placeholder {

    }

    .settings .settings__form-group input:focus,
    .settings .settings__form-group textarea:focus {
        border-color: rgba(255, 255, 255, 0.6);
        background: rgba(255, 255, 255, 0.2);
        box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
    }

    .settings .settings__form-actions {
        display: flex;
        gap: 1rem;
        margin-top: clamp(24px, 4vw, 32px);
    }

    /* Si randomNumber es 1 (impar) - primer hijo mantiene order: 0 */
    .settings .settings__form-actions > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    .settings .settings__submit {
        padding: 1rem 2.5rem;
        border-radius: var(--radius-lg);
        border: none;
        background: var(--fg-on-primary);
        color: var(--bg-primary);
        font-weight: 700;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    }

    .settings .settings__submit:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    }

    .settings .settings__cancel {
        padding: 1rem 2.5rem;
        border-radius: var(--radius-lg);
        border: 2px solid rgba(255, 255, 255, 0.3);
        background: transparent;
        color: var(--fg-on-primary);
        font-weight: 600;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .settings .settings__cancel:hover {
        border-color: rgba(255, 255, 255, 0.5);
        background: rgba(255, 255, 255, 0.1);
    }

    @media (max-width: 1023px) {
        .settings .settings__sidebar {
            position: static;
        }
    }

header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    padding: 0 var(--space-x);
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    gap: var(--gap);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: -0.02em;
    transition: color var(--anim-duration) var(--anim-ease);
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .nav-menu {
    display: flex;
    gap: var(--gap);
    align-items: center;
  }
  .nav-link {
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    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(--brand);
  }
  .header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .search-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--fg-on-surface);
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .search-toggle:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--brand);
  }
  .burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    padding: 0.5rem;
    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: 22px;
    height: 2px;
    background: 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);
  }
  @media (max-width: 767px) {
    .nav-menu {
      position: fixed;
      top: 64px;
      left: 0;
      right: 0;
      background: var(--surface-1);
      flex-direction: column;
      padding: var(--space-y) var(--space-x);
      gap: 0.5rem;
      border-bottom: 1px solid var(--border-on-surface);
      box-shadow: var(--shadow-md);
      transform: translateY(-100%);
      opacity: 0;
      pointer-events: none;
      transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }
    .nav-menu.open {
      transform: translateY(0);
      opacity: 1;
      pointer-events: auto;
    }
    .nav-link {
      width: 100%;
      text-align: center;
      padding: 0.75rem 1rem;
    }
    .burger {
      display: flex;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 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: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #333;
  }

  .footer-logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    text-decoration: none;
    letter-spacing: 1px;
  }

  .footer-logo a:hover {
    color: #ffc107;
  }

  .footer-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
  }

  .footer-nav a {
    color: #ccc;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }

  .footer-nav a:hover {
    color: #f0a500;
  }

  .footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
  }

  .footer-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-style: normal;
    color: #ccc;
  }

  .contact-item a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .contact-item a:hover {
    color: #f0a500;
  }

  .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .footer-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }

  .footer-links a:hover {
    color: #f0a500;
  }

  .footer-disclaimer {
    font-size: 0.85rem;
    color: #999;
    line-height: 1.5;
    border-top: 1px solid #333;
    padding-top: 1rem;
    margin-top: 0.5rem;
  }

  .footer-disclaimer p {
    margin: 0;
  }

  .footer-copyright {
    font-size: 0.85rem;
    color: #888;
    text-align: center;
    padding-top: 0.5rem;
  }

  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 1rem;
    }

    .footer-nav ul {
      justify-content: center;
      gap: 1rem;
    }

    .footer-legal {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .footer-contact {
      justify-content: center;
    }

    .footer-links {
      justify-content: center;
    }
  }

.cookie-lv4 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: var(--surface-2);
        border-bottom: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
    }

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

    .cookie-lv4__inner span {
        color: var(--neutral-600);
        margin-left: 6px;
    }

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

    .cookie-lv4__actions a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--link);
        padding: 6px 10px;
    }

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

.settings {

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

    .settings .settings__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .settings .settings__h {
        text-align: center;
        margin-bottom: clamp(40px, 6vw, 64px);
    }

    .settings h1 {
        font-size: clamp(32px, 6vw, 56px);
        margin: 0 0 0.75rem;
        color: var(--fg-on-primary);
        font-weight: 700;
    }

    .settings .settings__h p {
        font-size: clamp(16px, 2.4vw, 20px);
        opacity: 0.9;
        margin: 0;
    }

    .settings .settings__layout {
        display: grid;
        grid-template-columns: 240px 1fr;
        gap: clamp(32px, 5vw, 48px);
        align-items: start;
    }

    /* Si randomNumber es 1 (impar) - primer hijo mantiene order: 0 */
    .settings .settings__layout > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    @media (max-width: 1023px) {
        .settings .settings__layout {
            grid-template-columns: 1fr;
        }
    }

    .settings .settings__sidebar {
        position: sticky;
        top: 20px;
    }

    .settings .settings__nav {
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.25);
        border-radius: var(--radius-lg);
        padding: clamp(16px, 2.5vw, 24px);
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    /* Si randomNumber es 1 (impar) - primer hijo mantiene order: 0 */
    .settings .settings__nav > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    .settings .settings__nav-link {
        padding: 0.875rem 1rem;
        border-radius: var(--radius-md);
        color: var(--fg-on-primary);
        text-decoration: none;
        transition: all var(--anim-duration) var(--anim-ease);
        display: flex;
        align-items: center;
        gap: 0.75rem;
        font-weight: 500;
    }

    .settings .settings__nav-link:hover {
        background: rgba(255, 255, 255, 0.2);
    }

    .settings .settings__nav-link.active {
        background: var(--fg-on-primary);
        color: var(--bg-primary);
    }

    .settings .settings__nav-icon {
        font-size: 1.25rem;
        width: 24px;
        text-align: center;
    }

    .settings .settings__main {
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.25);
        border-radius: var(--radius-xl);
        padding: clamp(32px, 4vw, 48px);
    }

    .settings .settings__panel {
        display: none;
    }

    .settings .settings__panel.active {
        display: block;
    }

    .settings .settings__panel h2 {
        margin: 0 0 clamp(24px, 4vw, 32px);
        font-size: clamp(24px, 3.5vw, 28px);
        color: var(--fg-on-primary);
        font-weight: 700;
    }

    .settings .settings__avatar-section {
        display: flex;
        gap: clamp(20px, 3vw, 32px);
        align-items: center;
        margin-bottom: clamp(24px, 4vw, 32px);
        padding-bottom: clamp(24px, 4vw, 32px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    /* Si randomNumber es 1 (impar) - primer hijo mantiene order: 0 */
    .settings .settings__avatar-section > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    .settings .settings__avatar {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        background: var(--fg-on-primary);
        color: var(--bg-primary);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        font-weight: 700;
        border: 4px solid rgba(255, 255, 255, 0.3);
    }

    .settings .settings__avatar-actions {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .settings .settings__upload-btn {
        padding: 0.75rem 1.5rem;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, 0.2);
        color: var(--fg-on-primary);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        font-weight: 600;
        text-align: center;
        border: 2px solid rgba(255, 255, 255, 0.3);
    }

    .settings .settings__upload-btn input {
        display: none;
    }

    .settings .settings__upload-btn:hover {
        background: rgba(255, 255, 255, 0.3);
    }

    .settings .settings__remove-btn {
        padding: 0.75rem 1.5rem;
        border-radius: var(--radius-md);
        background: transparent;
        color: var(--fg-on-primary);
        border: 2px solid rgba(255, 255, 255, 0.3);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        font-weight: 600;
    }

    .settings .settings__remove-btn:hover {
        border-color: rgba(255, 255, 255, 0.5);
        background: rgba(255, 255, 255, 0.1);
    }

    .settings .settings__form-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: clamp(20px, 3vw, 28px);
        margin-bottom: clamp(20px, 3vw, 28px);
    }

    /* Si randomNumber es 1 (impar) - primer hijo mantiene order: 0 */
    .settings .settings__form-grid > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    @media (max-width: 767px) {
        .settings .settings__form-grid {
            grid-template-columns: 1fr;
        }
    }

    .settings .settings__form-group {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        margin-bottom: clamp(20px, 3vw, 28px);
    }

    .settings .settings__form-group label {
        font-weight: 600;
        color: var(--fg-on-primary);
        font-size: 0.875rem;
    }

    .settings .settings__form-group input,
    .settings .settings__form-group textarea {
        padding: 0.875rem 1.25rem;
        border-radius: var(--radius-md);
        border: 2px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.1);
        color: var(--fg-on-primary);

        font-size: 1rem;
        outline: none;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .settings .settings__form-group input::placeholder,
    .settings .settings__form-group textarea::placeholder {

    }

    .settings .settings__form-group input:focus,
    .settings .settings__form-group textarea:focus {
        border-color: rgba(255, 255, 255, 0.6);
        background: rgba(255, 255, 255, 0.2);
        box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
    }

    .settings .settings__form-actions {
        display: flex;
        gap: 1rem;
        margin-top: clamp(24px, 4vw, 32px);
    }

    /* Si randomNumber es 1 (impar) - primer hijo mantiene order: 0 */
    .settings .settings__form-actions > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    .settings .settings__submit {
        padding: 1rem 2.5rem;
        border-radius: var(--radius-lg);
        border: none;
        background: var(--fg-on-primary);
        color: var(--bg-primary);
        font-weight: 700;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    }

    .settings .settings__submit:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    }

    .settings .settings__cancel {
        padding: 1rem 2.5rem;
        border-radius: var(--radius-lg);
        border: 2px solid rgba(255, 255, 255, 0.3);
        background: transparent;
        color: var(--fg-on-primary);
        font-weight: 600;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .settings .settings__cancel:hover {
        border-color: rgba(255, 255, 255, 0.5);
        background: rgba(255, 255, 255, 0.1);
    }

    @media (max-width: 1023px) {
        .settings .settings__sidebar {
            position: static;
        }
    }

.clar-ux11{padding:clamp(20px,3vw,44px);background:var(--neutral-0);color:var(--neutral-900)}.clar-ux11__wrap{max-width:var(--max-w);margin:0 auto}.clar-ux11__head p{margin:8px 0 12px;color:var(--neutral-600)}.clar-ux11 table{width:100%;border-collapse:separate;border-spacing:0 8px}.clar-ux11 td{vertical-align:top;background:var(--neutral-100);border:1px solid var(--neutral-300);padding:12px}.clar-ux11 td:first-child{width:140px;font-weight:700;color:var(--brand);border-radius:var(--radius-md) 0 0 var(--radius-md)}.clar-ux11 td:last-child{border-radius:0 var(--radius-md) var(--radius-md) 0}.clar-ux11 strong{display:block;margin:0 0 6px}.clar-ux11 p{margin:0;color:var(--neutral-800)}@media(max-width:700px){.clar-ux11 td:first-child{width:90px}}

header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    padding: 0 var(--space-x);
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    gap: var(--gap);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: -0.02em;
    transition: color var(--anim-duration) var(--anim-ease);
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .nav-menu {
    display: flex;
    gap: var(--gap);
    align-items: center;
  }
  .nav-link {
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    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(--brand);
  }
  .header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .search-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--fg-on-surface);
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .search-toggle:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--brand);
  }
  .burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    padding: 0.5rem;
    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: 22px;
    height: 2px;
    background: 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);
  }
  @media (max-width: 767px) {
    .nav-menu {
      position: fixed;
      top: 64px;
      left: 0;
      right: 0;
      background: var(--surface-1);
      flex-direction: column;
      padding: var(--space-y) var(--space-x);
      gap: 0.5rem;
      border-bottom: 1px solid var(--border-on-surface);
      box-shadow: var(--shadow-md);
      transform: translateY(-100%);
      opacity: 0;
      pointer-events: none;
      transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }
    .nav-menu.open {
      transform: translateY(0);
      opacity: 1;
      pointer-events: auto;
    }
    .nav-link {
      width: 100%;
      text-align: center;
      padding: 0.75rem 1rem;
    }
    .burger {
      display: flex;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 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: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #333;
  }

  .footer-logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    text-decoration: none;
    letter-spacing: 1px;
  }

  .footer-logo a:hover {
    color: #ffc107;
  }

  .footer-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
  }

  .footer-nav a {
    color: #ccc;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }

  .footer-nav a:hover {
    color: #f0a500;
  }

  .footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
  }

  .footer-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-style: normal;
    color: #ccc;
  }

  .contact-item a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .contact-item a:hover {
    color: #f0a500;
  }

  .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .footer-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }

  .footer-links a:hover {
    color: #f0a500;
  }

  .footer-disclaimer {
    font-size: 0.85rem;
    color: #999;
    line-height: 1.5;
    border-top: 1px solid #333;
    padding-top: 1rem;
    margin-top: 0.5rem;
  }

  .footer-disclaimer p {
    margin: 0;
  }

  .footer-copyright {
    font-size: 0.85rem;
    color: #888;
    text-align: center;
    padding-top: 0.5rem;
  }

  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 1rem;
    }

    .footer-nav ul {
      justify-content: center;
      gap: 1rem;
    }

    .footer-legal {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .footer-contact {
      justify-content: center;
    }

    .footer-links {
      justify-content: center;
    }
  }

.cookie-lv4 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: var(--surface-2);
        border-bottom: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
    }

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

    .cookie-lv4__inner span {
        color: var(--neutral-600);
        margin-left: 6px;
    }

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

    .cookie-lv4__actions a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--link);
        padding: 6px 10px;
    }

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

.statistics {
    padding: clamp(48px, 8vw, 80px) 0;
    background: var(--bg-primary);
    color: var(--fg-on-primary);
}

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

.statistics__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--gap);
    text-align: center;
}

.statistics__card {
    padding: clamp(16px, 3vw, 32px);
}

.statistics__number {
    font-size: clamp(32px, 6vw, 48px);
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.statistics__label {
    font-size: 1.1rem;
    font-weight: 400;
}

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;}
.rec-lx4{padding:calc(var(--space-y)*2.95) var(--space-x);background:var(--bg-alt)}
.rec-lx4 .rec-wrap{max-width:var(--max-w);margin:0 auto;display:grid;gap:.7rem}
.rec-lx4 h2{margin:0;font-size:clamp(1.73rem,3vw,2.4rem)}
.rec-lx4 .rec-head p{margin:.4rem 0 0;color:var(--fg-on-surface-light)}
.rec-lx4 .rec-lines{list-style:none;margin:0;padding:0;display:grid;gap:.55rem}
.rec-lx4 li{display:flex;justify-content:space-between;align-items:flex-start;gap:.8rem;padding:.9rem;border-radius:var(--radius-md);background:var(--surface-1);border:1px solid var(--border-on-surface)}
.rec-lx4 h3{margin:0 0 .22rem;font-size:1rem}
.rec-lx4 li p{margin:0;color:var(--fg-on-surface-light)}
.rec-lx4 a{text-decoration:none;color:var(--link);font-weight:700;white-space:nowrap}
@media (max-width:760px){.rec-lx4 li{display:grid}}

header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    padding: 0 var(--space-x);
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    gap: var(--gap);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: -0.02em;
    transition: color var(--anim-duration) var(--anim-ease);
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .nav-menu {
    display: flex;
    gap: var(--gap);
    align-items: center;
  }
  .nav-link {
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    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(--brand);
  }
  .header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .search-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--fg-on-surface);
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .search-toggle:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--brand);
  }
  .burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    padding: 0.5rem;
    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: 22px;
    height: 2px;
    background: 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);
  }
  @media (max-width: 767px) {
    .nav-menu {
      position: fixed;
      top: 64px;
      left: 0;
      right: 0;
      background: var(--surface-1);
      flex-direction: column;
      padding: var(--space-y) var(--space-x);
      gap: 0.5rem;
      border-bottom: 1px solid var(--border-on-surface);
      box-shadow: var(--shadow-md);
      transform: translateY(-100%);
      opacity: 0;
      pointer-events: none;
      transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }
    .nav-menu.open {
      transform: translateY(0);
      opacity: 1;
      pointer-events: auto;
    }
    .nav-link {
      width: 100%;
      text-align: center;
      padding: 0.75rem 1rem;
    }
    .burger {
      display: flex;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 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: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #333;
  }

  .footer-logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    text-decoration: none;
    letter-spacing: 1px;
  }

  .footer-logo a:hover {
    color: #ffc107;
  }

  .footer-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
  }

  .footer-nav a {
    color: #ccc;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }

  .footer-nav a:hover {
    color: #f0a500;
  }

  .footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
  }

  .footer-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-style: normal;
    color: #ccc;
  }

  .contact-item a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .contact-item a:hover {
    color: #f0a500;
  }

  .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .footer-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }

  .footer-links a:hover {
    color: #f0a500;
  }

  .footer-disclaimer {
    font-size: 0.85rem;
    color: #999;
    line-height: 1.5;
    border-top: 1px solid #333;
    padding-top: 1rem;
    margin-top: 0.5rem;
  }

  .footer-disclaimer p {
    margin: 0;
  }

  .footer-copyright {
    font-size: 0.85rem;
    color: #888;
    text-align: center;
    padding-top: 0.5rem;
  }

  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 1rem;
    }

    .footer-nav ul {
      justify-content: center;
      gap: 1rem;
    }

    .footer-legal {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .footer-contact {
      justify-content: center;
    }

    .footer-links {
      justify-content: center;
    }
  }

.cookie-lv4 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: var(--surface-2);
        border-bottom: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
    }

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

    .cookie-lv4__inner span {
        color: var(--neutral-600);
        margin-left: 6px;
    }

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

    .cookie-lv4__actions a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--link);
        padding: 6px 10px;
    }

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

.security {

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

    .security .security__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .security .security__h {
        margin-bottom: var(--space-y);
    }

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

    .security .security__sections {
        display: flex;
        flex-direction: column;
        gap: var(--space-y);
    }

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

    .security h2 {
        font-size: clamp(20px, 3vw, 24px);
        margin: 0 0 1.5rem;
        color: var(--fg-on-primary);
    }

    .security .security__form {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .security .security__form input {
        padding: 0.875rem;
        border-radius: var(--radius-md);
        border: 1px solid var(--ring);

        outline: none;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .security .security__form input:focus {
        border-color: var(--bg-primary);
        box-shadow: 0 0 0 3px var(--ring);
    }

    .security .security__form button {
        padding: 0.875rem 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);
        align-self: flex-start;
    }

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

    .security .security__sessions {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .security .security__session {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem;
        background: var(--gradient-hero);
        border-radius: var(--radius-md);
        border: 1px solid var(--ring);
    }

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

    .security .security__session p {
        margin: 0;
        color: var(--neutral-600);
        font-size: 0.875rem;
    }

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

    .security .security__logout:hover {
        background: var(--bg-primary);
        color: var(--fg-on-primary) fff;
        border-color: var(--bg-primary);
    }

header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    padding: 0 var(--space-x);
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    gap: var(--gap);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: -0.02em;
    transition: color var(--anim-duration) var(--anim-ease);
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .nav-menu {
    display: flex;
    gap: var(--gap);
    align-items: center;
  }
  .nav-link {
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    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(--brand);
  }
  .header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .search-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--fg-on-surface);
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .search-toggle:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--brand);
  }
  .burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    padding: 0.5rem;
    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: 22px;
    height: 2px;
    background: 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);
  }
  @media (max-width: 767px) {
    .nav-menu {
      position: fixed;
      top: 64px;
      left: 0;
      right: 0;
      background: var(--surface-1);
      flex-direction: column;
      padding: var(--space-y) var(--space-x);
      gap: 0.5rem;
      border-bottom: 1px solid var(--border-on-surface);
      box-shadow: var(--shadow-md);
      transform: translateY(-100%);
      opacity: 0;
      pointer-events: none;
      transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }
    .nav-menu.open {
      transform: translateY(0);
      opacity: 1;
      pointer-events: auto;
    }
    .nav-link {
      width: 100%;
      text-align: center;
      padding: 0.75rem 1rem;
    }
    .burger {
      display: flex;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 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: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #333;
  }

  .footer-logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    text-decoration: none;
    letter-spacing: 1px;
  }

  .footer-logo a:hover {
    color: #ffc107;
  }

  .footer-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
  }

  .footer-nav a {
    color: #ccc;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }

  .footer-nav a:hover {
    color: #f0a500;
  }

  .footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
  }

  .footer-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-style: normal;
    color: #ccc;
  }

  .contact-item a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .contact-item a:hover {
    color: #f0a500;
  }

  .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .footer-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }

  .footer-links a:hover {
    color: #f0a500;
  }

  .footer-disclaimer {
    font-size: 0.85rem;
    color: #999;
    line-height: 1.5;
    border-top: 1px solid #333;
    padding-top: 1rem;
    margin-top: 0.5rem;
  }

  .footer-disclaimer p {
    margin: 0;
  }

  .footer-copyright {
    font-size: 0.85rem;
    color: #888;
    text-align: center;
    padding-top: 0.5rem;
  }

  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 1rem;
    }

    .footer-nav ul {
      justify-content: center;
      gap: 1rem;
    }

    .footer-legal {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .footer-contact {
      justify-content: center;
    }

    .footer-links {
      justify-content: center;
    }
  }

.cookie-lv4 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: var(--surface-2);
        border-bottom: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
    }

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

    .cookie-lv4__inner span {
        color: var(--neutral-600);
        margin-left: 6px;
    }

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

    .cookie-lv4__actions a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--link);
        padding: 6px 10px;
    }

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

body{margin:0;padding:0;font-family:var(--font-family);box-sizing:border-box;}
*{box-sizing:border-box;}
.form-u9{padding:calc(var(--space-y)*2.9) var(--space-x);background:var(--bg-primary);color:var(--fg-on-primary)} .form-u9 .shell{max-width:var(--max-w);margin:0 auto;display:grid;gap:var(--gap)} .form-u9 h2{margin:0;font-size:clamp(1.85rem,3.6vw,2.8rem);line-height:1.1} .form-u9 .sub{margin:.35rem 0 0;opacity:.9;} .form-u9 .panel,.form-u9 .box{padding:1.1rem;border-radius:var(--radius-xl);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);box-shadow:var(--shadow-md)} .form-u9 form{display:grid;gap:.75rem} .form-u9 .field{display:grid;gap:.28rem} .form-u9 .field span{font-size:.82rem;font-weight:700;color:var(--fg-on-surface-light)} .form-u9 input,.form-u9 textarea{width:100%;padding:.8rem .85rem;border-radius:var(--radius-md);border:1px solid var(--border-on-surface-light);background:var(--surface-1);color:var(--fg-on-surface);font:inherit;outline:none;transition:border-color var(--anim-duration) var(--anim-ease),box-shadow var(--anim-duration) var(--anim-ease)} .form-u9 input:focus,.form-u9 textarea:focus{border-color:var(--ring);box-shadow:0 0 0 3px color-mix(in srgb,var(--ring) 22%, transparent)} .form-u9 textarea{min-height:120px;resize:vertical} .form-u9 button{padding:.82rem 1rem;border:0;border-radius:var(--radius-md);background:var(--bg-primary);color:var(--fg-on-primary);font-weight:700;cursor:pointer;transition:transform var(--anim-duration) var(--anim-ease),background var(--anim-duration) var(--anim-ease)} .form-u9 button:hover{transform:translateY(-1px);background:var(--bg-primary-hover)} .form-u9 .split{display:grid;grid-template-columns:1fr 1fr;gap:var(--gap)} .form-u9 .grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.65rem} .form-u9 .line{padding:1rem;border-radius:var(--radius-lg);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover)} .form-u9 .bar{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.65rem;padding:1rem;border-radius:var(--radius-lg);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover)} .form-u9 .stack{padding:1rem;border-radius:var(--radius-lg);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover)} .form-u9 .steps{display:flex;gap:.45rem;flex-wrap:wrap} .form-u9 .steps span{padding:.33rem .55rem;border-radius:var(--radius-sm);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);font-size:.8rem} .form-u9 .agree{display:flex;align-items:center;gap:.45rem;font-size:.86rem} .form-u9 .media{display:grid;grid-template-columns:.9fr 1.1fr;gap:var(--gap)} .form-u9 .media img,.form-u9 .frame img{width:100%;height:100%;min-height:320px;object-fit:cover;border-radius:var(--radius-xl)} .form-u9 .frame{display:grid;grid-template-columns:1.1fr .9fr;gap:var(--gap)} .form-u9 .full{grid-column:1/-1} .form-u9 .panel{transition:transform var(--anim-duration) var(--anim-ease),box-shadow var(--anim-duration) var(--anim-ease)} .form-u9 .panel:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg)} @media (max-width:860px){.form-u9 .split,.form-u9 .media,.form-u9 .frame{grid-template-columns:1fr} .form-u9 .grid,.form-u9 .bar{grid-template-columns:1fr}}

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

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

    .map-notes-l6__head {
        text-align: center;
        margin-bottom: 1rem;
    }

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

    .map-notes-l6__head p {
        margin: .55rem 0 0;
        color: var(--neutral-600);
    }

    .map-notes-l6__frame {
        overflow: hidden;
        border-radius: var(--radius-xl);
        border: 1px solid var(--border-on-surface-light);
        box-shadow: var(--shadow-sm);
    }

    .map-notes-l6__frame iframe {
        display: block;
        width: 100%;
        height: 24rem;
    }

    .map-notes-l6__grid {
        margin-top: 1rem;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
        gap: var(--gap);
    }

    .map-notes-l6__grid article {
        padding: .95rem;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
    }

    .map-notes-l6__grid p {
        margin: .35rem 0 0;
        color: var(--neutral-600);
    }

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

header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    padding: 0 var(--space-x);
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    gap: var(--gap);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: -0.02em;
    transition: color var(--anim-duration) var(--anim-ease);
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .nav-menu {
    display: flex;
    gap: var(--gap);
    align-items: center;
  }
  .nav-link {
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    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(--brand);
  }
  .header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .search-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--fg-on-surface);
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .search-toggle:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--brand);
  }
  .burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    padding: 0.5rem;
    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: 22px;
    height: 2px;
    background: 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);
  }
  @media (max-width: 767px) {
    .nav-menu {
      position: fixed;
      top: 64px;
      left: 0;
      right: 0;
      background: var(--surface-1);
      flex-direction: column;
      padding: var(--space-y) var(--space-x);
      gap: 0.5rem;
      border-bottom: 1px solid var(--border-on-surface);
      box-shadow: var(--shadow-md);
      transform: translateY(-100%);
      opacity: 0;
      pointer-events: none;
      transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }
    .nav-menu.open {
      transform: translateY(0);
      opacity: 1;
      pointer-events: auto;
    }
    .nav-link {
      width: 100%;
      text-align: center;
      padding: 0.75rem 1rem;
    }
    .burger {
      display: flex;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 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: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #333;
  }

  .footer-logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    text-decoration: none;
    letter-spacing: 1px;
  }

  .footer-logo a:hover {
    color: #ffc107;
  }

  .footer-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
  }

  .footer-nav a {
    color: #ccc;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }

  .footer-nav a:hover {
    color: #f0a500;
  }

  .footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
  }

  .footer-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-style: normal;
    color: #ccc;
  }

  .contact-item a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .contact-item a:hover {
    color: #f0a500;
  }

  .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .footer-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }

  .footer-links a:hover {
    color: #f0a500;
  }

  .footer-disclaimer {
    font-size: 0.85rem;
    color: #999;
    line-height: 1.5;
    border-top: 1px solid #333;
    padding-top: 1rem;
    margin-top: 0.5rem;
  }

  .footer-disclaimer p {
    margin: 0;
  }

  .footer-copyright {
    font-size: 0.85rem;
    color: #888;
    text-align: center;
    padding-top: 0.5rem;
  }

  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 1rem;
    }

    .footer-nav ul {
      justify-content: center;
      gap: 1rem;
    }

    .footer-legal {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .footer-contact {
      justify-content: center;
    }

    .footer-links {
      justify-content: center;
    }
  }

.cookie-lv4 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: var(--surface-2);
        border-bottom: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
    }

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

    .cookie-lv4__inner span {
        color: var(--neutral-600);
        margin-left: 6px;
    }

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

    .cookie-lv4__actions a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--link);
        padding: 6px 10px;
    }

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

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-lx10{padding:calc(var(--space-y)*2.7) var(--space-x)}
.pol-lx10 .pol-shell{max-width:var(--max-w);margin:0 auto;display:grid;gap:.72rem}
.pol-lx10 .pol-banner{padding:1rem;border-radius:var(--radius-xl);border:1px solid var(--border-on-surface);background:var(--surface-1)}
.pol-lx10 h2{margin:0;font-size:clamp(1.74rem,3vw,2.42rem)}
.pol-lx10 .pol-banner p{margin:.38rem 0 0;color:var(--fg-on-surface-light)}
.pol-lx10 .pol-matrix{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.6rem}
.pol-lx10 .pol-matrix article{padding:.85rem;border:1px solid var(--border-on-surface);border-radius:var(--radius-md);background:var(--surface-1)}
.pol-lx10 .pol-matrix h3{margin:0 0 .2rem;font-size:1rem}
.pol-lx10 .pol-matrix p{margin:0;color:var(--fg-on-surface-light)}
.pol-lx10 .pol-end{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.6rem}
.pol-lx10 .pol-end p{margin:0;padding:.75rem;border-radius:var(--radius-md);background:var(--surface-2)}
@media (max-width:760px){.pol-lx10 .pol-matrix,.pol-lx10 .pol-end{grid-template-columns:1fr}}

header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    padding: 0 var(--space-x);
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    gap: var(--gap);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: -0.02em;
    transition: color var(--anim-duration) var(--anim-ease);
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .nav-menu {
    display: flex;
    gap: var(--gap);
    align-items: center;
  }
  .nav-link {
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    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(--brand);
  }
  .header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .search-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--fg-on-surface);
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .search-toggle:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--brand);
  }
  .burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    padding: 0.5rem;
    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: 22px;
    height: 2px;
    background: 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);
  }
  @media (max-width: 767px) {
    .nav-menu {
      position: fixed;
      top: 64px;
      left: 0;
      right: 0;
      background: var(--surface-1);
      flex-direction: column;
      padding: var(--space-y) var(--space-x);
      gap: 0.5rem;
      border-bottom: 1px solid var(--border-on-surface);
      box-shadow: var(--shadow-md);
      transform: translateY(-100%);
      opacity: 0;
      pointer-events: none;
      transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }
    .nav-menu.open {
      transform: translateY(0);
      opacity: 1;
      pointer-events: auto;
    }
    .nav-link {
      width: 100%;
      text-align: center;
      padding: 0.75rem 1rem;
    }
    .burger {
      display: flex;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 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: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #333;
  }

  .footer-logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    text-decoration: none;
    letter-spacing: 1px;
  }

  .footer-logo a:hover {
    color: #ffc107;
  }

  .footer-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
  }

  .footer-nav a {
    color: #ccc;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }

  .footer-nav a:hover {
    color: #f0a500;
  }

  .footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
  }

  .footer-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-style: normal;
    color: #ccc;
  }

  .contact-item a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .contact-item a:hover {
    color: #f0a500;
  }

  .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .footer-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }

  .footer-links a:hover {
    color: #f0a500;
  }

  .footer-disclaimer {
    font-size: 0.85rem;
    color: #999;
    line-height: 1.5;
    border-top: 1px solid #333;
    padding-top: 1rem;
    margin-top: 0.5rem;
  }

  .footer-disclaimer p {
    margin: 0;
  }

  .footer-copyright {
    font-size: 0.85rem;
    color: #888;
    text-align: center;
    padding-top: 0.5rem;
  }

  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 1rem;
    }

    .footer-nav ul {
      justify-content: center;
      gap: 1rem;
    }

    .footer-legal {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .footer-contact {
      justify-content: center;
    }

    .footer-links {
      justify-content: center;
    }
  }

.cookie-lv4 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: var(--surface-2);
        border-bottom: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
    }

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

    .cookie-lv4__inner span {
        color: var(--neutral-600);
        margin-left: 6px;
    }

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

    .cookie-lv4__actions a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--link);
        padding: 6px 10px;
    }

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

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

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

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

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

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

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

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

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

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

header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    padding: 0 var(--space-x);
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    gap: var(--gap);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: -0.02em;
    transition: color var(--anim-duration) var(--anim-ease);
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .nav-menu {
    display: flex;
    gap: var(--gap);
    align-items: center;
  }
  .nav-link {
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    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(--brand);
  }
  .header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .search-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--fg-on-surface);
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .search-toggle:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--brand);
  }
  .burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    padding: 0.5rem;
    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: 22px;
    height: 2px;
    background: 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);
  }
  @media (max-width: 767px) {
    .nav-menu {
      position: fixed;
      top: 64px;
      left: 0;
      right: 0;
      background: var(--surface-1);
      flex-direction: column;
      padding: var(--space-y) var(--space-x);
      gap: 0.5rem;
      border-bottom: 1px solid var(--border-on-surface);
      box-shadow: var(--shadow-md);
      transform: translateY(-100%);
      opacity: 0;
      pointer-events: none;
      transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }
    .nav-menu.open {
      transform: translateY(0);
      opacity: 1;
      pointer-events: auto;
    }
    .nav-link {
      width: 100%;
      text-align: center;
      padding: 0.75rem 1rem;
    }
    .burger {
      display: flex;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 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: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #333;
  }

  .footer-logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    text-decoration: none;
    letter-spacing: 1px;
  }

  .footer-logo a:hover {
    color: #ffc107;
  }

  .footer-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
  }

  .footer-nav a {
    color: #ccc;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }

  .footer-nav a:hover {
    color: #f0a500;
  }

  .footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
  }

  .footer-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-style: normal;
    color: #ccc;
  }

  .contact-item a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .contact-item a:hover {
    color: #f0a500;
  }

  .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .footer-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }

  .footer-links a:hover {
    color: #f0a500;
  }

  .footer-disclaimer {
    font-size: 0.85rem;
    color: #999;
    line-height: 1.5;
    border-top: 1px solid #333;
    padding-top: 1rem;
    margin-top: 0.5rem;
  }

  .footer-disclaimer p {
    margin: 0;
  }

  .footer-copyright {
    font-size: 0.85rem;
    color: #888;
    text-align: center;
    padding-top: 0.5rem;
  }

  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 1rem;
    }

    .footer-nav ul {
      justify-content: center;
      gap: 1rem;
    }

    .footer-legal {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .footer-contact {
      justify-content: center;
    }

    .footer-links {
      justify-content: center;
    }
  }

.cookie-lv4 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: var(--surface-2);
        border-bottom: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
    }

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

    .cookie-lv4__inner span {
        color: var(--neutral-600);
        margin-left: 6px;
    }

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

    .cookie-lv4__actions a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--link);
        padding: 6px 10px;
    }

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

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

header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    padding: 0 var(--space-x);
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    gap: var(--gap);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: -0.02em;
    transition: color var(--anim-duration) var(--anim-ease);
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .nav-menu {
    display: flex;
    gap: var(--gap);
    align-items: center;
  }
  .nav-link {
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    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(--brand);
  }
  .header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .search-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--fg-on-surface);
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .search-toggle:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--brand);
  }
  .burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    padding: 0.5rem;
    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: 22px;
    height: 2px;
    background: 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);
  }
  @media (max-width: 767px) {
    .nav-menu {
      position: fixed;
      top: 64px;
      left: 0;
      right: 0;
      background: var(--surface-1);
      flex-direction: column;
      padding: var(--space-y) var(--space-x);
      gap: 0.5rem;
      border-bottom: 1px solid var(--border-on-surface);
      box-shadow: var(--shadow-md);
      transform: translateY(-100%);
      opacity: 0;
      pointer-events: none;
      transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }
    .nav-menu.open {
      transform: translateY(0);
      opacity: 1;
      pointer-events: auto;
    }
    .nav-link {
      width: 100%;
      text-align: center;
      padding: 0.75rem 1rem;
    }
    .burger {
      display: flex;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 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: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #333;
  }

  .footer-logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    text-decoration: none;
    letter-spacing: 1px;
  }

  .footer-logo a:hover {
    color: #ffc107;
  }

  .footer-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
  }

  .footer-nav a {
    color: #ccc;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }

  .footer-nav a:hover {
    color: #f0a500;
  }

  .footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
  }

  .footer-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-style: normal;
    color: #ccc;
  }

  .contact-item a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .contact-item a:hover {
    color: #f0a500;
  }

  .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .footer-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }

  .footer-links a:hover {
    color: #f0a500;
  }

  .footer-disclaimer {
    font-size: 0.85rem;
    color: #999;
    line-height: 1.5;
    border-top: 1px solid #333;
    padding-top: 1rem;
    margin-top: 0.5rem;
  }

  .footer-disclaimer p {
    margin: 0;
  }

  .footer-copyright {
    font-size: 0.85rem;
    color: #888;
    text-align: center;
    padding-top: 0.5rem;
  }

  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 1rem;
    }

    .footer-nav ul {
      justify-content: center;
      gap: 1rem;
    }

    .footer-legal {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .footer-contact {
      justify-content: center;
    }

    .footer-links {
      justify-content: center;
    }
  }

.cookie-lv4 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: var(--surface-2);
        border-bottom: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
    }

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

    .cookie-lv4__inner span {
        color: var(--neutral-600);
        margin-left: 6px;
    }

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

    .cookie-lv4__actions a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--link);
        padding: 6px 10px;
    }

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

.err-slab-a {
    padding: clamp(56px, 10vw, 110px) 20px;
    background: var(--gradient-hero);
    color: var(--fg-on-primary);
}

.err-slab-a .box {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.err-slab-a h1 {
    margin: 0;
    font-size: clamp(34px, 6vw, 58px);
}

.err-slab-a p {
    margin: 12px 0 0;
    opacity: .92;
}

.err-slab-a a {
    display: inline-block;
    margin-top: 18px;
    padding: 11px 18px;
    border-radius: var(--radius-md);
    background: var(--surface-1);
    color: var(--fg-on-page);
    text-decoration: none;
}