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

  --max-w: 1420px;
  --space-x: 1.53rem;
  --space-y: 1.5rem;
  --gap: 2.3rem;

  --radius-xl: 1.3rem;
  --radius-lg: 0.88rem;
  --radius-md: 0.48rem;
  --radius-sm: 0.32rem;

  --shadow-sm: 0 1px 6px rgba(0,0,0,0.1);
  --shadow-md: 0 6px 18px rgba(0,0,0,0.13);
  --shadow-lg: 0 18px 40px rgba(0,0,0,0.15);

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

  --brand: #1a3c6e;
  --brand-contrast: #ffffff;
  --accent: #d97706;
  --accent-contrast: #ffffff;

  --neutral-0: #ffffff;
  --neutral-100: #f3f4f6;
  --neutral-300: #d1d5db;
  --neutral-600: #4b5563;
  --neutral-800: #1f2937;
  --neutral-900: #111827;

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

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

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

  --surface-light: #ffffff;
  --fg-on-surface-light: #1f2937;
  --border-on-surface-light: #e5e7eb;

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

  --bg-accent: #f59e0b;
  --fg-on-accent: #ffffff;
  --bg-accent-hover: #b45309;

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

  --gradient-hero: linear-gradient(135deg, #1a3c6e 0%, #2563eb 100%);
  --gradient-accent: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);

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

header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) var(--space-x);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: -0.02em;
  }
  .nav-menu ul {
    list-style: none;
    display: flex;
    gap: var(--gap);
    margin: 0;
    padding: 0;
  }
  .nav-menu a {
    color: var(--fg-on-surface);
    text-decoration: none;
    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-menu a:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
  }
  .cta-button {
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    transition: background var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }
  .cta-button:hover {
    background: var(--bg-accent-hover);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 0;
    z-index: 101;
  }
  .burger span {
    display: block;
    width: 24px;
    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 span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  @media (max-width: 767px) {
    .nav-menu {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: var(--surface-1);
      display: flex;
      align-items: center;
      justify-content: center;
      transform: translateX(100%);
      transition: transform var(--anim-duration) var(--anim-ease);
      z-index: 100;
    }
    .nav-menu.open {
      transform: translateX(0);
    }
    .nav-menu ul {
      flex-direction: column;
      align-items: center;
      gap: 1.5rem;
    }
    .nav-menu a {
      font-size: 1.25rem;
      padding: 0.75rem 1.5rem;
    }
    .cta-button {
      display: none;
    }
    .burger {
      display: flex;
    }
  }

.site-footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2.5rem 1.5rem 1.5rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 1.5rem;
  }
  .logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    text-decoration: none;
    letter-spacing: 0.5px;
  }
  .logo-text:hover {
    color: #ffb82e;
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .nav-list a {
    color: #c0c0c0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  .nav-list a:hover {
    color: #f0a500;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer-contact {
    flex: 1 1 280px;
  }
  .footer-contact address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .contact-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.95rem;
  }
  .contact-item a {
    color: #c0c0c0;
    text-decoration: none;
  }
  .contact-item a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .icon {
    font-size: 1.1rem;
    min-width: 1.2rem;
  }
  .footer-legal {
    flex: 2 1 350px;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
  }
  .legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .legal-links a {
    color: #c0c0c0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }
  .legal-links a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .disclaimer {
    font-size: 0.85rem;
    color: #a0a0a0;
    margin: 0.3rem 0;
    line-height: 1.5;
  }
  .copyright {
    font-size: 0.85rem;
    color: #888;
    margin: 0.2rem 0 0;
  }
  @media (max-width: 640px) {
    .footer-top {
      flex-direction: column;
      align-items: flex-start;
    }
    .nav-list {
      flex-direction: column;
      gap: 0.6rem;
    }
    .footer-bottom {
      flex-direction: column;
      gap: 1.5rem;
    }
    .legal-links {
      flex-direction: column;
      gap: 0.5rem;
    }
  }

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

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

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

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

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

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

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

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

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

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

.hero-arc-v2 {
        padding: calc(var(--space-y) * 2.6) var(--space-x) 0;
        background: var(--bg-page);
        color: var(--fg-on-page);
    }

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

    .hero-arc-v2 h1 {
        margin: 0;
        font-size: clamp(2rem, 4.2vw, 3.4rem);
        line-height: 1.08;
        max-width: 18ch;
    }

    .hero-arc-v2 .subtitle {
        margin: 0;
        max-width: 58ch;
        color: var(--fg-on-surface-light);
    }

    .hero-arc-v2 .split {
        display: grid;
        grid-template-columns:1.1fr .9fr;
        gap: calc(var(--gap) * 1.4);
        align-items: start;
    }

    .hero-arc-v2 .desc {
        margin: 0;
        max-width: 60ch;
    }

    .hero-arc-v2 .actions {
        display: grid;
        gap: .7rem;
        justify-items: start;
    }

    .hero-arc-v2 .actions a {
        display: inline-flex;
        padding: .66rem 1.1rem;
        border-radius: var(--radius-lg);
        text-decoration: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 700;
    }

    .hero-arc-v2 .actions a:nth-child(even) {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

    .hero-arc-v2 .media {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        padding: var(--gap);
        background: var(--surface-2);
        box-shadow: var(--shadow-sm);
    }

    .hero-arc-v2 .media img {
        width: 100%;
        display: block;
        border-radius: var(--radius-lg);
        aspect-ratio: 16/9;
        object-fit: cover;
    }

    .hero-arc-v2 .rail {
        margin-top: calc(var(--space-y) * 1.4);
        background: var(--surface-2);
        border-top: 1px solid var(--border-on-surface);
        display: grid;
        grid-template-columns:repeat(4, minmax(0, 1fr));
        gap: 1px;
    }

    .hero-arc-v2 .rail div {
        padding: 1rem var(--space-x);
        background: var(--surface-1);
        display: grid;
        gap: .3rem;
    }

    .hero-arc-v2 em {
        font-style: normal;
        color: var(--fg-on-surface-light);
        font-size: .88rem;
    }

    .hero-arc-v2 strong {
        font-size: 1.05rem;
    }

    @media (max-width: 900px) {
        .hero-arc-v2 .split {
            grid-template-columns:1fr;
        }

        .hero-arc-v2 .rail {
            grid-template-columns:repeat(2, minmax(0, 1fr));
        }
    }

.next-c-1 {
        padding: clamp(3.3rem, 7vw, 6rem) var(--space-x);
        background: var(--gradient-accent);
        color: var(--fg-on-primary);
    }

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

    .next-c-1__mast {
        display: flex;
        justify-content: space-between;
        align-items: end;
        gap: 1rem;
        flex-wrap: wrap;
        margin-bottom: 1.1rem;
    }

    .next-c-1__mast p {
        margin: 0;
        color: rgba(255, 255, 255, 0.82);
    }

    .next-c-1__mast h2 {
        margin: .55rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .next-c-1__mast a {
        display: inline-flex;
        min-height: 2.85rem;
        align-items: center;
        justify-content: center;
        padding: 0 1rem;
        border-radius: var(--radius-md);
        text-decoration: none;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

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

    .next-c-1__list article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: rgba(255, 255, 255, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .next-c-1__list i {
        font-style: normal;
        display: inline-flex;
        width: 2.3rem;
        height: 2.3rem;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(255, 255, 255, .16);
    }

    .next-c-1__list h3 {
        margin: .8rem 0 .35rem;
        font-size: 1.04rem;
    }

    .next-c-1__list p {
        margin: 0;
        color: rgba(255, 255, 255, 0.82);
    }

    .next-c-1__list a {
        display: inline-block;
        margin-top: .75rem;
        color: var(--bg-accent);
        text-decoration: none;
        font-weight: 600;
    }

    /* macro-bg:next-c-1__wrap */
    .next-c-1 {
        overflow: hidden;
    }

    .next-c-1__wrap {
        background-image: linear-gradient(rgba(0, 0, 0, .88), rgba(17, 24, 39, .88)), url('https://images.pexels.com/photos/257736/pexels-photo-257736.jpeg?auto=compress&cs=tinysrgb&w=800');
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        border-radius: var(--radius-xl);
        overflow: hidden;
        padding: var(--space-y);
    }

.index-recommendations-light {
        background: var(--bg-page);
        color: var(--fg-on-page);
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 40px);
    }

    .index-recommendations-light__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .index-recommendations-light__h {
        text-align: center;
        margin-bottom: clamp(24px, 6vw, 52px);

        transform: translateY(-18px);
    }

    .index-recommendations-light__h h2 {
        margin: 0 0 10px;
        font-size: clamp(28px, 4.6vw, 48px);
        letter-spacing: -0.02em;
    }

    .index-recommendations-light__h p {
        margin: 0;
        color: var(--neutral-600);
    }

    .index-recommendations-light__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: clamp(14px, 2.6vw, 22px);
    }

    .index-recommendations-light__card {
        border-radius: var(--radius-xl);
        background: var(--surface-light);
        border: 1px solid var(--border-on-surface-light);
        box-shadow: var(--shadow-md);
        padding: clamp(18px, 3vw, 26px);

        transform: translateY(26px);
        position: relative;
        overflow: hidden;
    }

    .index-recommendations-light__card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 20% 15%, rgba(248, 225, 231, 0.45), transparent 55%);
        pointer-events: none;
    }

    .index-recommendations-light__card h3 {
        margin: 0 0 10px;
        position: relative;
        z-index: 1;
        font-size: 18px;
        font-weight: 900;
        letter-spacing: -0.01em;
        color: var(--fg-on-page);
    }

    .index-recommendations-light__card p {
        margin: 0 0 14px;
        position: relative;
        z-index: 1;
        color: var(--fg-on-surface-light);
        font-size: 14px;
        line-height: 1.65;
    }

    .index-recommendations-light__cta {
        position: relative;
        z-index: 1;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        text-decoration: none;
        padding: 10px 14px;
        border-radius: 999px;
        background: var(--bg-primary);
        border: 1px solid var(--ring);
        color: var(--fg-on-primary);
        font-weight: 800;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        font-size: 11px;
        transition: transform var(--anim-duration) var(--anim-ease), background var(--anim-duration) var(--anim-ease);
    }

    .index-recommendations-light__cta::after {
        content: '->';
        font-size: 12px;
    }

    .index-recommendations-light__cta:hover {
        background: var(--bg-primary-hover);
        transform: translateY(-2px);
    }

.social-c1 {

        padding: clamp(18px, 3vw, 44px);
        background: var(--gradient-accent);
        color: var(--accent-contrast);
        overflow: hidden;
    }

    .social-c1__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .social-c1__h {
        margin-bottom: clamp(14px, 2.2vw, 22px);
    }

    .social-c1__title {
        margin: 0;
        font-size: clamp(24px, 4.6vw, 44px);
        letter-spacing: -.02em;
        line-height: 1.1;
    }

    .social-c1__sub {
        margin: 10px 0 0;
        max-width: 70ch;
        color: rgba(255, 255, 255, .9);
    }

    .social-c1__band {
        margin-top: 18px;
        border-radius: var(--radius-xl);
        border: 1px solid rgba(255, 255, 255, 0.22);
        background: rgba(255, 255, 255, 0.10);
        box-shadow: var(--shadow-lg);
        overflow: hidden;
        position: relative;
    }

    .social-c1__band::before,
    .social-c1__band::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        width: 90px;
        pointer-events: none;
        z-index: 1;
    }

    .social-c1__band::before {
        left: 0;
        background: linear-gradient(90deg, rgba(229, 90, 43, 1), rgba(229, 90, 43, 0));
    }

    .social-c1__band::after {
        right: 0;
        background: linear-gradient(270deg, rgba(229, 90, 43, 1), rgba(229, 90, 43, 0));
    }

    .social-c1__track {
        display: flex;
        gap: 18px;
        padding: var(--space-y) var(--space-x);
        width: max-content;
        animation: socialC1Marquee 18s linear infinite;
    }

    @keyframes socialC1Marquee {
        0% {
            transform: translateX(0)
        }
        100% {
            transform: translateX(-50%)
        }
    }

    .social-c1__logo {
        width: 140px;
        height: 86px;
        border-radius: var(--radius-lg);
        background: rgba(0, 0, 0, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.16);
        display: grid;
        place-items: center;
        flex: 0 0 auto;
    }

    .social-c1__logo img {
        max-width: 78%;
        max-height: 70%;
        opacity: .92;
        filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.18));
    }

    .social-c1__stats {
        margin-top: 18px;
        display: grid;
        grid-template-columns:repeat(12, 1fr);
        gap: 12px;
    }

    .social-c1__stat {
        grid-column: span 4;
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, 0.10);
        border: 1px solid rgba(255, 255, 255, 0.18);
        box-shadow: var(--shadow-md);
        padding: 14px 16px;
    }

    .social-c1__num {
        font-weight: 900;
        font-size: clamp(18px, 2.4vw, 28px);
    }

    .social-c1__lbl {
        margin-top: 6px;
        color: rgba(255, 255, 255, .9);
    }

    @media (max-width: 900px) {
        .social-c1__stat {
            grid-column: span 6;
        }
    }

    @media (max-width: 640px) {
        .social-c1__stat {
            grid-column: span 12;
        }
    }

    @media (prefers-reduced-motion: reduce) {
        .social-c1__track {
            animation: none;
            transform: none;
        }
    }

header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) var(--space-x);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: -0.02em;
  }
  .nav-menu ul {
    list-style: none;
    display: flex;
    gap: var(--gap);
    margin: 0;
    padding: 0;
  }
  .nav-menu a {
    color: var(--fg-on-surface);
    text-decoration: none;
    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-menu a:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
  }
  .cta-button {
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    transition: background var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }
  .cta-button:hover {
    background: var(--bg-accent-hover);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 0;
    z-index: 101;
  }
  .burger span {
    display: block;
    width: 24px;
    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 span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  @media (max-width: 767px) {
    .nav-menu {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: var(--surface-1);
      display: flex;
      align-items: center;
      justify-content: center;
      transform: translateX(100%);
      transition: transform var(--anim-duration) var(--anim-ease);
      z-index: 100;
    }
    .nav-menu.open {
      transform: translateX(0);
    }
    .nav-menu ul {
      flex-direction: column;
      align-items: center;
      gap: 1.5rem;
    }
    .nav-menu a {
      font-size: 1.25rem;
      padding: 0.75rem 1.5rem;
    }
    .cta-button {
      display: none;
    }
    .burger {
      display: flex;
    }
  }

.site-footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2.5rem 1.5rem 1.5rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 1.5rem;
  }
  .logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    text-decoration: none;
    letter-spacing: 0.5px;
  }
  .logo-text:hover {
    color: #ffb82e;
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .nav-list a {
    color: #c0c0c0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  .nav-list a:hover {
    color: #f0a500;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer-contact {
    flex: 1 1 280px;
  }
  .footer-contact address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .contact-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.95rem;
  }
  .contact-item a {
    color: #c0c0c0;
    text-decoration: none;
  }
  .contact-item a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .icon {
    font-size: 1.1rem;
    min-width: 1.2rem;
  }
  .footer-legal {
    flex: 2 1 350px;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
  }
  .legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .legal-links a {
    color: #c0c0c0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }
  .legal-links a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .disclaimer {
    font-size: 0.85rem;
    color: #a0a0a0;
    margin: 0.3rem 0;
    line-height: 1.5;
  }
  .copyright {
    font-size: 0.85rem;
    color: #888;
    margin: 0.2rem 0 0;
  }
  @media (max-width: 640px) {
    .footer-top {
      flex-direction: column;
      align-items: flex-start;
    }
    .nav-list {
      flex-direction: column;
      gap: 0.6rem;
    }
    .footer-bottom {
      flex-direction: column;
      gap: 1.5rem;
    }
    .legal-links {
      flex-direction: column;
      gap: 0.5rem;
    }
  }

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

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

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

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

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

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

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

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

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

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

.identity-lv4 {
        padding: clamp(50px, 7vw, 90px) clamp(16px, 4vw, 36px);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    .identity-lv4__wrap {
        max-width: 920px;
        margin: 0 auto;
    }

    .identity-lv4__head {
        margin-bottom: 15px;
    }

    .identity-lv4__head p {
        margin: 0;
        color: var(--neutral-600);
    }

    .identity-lv4__head h2 {
        margin: 7px 0;
        font-size: clamp(28px, 4vw, 42px);
    }

    .identity-lv4__head span {
        color: var(--neutral-600);
    }

    .identity-lv4__stack {
        display: grid;
        gap: 10px;
    }

    .identity-lv4__stack article {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--surface-light);
        padding: 12px;
    }

    .identity-lv4__line {
        display: flex;
        align-items: baseline;
        gap: 8px;
        flex-wrap: wrap;
    }

    .identity-lv4__line i {
        font-style: normal;
        color: var(--link);
    }

    .identity-lv4__line h3 {
        margin: 0;
    }

    .identity-lv4__stack p {
        margin: 7px 0 6px;
        color: var(--neutral-600);
    }

    .identity-lv4__stack small {
        color: var(--neutral-800);
        font-weight: 600;
    }

.gallery--colored-v5 {

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

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

.gallery__header {
    text-align: center;
    margin-bottom: 24px;
}

.gallery__header h2 {
    margin: 0 0 6px;
    font-size: clamp(24px,4vw,32px);
    color: var(--brand-contrast);
}

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

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

.gallery__item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(148,163,184,0.6);
}

.gallery__item--featured {
    border-color: var(--accent);
}

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

.gallery__item figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 8px 10px;
    background: linear-gradient(to top, rgba(15,23,42,0.9), transparent);
    font-size: 0.85rem;
}

.mission--light-v6 {

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

    .mission__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.2fr);
        gap: 24px;
        align-items: center;
    }

    .mission__headline h2 {
        margin: 0 0 6px;
        font-size: clamp(24px, 4vw, 30px);
    }

    .mission__headline p {
        margin: 0;
        color: var(--neutral-700);
        line-height: 1.7;
    }

    .mission__stats {
        display: grid;
        gap: 10px;
    }

    .mission__stat {
        border-radius: var(--radius-lg);
        padding: 10px 12px;
        background: var(--surface-light);
        border: 1px solid var(--border-on-surface-light);
    }

    .mission__stat-label {
        display: block;
        font-size: 0.8rem;
        color: var(--neutral-600);
    }

    .mission__stat-value {
        display: block;
        font-size: 1.1rem;
        font-weight: 600;
    }

    .mission__stat--accent .mission__stat-value {
        color: var(--accent);
    }

    .mission__stat--brand .mission__stat-value {
        color: var(--bg-primary);
    }

    .mission__stat--accent .mission__stat-value {
        color: var(--accent);
    }

    @media (max-width: 768px) {
        .mission__inner {
            grid-template-columns: minmax(0, 1fr);
        }
    }

.team-fresh-v3 {
        padding: calc(var(--space-y) * 3) var(--space-x);
        background: var(--accent);
        color: var(--accent-contrast);
    }

    .team-fresh-v3 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: 1rem;
    }

    .team-fresh-v3 .head p {
        margin: .35rem 0 0;
        color: var(--fg-on-surface-light);
    }

    .team-fresh-v3 .rows {
        display: grid;
        grid-template-columns:repeat(12, minmax(0, 1fr));
        gap: var(--gap);
    }

    .team-fresh-v3 article {
        grid-column: span 6;
        display: grid;
        grid-template-columns:1fr 140px;
        gap: var(--gap);
        align-items: center;
        padding: 1rem;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-2);
    }

    .team-fresh-v3 img {
        width: 100%;
        aspect-ratio: 1/1;
        object-fit: cover;
        border-radius: var(--radius-md);
    }

    .team-fresh-v3 h3 {
        margin: 0 0 .2rem;
        color: var(--neutral-600)
    }

    .team-fresh-v3 .role {
        margin: 0;
        font-weight: 700;
        color: var(--link);
    }

    .team-fresh-v3 .bio {
        margin: .3rem 0 0;
        color: var(--fg-on-surface-light);
    }

    @media (max-width: 960px) {
        .team-fresh-v3 article {
            grid-column: 1/-1;
        }
    }

    @media (max-width: 640px) {
        .team-fresh-v3 article {
            grid-template-columns:1fr;
        }
    }

header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) var(--space-x);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: -0.02em;
  }
  .nav-menu ul {
    list-style: none;
    display: flex;
    gap: var(--gap);
    margin: 0;
    padding: 0;
  }
  .nav-menu a {
    color: var(--fg-on-surface);
    text-decoration: none;
    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-menu a:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
  }
  .cta-button {
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    transition: background var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }
  .cta-button:hover {
    background: var(--bg-accent-hover);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 0;
    z-index: 101;
  }
  .burger span {
    display: block;
    width: 24px;
    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 span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  @media (max-width: 767px) {
    .nav-menu {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: var(--surface-1);
      display: flex;
      align-items: center;
      justify-content: center;
      transform: translateX(100%);
      transition: transform var(--anim-duration) var(--anim-ease);
      z-index: 100;
    }
    .nav-menu.open {
      transform: translateX(0);
    }
    .nav-menu ul {
      flex-direction: column;
      align-items: center;
      gap: 1.5rem;
    }
    .nav-menu a {
      font-size: 1.25rem;
      padding: 0.75rem 1.5rem;
    }
    .cta-button {
      display: none;
    }
    .burger {
      display: flex;
    }
  }

.site-footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2.5rem 1.5rem 1.5rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 1.5rem;
  }
  .logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    text-decoration: none;
    letter-spacing: 0.5px;
  }
  .logo-text:hover {
    color: #ffb82e;
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .nav-list a {
    color: #c0c0c0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  .nav-list a:hover {
    color: #f0a500;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer-contact {
    flex: 1 1 280px;
  }
  .footer-contact address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .contact-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.95rem;
  }
  .contact-item a {
    color: #c0c0c0;
    text-decoration: none;
  }
  .contact-item a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .icon {
    font-size: 1.1rem;
    min-width: 1.2rem;
  }
  .footer-legal {
    flex: 2 1 350px;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
  }
  .legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .legal-links a {
    color: #c0c0c0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }
  .legal-links a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .disclaimer {
    font-size: 0.85rem;
    color: #a0a0a0;
    margin: 0.3rem 0;
    line-height: 1.5;
  }
  .copyright {
    font-size: 0.85rem;
    color: #888;
    margin: 0.2rem 0 0;
  }
  @media (max-width: 640px) {
    .footer-top {
      flex-direction: column;
      align-items: flex-start;
    }
    .nav-list {
      flex-direction: column;
      gap: 0.6rem;
    }
    .footer-bottom {
      flex-direction: column;
      gap: 1.5rem;
    }
    .legal-links {
      flex-direction: column;
      gap: 0.5rem;
    }
  }

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

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

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

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

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

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

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

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

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

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

.social-c1 {

        padding: clamp(18px, 3vw, 44px);
        background: var(--gradient-accent);
        color: var(--accent-contrast);
        overflow: hidden;
    }

    .social-c1__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .social-c1__h {
        margin-bottom: clamp(14px, 2.2vw, 22px);
    }

    .social-c1__title {
        margin: 0;
        font-size: clamp(24px, 4.6vw, 44px);
        letter-spacing: -.02em;
        line-height: 1.1;
    }

    .social-c1__sub {
        margin: 10px 0 0;
        max-width: 70ch;
        color: rgba(255, 255, 255, .9);
    }

    .social-c1__band {
        margin-top: 18px;
        border-radius: var(--radius-xl);
        border: 1px solid rgba(255, 255, 255, 0.22);
        background: rgba(255, 255, 255, 0.10);
        box-shadow: var(--shadow-lg);
        overflow: hidden;
        position: relative;
    }

    .social-c1__band::before,
    .social-c1__band::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        width: 90px;
        pointer-events: none;
        z-index: 1;
    }

    .social-c1__band::before {
        left: 0;
        background: linear-gradient(90deg, rgba(229, 90, 43, 1), rgba(229, 90, 43, 0));
    }

    .social-c1__band::after {
        right: 0;
        background: linear-gradient(270deg, rgba(229, 90, 43, 1), rgba(229, 90, 43, 0));
    }

    .social-c1__track {
        display: flex;
        gap: 18px;
        padding: var(--space-y) var(--space-x);
        width: max-content;
        animation: socialC1Marquee 18s linear infinite;
    }

    @keyframes socialC1Marquee {
        0% {
            transform: translateX(0)
        }
        100% {
            transform: translateX(-50%)
        }
    }

    .social-c1__logo {
        width: 140px;
        height: 86px;
        border-radius: var(--radius-lg);
        background: rgba(0, 0, 0, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.16);
        display: grid;
        place-items: center;
        flex: 0 0 auto;
    }

    .social-c1__logo img {
        max-width: 78%;
        max-height: 70%;
        opacity: .92;
        filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.18));
    }

    .social-c1__stats {
        margin-top: 18px;
        display: grid;
        grid-template-columns:repeat(12, 1fr);
        gap: 12px;
    }

    .social-c1__stat {
        grid-column: span 4;
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, 0.10);
        border: 1px solid rgba(255, 255, 255, 0.18);
        box-shadow: var(--shadow-md);
        padding: 14px 16px;
    }

    .social-c1__num {
        font-weight: 900;
        font-size: clamp(18px, 2.4vw, 28px);
    }

    .social-c1__lbl {
        margin-top: 6px;
        color: rgba(255, 255, 255, .9);
    }

    @media (max-width: 900px) {
        .social-c1__stat {
            grid-column: span 6;
        }
    }

    @media (max-width: 640px) {
        .social-c1__stat {
            grid-column: span 12;
        }
    }

    @media (prefers-reduced-motion: reduce) {
        .social-c1__track {
            animation: none;
            transform: none;
        }
    }

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

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

.features__title {
    text-align: left;
    margin-bottom: calc(var(--space-y) * 2);
    font-size: clamp(28px, 4vw, 40px);
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: calc(var(--gap) * 1.5);
}

.features__card {
    background-color: var(--surface-2);
    padding: clamp(16px, 3vw, 32px);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    text-align: left;
    border: 1px solid var(--border-on-surface);
}

.features__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.features__icon {
    font-size: 2.2rem;
    color: var(--brand);
    margin-bottom: var(--space-y);
}

.features__icon--chip {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.features__card h3 {
    margin-bottom: var(--space-y);
    color: var(--fg-on-surface);
}

.features__card p {
    color: var(--fg-on-surface-light);
    margin: 0 auto;
}

.hiw-orbit-c7 {
        padding: clamp(3.6rem, 8vw, 6.2rem) var(--space-x);
        background: var(--gradient-hero);
        color: var(--gradient-accent);
    }

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

    .hiw-orbit-c7__head {
        text-align: center;
        margin-bottom: 1.25rem;
    }

    .hiw-orbit-c7__head p {
        margin: 0;
    }

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

    .hiw-orbit-c7__ring {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
        gap: var(--gap);
    }

    .hiw-orbit-c7__ring article {
        padding: 1rem;
        background: rgba(255, 255, 255, .52);
        border: 1px solid rgba(255, 255, 255, .2);
        text-align: center;
    }

    .hiw-orbit-c7__ring span {
        display: inline-flex;
        min-width: 2.6rem;
        height: 2.6rem;
        align-items: center;
        justify-content: center;
        border-radius: 999px;
        background: var(--chip-bg);
    }

    .hiw-orbit-c7__ring h3 {
        margin: .75rem 0 .35rem;
    }

    .hiw-orbit-c7__ring p {
        margin: 0;
    }

header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) var(--space-x);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: -0.02em;
  }
  .nav-menu ul {
    list-style: none;
    display: flex;
    gap: var(--gap);
    margin: 0;
    padding: 0;
  }
  .nav-menu a {
    color: var(--fg-on-surface);
    text-decoration: none;
    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-menu a:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
  }
  .cta-button {
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    transition: background var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }
  .cta-button:hover {
    background: var(--bg-accent-hover);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 0;
    z-index: 101;
  }
  .burger span {
    display: block;
    width: 24px;
    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 span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  @media (max-width: 767px) {
    .nav-menu {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: var(--surface-1);
      display: flex;
      align-items: center;
      justify-content: center;
      transform: translateX(100%);
      transition: transform var(--anim-duration) var(--anim-ease);
      z-index: 100;
    }
    .nav-menu.open {
      transform: translateX(0);
    }
    .nav-menu ul {
      flex-direction: column;
      align-items: center;
      gap: 1.5rem;
    }
    .nav-menu a {
      font-size: 1.25rem;
      padding: 0.75rem 1.5rem;
    }
    .cta-button {
      display: none;
    }
    .burger {
      display: flex;
    }
  }

.site-footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2.5rem 1.5rem 1.5rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 1.5rem;
  }
  .logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    text-decoration: none;
    letter-spacing: 0.5px;
  }
  .logo-text:hover {
    color: #ffb82e;
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .nav-list a {
    color: #c0c0c0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  .nav-list a:hover {
    color: #f0a500;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer-contact {
    flex: 1 1 280px;
  }
  .footer-contact address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .contact-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.95rem;
  }
  .contact-item a {
    color: #c0c0c0;
    text-decoration: none;
  }
  .contact-item a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .icon {
    font-size: 1.1rem;
    min-width: 1.2rem;
  }
  .footer-legal {
    flex: 2 1 350px;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
  }
  .legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .legal-links a {
    color: #c0c0c0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }
  .legal-links a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .disclaimer {
    font-size: 0.85rem;
    color: #a0a0a0;
    margin: 0.3rem 0;
    line-height: 1.5;
  }
  .copyright {
    font-size: 0.85rem;
    color: #888;
    margin: 0.2rem 0 0;
  }
  @media (max-width: 640px) {
    .footer-top {
      flex-direction: column;
      align-items: flex-start;
    }
    .nav-list {
      flex-direction: column;
      gap: 0.6rem;
    }
    .footer-bottom {
      flex-direction: column;
      gap: 1.5rem;
    }
    .legal-links {
      flex-direction: column;
      gap: 0.5rem;
    }
  }

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

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

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

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

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

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

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

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

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

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

.form-fresh-v2 {
        padding: calc(var(--space-y) * 2.4) var(--space-x);
        background: var(--bg-alt);
        color: var(--fg-on-alt);
    }

    .form-fresh-v2 .shell {
        max-width: 760px;
        margin: 0 auto;
        display: grid;
        gap: var(--gap);
    }

    .form-fresh-v2 h2 {
        margin: 0;
        font-size: clamp(1.7rem, 3.1vw, 2.4rem);
    }

    .form-fresh-v2 p {
        margin: 0;
        color: var(--fg-on-surface-light);
    }

    .form-fresh-v2 form {
        display: grid;
        grid-template-columns:repeat(2, minmax(0, 1fr));
        gap: .75rem;
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
    }

    .form-fresh-v2 label {
        display: grid;
        gap: .3rem;
        font-size: .9rem;
    }

    .form-fresh-v2 input {
        padding: .66rem .75rem;
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-sm);
        font: inherit;
    }

    .form-fresh-v2 button {
        grid-column: 1/-1;
        padding: .72rem 1rem;
        border: 0;
        border-radius: var(--radius-sm);
        background: var(--gradient-accent);
        color: var(--accent-contrast);
        font-weight: 700;
        cursor: pointer;
    }

    @media (max-width: 700px) {
        .form-fresh-v2 form {
            grid-template-columns:1fr;
        }
    }

.support-lv6 {
        padding: clamp(50px, 7vw, 90px) clamp(16px, 4vw, 36px);
        background: linear-gradient(180deg, var(--surface-2), var(--surface-1));
        color: var(--fg-on-page);
    }

    .support-lv6__wrap {
        max-width: 920px;
        margin: 0 auto;
    }

    .support-lv6__head {
        margin-bottom: 14px;
    }

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

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

    .support-lv6__table {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        overflow: hidden;
    }

    .support-lv6__table article {
        display: grid;
        grid-template-columns: .8fr 1.2fr;
        gap: 12px;
        padding: 12px;
        border-bottom: 1px solid var(--border-on-surface-light);
        background: var(--surface-1);
    }

    .support-lv6__table article:last-child {
        border-bottom: 0;
    }

    .support-lv6__table h3 {
        margin: 0;
        color: var(--brand);
        font-size: 1rem;
    }

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

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

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

    .contacts-fresh-v5 .shell {
        max-width: 860px;
        margin: 0 auto;
        display: grid;
        gap: var(--gap);
    }

    .contacts-fresh-v5 h2 {
        margin: 0;
        font-size: clamp(1.7rem, 3.2vw, 2.4rem);
    }

    .contacts-fresh-v5 .head p {
        margin: .35rem 0 0;
        opacity: .85;
    }

    .contacts-fresh-v5 .stack {
        display: grid;
        gap: .7rem;
    }

    .contacts-fresh-v5 details {
        background: var(--chip-bg);
        border-radius: var(--radius-md);
        padding: .8rem 1rem;
    }

    .contacts-fresh-v5 summary {
        cursor: pointer;
        font-weight: 700;
    }

    .contacts-fresh-v5 .inside {
        display: grid;
        gap: .4rem;
        padding-top: .6rem;
    }

    .contacts-fresh-v5 .inside p {
        margin: 0;
    }

    .contacts-fresh-v5 a {
        color: var(--accent);
        font-weight: 700;
        text-decoration: none;
    }

header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) var(--space-x);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: -0.02em;
  }
  .nav-menu ul {
    list-style: none;
    display: flex;
    gap: var(--gap);
    margin: 0;
    padding: 0;
  }
  .nav-menu a {
    color: var(--fg-on-surface);
    text-decoration: none;
    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-menu a:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
  }
  .cta-button {
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    transition: background var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }
  .cta-button:hover {
    background: var(--bg-accent-hover);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 0;
    z-index: 101;
  }
  .burger span {
    display: block;
    width: 24px;
    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 span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  @media (max-width: 767px) {
    .nav-menu {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: var(--surface-1);
      display: flex;
      align-items: center;
      justify-content: center;
      transform: translateX(100%);
      transition: transform var(--anim-duration) var(--anim-ease);
      z-index: 100;
    }
    .nav-menu.open {
      transform: translateX(0);
    }
    .nav-menu ul {
      flex-direction: column;
      align-items: center;
      gap: 1.5rem;
    }
    .nav-menu a {
      font-size: 1.25rem;
      padding: 0.75rem 1.5rem;
    }
    .cta-button {
      display: none;
    }
    .burger {
      display: flex;
    }
  }

.site-footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2.5rem 1.5rem 1.5rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 1.5rem;
  }
  .logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    text-decoration: none;
    letter-spacing: 0.5px;
  }
  .logo-text:hover {
    color: #ffb82e;
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .nav-list a {
    color: #c0c0c0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  .nav-list a:hover {
    color: #f0a500;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer-contact {
    flex: 1 1 280px;
  }
  .footer-contact address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .contact-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.95rem;
  }
  .contact-item a {
    color: #c0c0c0;
    text-decoration: none;
  }
  .contact-item a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .icon {
    font-size: 1.1rem;
    min-width: 1.2rem;
  }
  .footer-legal {
    flex: 2 1 350px;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
  }
  .legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .legal-links a {
    color: #c0c0c0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }
  .legal-links a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .disclaimer {
    font-size: 0.85rem;
    color: #a0a0a0;
    margin: 0.3rem 0;
    line-height: 1.5;
  }
  .copyright {
    font-size: 0.85rem;
    color: #888;
    margin: 0.2rem 0 0;
  }
  @media (max-width: 640px) {
    .footer-top {
      flex-direction: column;
      align-items: flex-start;
    }
    .nav-list {
      flex-direction: column;
      gap: 0.6rem;
    }
    .footer-bottom {
      flex-direction: column;
      gap: 1.5rem;
    }
    .legal-links {
      flex-direction: column;
      gap: 0.5rem;
    }
  }

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

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

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

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

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

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

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

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

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

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

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

    .policy-layout-f .wrap {
        max-width: 980px;
        margin: 0 auto;
    }

    .policy-layout-f .section-head {
        margin-bottom: 16px;
    }

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

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

    .policy-layout-f .rows {
        display: grid;
        gap: 10px;
    }

    .policy-layout-f article {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        padding: 12px;
        background: var(--surface-1);
    }

    .policy-layout-f .head {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .policy-layout-f .head span {
        min-width: 30px;
        height: 30px;
        display: grid;
        place-items: center;
        border-radius: 50%;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 700;
    }

    .policy-layout-f .head h3 {
        margin: 0;
    }

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

header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) var(--space-x);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: -0.02em;
  }
  .nav-menu ul {
    list-style: none;
    display: flex;
    gap: var(--gap);
    margin: 0;
    padding: 0;
  }
  .nav-menu a {
    color: var(--fg-on-surface);
    text-decoration: none;
    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-menu a:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
  }
  .cta-button {
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    transition: background var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }
  .cta-button:hover {
    background: var(--bg-accent-hover);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 0;
    z-index: 101;
  }
  .burger span {
    display: block;
    width: 24px;
    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 span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  @media (max-width: 767px) {
    .nav-menu {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: var(--surface-1);
      display: flex;
      align-items: center;
      justify-content: center;
      transform: translateX(100%);
      transition: transform var(--anim-duration) var(--anim-ease);
      z-index: 100;
    }
    .nav-menu.open {
      transform: translateX(0);
    }
    .nav-menu ul {
      flex-direction: column;
      align-items: center;
      gap: 1.5rem;
    }
    .nav-menu a {
      font-size: 1.25rem;
      padding: 0.75rem 1.5rem;
    }
    .cta-button {
      display: none;
    }
    .burger {
      display: flex;
    }
  }

.site-footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2.5rem 1.5rem 1.5rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 1.5rem;
  }
  .logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    text-decoration: none;
    letter-spacing: 0.5px;
  }
  .logo-text:hover {
    color: #ffb82e;
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .nav-list a {
    color: #c0c0c0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  .nav-list a:hover {
    color: #f0a500;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer-contact {
    flex: 1 1 280px;
  }
  .footer-contact address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .contact-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.95rem;
  }
  .contact-item a {
    color: #c0c0c0;
    text-decoration: none;
  }
  .contact-item a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .icon {
    font-size: 1.1rem;
    min-width: 1.2rem;
  }
  .footer-legal {
    flex: 2 1 350px;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
  }
  .legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .legal-links a {
    color: #c0c0c0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }
  .legal-links a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .disclaimer {
    font-size: 0.85rem;
    color: #a0a0a0;
    margin: 0.3rem 0;
    line-height: 1.5;
  }
  .copyright {
    font-size: 0.85rem;
    color: #888;
    margin: 0.2rem 0 0;
  }
  @media (max-width: 640px) {
    .footer-top {
      flex-direction: column;
      align-items: flex-start;
    }
    .nav-list {
      flex-direction: column;
      gap: 0.6rem;
    }
    .footer-bottom {
      flex-direction: column;
      gap: 1.5rem;
    }
    .legal-links {
      flex-direction: column;
      gap: 0.5rem;
    }
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) var(--space-x);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: -0.02em;
  }
  .nav-menu ul {
    list-style: none;
    display: flex;
    gap: var(--gap);
    margin: 0;
    padding: 0;
  }
  .nav-menu a {
    color: var(--fg-on-surface);
    text-decoration: none;
    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-menu a:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
  }
  .cta-button {
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    transition: background var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }
  .cta-button:hover {
    background: var(--bg-accent-hover);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 0;
    z-index: 101;
  }
  .burger span {
    display: block;
    width: 24px;
    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 span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  @media (max-width: 767px) {
    .nav-menu {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: var(--surface-1);
      display: flex;
      align-items: center;
      justify-content: center;
      transform: translateX(100%);
      transition: transform var(--anim-duration) var(--anim-ease);
      z-index: 100;
    }
    .nav-menu.open {
      transform: translateX(0);
    }
    .nav-menu ul {
      flex-direction: column;
      align-items: center;
      gap: 1.5rem;
    }
    .nav-menu a {
      font-size: 1.25rem;
      padding: 0.75rem 1.5rem;
    }
    .cta-button {
      display: none;
    }
    .burger {
      display: flex;
    }
  }

.site-footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2.5rem 1.5rem 1.5rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 1.5rem;
  }
  .logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    text-decoration: none;
    letter-spacing: 0.5px;
  }
  .logo-text:hover {
    color: #ffb82e;
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .nav-list a {
    color: #c0c0c0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  .nav-list a:hover {
    color: #f0a500;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer-contact {
    flex: 1 1 280px;
  }
  .footer-contact address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .contact-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.95rem;
  }
  .contact-item a {
    color: #c0c0c0;
    text-decoration: none;
  }
  .contact-item a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .icon {
    font-size: 1.1rem;
    min-width: 1.2rem;
  }
  .footer-legal {
    flex: 2 1 350px;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
  }
  .legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .legal-links a {
    color: #c0c0c0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }
  .legal-links a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .disclaimer {
    font-size: 0.85rem;
    color: #a0a0a0;
    margin: 0.3rem 0;
    line-height: 1.5;
  }
  .copyright {
    font-size: 0.85rem;
    color: #888;
    margin: 0.2rem 0 0;
  }
  @media (max-width: 640px) {
    .footer-top {
      flex-direction: column;
      align-items: flex-start;
    }
    .nav-list {
      flex-direction: column;
      gap: 0.6rem;
    }
    .footer-bottom {
      flex-direction: column;
      gap: 1.5rem;
    }
    .legal-links {
      flex-direction: column;
      gap: 0.5rem;
    }
  }

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

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

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

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

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

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

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

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

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

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

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

    .nfthank-v9__panel {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        border: 1px solid rgba(255, 255, 255, .24);
        border-radius: var(--radius-lg);
        padding: clamp(30px, 4vw, 44px);
        background: rgba(255, 255, 255, .06);
    }

    .nfthank-v9 h1 {
        margin: 0;
        font-size: clamp(32px, 5vw, 54px);
    }

    .nfthank-v9 p {
        margin: 12px 0 0;
        opacity: .92;
    }

    .nfthank-v9 a {
        display: inline-block;
        margin-top: 17px;
        color: var(--accent-contrast);
        text-decoration: none;
        border-bottom: 2px solid var(--accent-contrast);
        padding-bottom: 2px;
    }

header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) var(--space-x);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: -0.02em;
  }
  .nav-menu ul {
    list-style: none;
    display: flex;
    gap: var(--gap);
    margin: 0;
    padding: 0;
  }
  .nav-menu a {
    color: var(--fg-on-surface);
    text-decoration: none;
    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-menu a:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
  }
  .cta-button {
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    transition: background var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }
  .cta-button:hover {
    background: var(--bg-accent-hover);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 0;
    z-index: 101;
  }
  .burger span {
    display: block;
    width: 24px;
    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 span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  @media (max-width: 767px) {
    .nav-menu {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: var(--surface-1);
      display: flex;
      align-items: center;
      justify-content: center;
      transform: translateX(100%);
      transition: transform var(--anim-duration) var(--anim-ease);
      z-index: 100;
    }
    .nav-menu.open {
      transform: translateX(0);
    }
    .nav-menu ul {
      flex-direction: column;
      align-items: center;
      gap: 1.5rem;
    }
    .nav-menu a {
      font-size: 1.25rem;
      padding: 0.75rem 1.5rem;
    }
    .cta-button {
      display: none;
    }
    .burger {
      display: flex;
    }
  }

.site-footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2.5rem 1.5rem 1.5rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 1.5rem;
  }
  .logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    text-decoration: none;
    letter-spacing: 0.5px;
  }
  .logo-text:hover {
    color: #ffb82e;
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .nav-list a {
    color: #c0c0c0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  .nav-list a:hover {
    color: #f0a500;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer-contact {
    flex: 1 1 280px;
  }
  .footer-contact address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .contact-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.95rem;
  }
  .contact-item a {
    color: #c0c0c0;
    text-decoration: none;
  }
  .contact-item a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .icon {
    font-size: 1.1rem;
    min-width: 1.2rem;
  }
  .footer-legal {
    flex: 2 1 350px;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
  }
  .legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .legal-links a {
    color: #c0c0c0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }
  .legal-links a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .disclaimer {
    font-size: 0.85rem;
    color: #a0a0a0;
    margin: 0.3rem 0;
    line-height: 1.5;
  }
  .copyright {
    font-size: 0.85rem;
    color: #888;
    margin: 0.2rem 0 0;
  }
  @media (max-width: 640px) {
    .footer-top {
      flex-direction: column;
      align-items: flex-start;
    }
    .nav-list {
      flex-direction: column;
      gap: 0.6rem;
    }
    .footer-bottom {
      flex-direction: column;
      gap: 1.5rem;
    }
    .legal-links {
      flex-direction: column;
      gap: 0.5rem;
    }
  }

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

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

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

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

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

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

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

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

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

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

.nf404-v7 {
        padding: clamp(56px, 10vw, 112px) 20px;
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

    .nf404-v7__box {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
    }

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

    .nf404-v7 p {
        margin: 12px 0 0;
        opacity: .92;
    }

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