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

  --max-w: 1400px;
  --space-x: 1.39rem;
  --space-y: 1.5rem;
  --gap: 2.33rem;

  --radius-xl: 1.33rem;
  --radius-lg: 1rem;
  --radius-md: 0.56rem;
  --radius-sm: 0.26rem;

  --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
  --shadow-md: 0 10px 22px rgba(0,0,0,0.13);
  --shadow-lg: 0 16px 30px rgba(0,0,0,0.15);

  --overlay: rgba(0,0,0,0.5);
  --anim-duration: 440ms;
  --anim-ease: cubic-bezier(0.16,1,0.3,1);
  --random-number: 2;

  --brand: #1E3A5F;
  --brand-contrast: #FFFFFF;
  --accent: #F28C28;
  --accent-contrast: #FFFFFF;

  --neutral-0: #FFFFFF;
  --neutral-100: #F3F4F6;
  --neutral-300: #D1D5DB;
  --neutral-600: #6B7280;
  --neutral-800: #1F2937;
  --neutral-900: #111827;

  --bg-page: #FFFFFF;
  --fg-on-page: #1F2937;

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

  --surface-1: #FFFFFF;
  --surface-2: #F3F4F6;
  --fg-on-surface: #1F2937;
  --border-on-surface: #E5E7EB;

  --surface-light: #F9FAFB;
  --fg-on-surface-light: #374151;
  --border-on-surface-light: #E5E7EB;

  --bg-primary: #2563EB;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #1D4ED8;
  --ring: #2563EB;

  --bg-accent: #F28C28;
  --fg-on-accent: #FFFFFF;
  --bg-accent-hover: #D97706;

  --link: #2563EB;
  --link-hover: #1D4ED8;

  --gradient-hero: linear-gradient(135deg, #1E3A5F 0%, #2563EB 100%);
  --gradient-accent: linear-gradient(135deg, #F28C28 0%, #D97706 100%);

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface-1, #ffffff);
  border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
  box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.08));
}

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

.logo {
  font-size: calc(var(--font-size-base, 16px) * 1.5);
  font-weight: 700;
  color: var(--brand, #2563eb);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: var(--gap, 16px);
  margin: 0;
  padding: 0;
}

.nav-list a {
  text-decoration: none;
  color: var(--neutral-800, #1f2937);
  font-size: var(--font-size-base, 16px);
  line-height: var(--line-height-base, 1.5);
  padding: 8px 12px;
  border-radius: var(--radius-sm, 6px);
  transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease), color var(--anim-duration, 0.2s) var(--anim-ease, ease);
}

.nav-list a:hover,
.nav-list a:focus-visible {
  background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
  color: var(--brand, #2563eb);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.search-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm, 6px);
  color: var(--neutral-800, #1f2937);
  transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-toggle:hover {
  background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
}

.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm, 6px);
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
}

.burger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--neutral-800, #1f2937);
  border-radius: 2px;
  transition: transform var(--anim-duration, 0.2s) var(--anim-ease, ease), opacity var(--anim-duration, 0.2s) var(--anim-ease, 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) {
  .burger {
    display: flex;
  }

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

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

  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

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

  .header-inner {
    position: relative;
    z-index: 100;
  }
}

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .footer-brand {
    flex: 1 1 200px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    letter-spacing: 1px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-policy {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-policy a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-policy a:hover {
    color: #f0a500;
  }
  .footer-contact {
    flex: 1 1 250px;
  }
  .contact-item {
    margin-bottom: 0.5rem;
  }
  .contact-label {
    font-weight: 600;
    color: #f0a500;
    margin-right: 0.5rem;
  }
  .footer-contact a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-contact a:hover {
    color: #f0a500;
  }
  .footer-disclaimer {
    border-top: 1px solid #333;
    padding-top: 1rem;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #aaa;
    text-align: center;
  }
  .footer-disclaimer p {
    margin: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-copyright {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #888;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      align-items: center;
    }
    .footer-policy {
      align-items: center;
    }
    .footer-contact {
      text-align: center;
    }
  }

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

    .cookie-cv15__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

    .cookie-cv15__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

    .cookie-cv15__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, 0.45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, 0.65);
        cursor: pointer;
    }

    .cookie-cv15__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

.nflang-v10 {
        position: fixed;
        left: 50%;
        transform: translateX(-50%);
        bottom: clamp(14px, 2vw, 24px);
        z-index: 99999;
    }

    .nflang-v10__btn {
        border: 1px solid rgba(255, 255, 255, .28);
        border-radius: 999px;
        background: linear-gradient(145deg, #111827, #1f2937);
        color: #f9fafb;
        box-shadow: var(--shadow-lg);
        padding: 9px 14px;
        min-width: 56px;
        cursor: pointer;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: .08em;
    }

    .nflang-v10__dropdown {
        position: absolute;
        bottom: 52px;
        left: 50%;
        transform: translate(-50%, 10px);
        opacity: 0;
        pointer-events: none;
        display: flex;
        gap: 6px;
        transition: opacity var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
    }

    .nflang-v10__dropdown.open {
        opacity: 1;
        pointer-events: auto;
        transform: translate(-50%, 0);
    }

    .nflang-v10__dropdown button,
    .nflang-v10__dropdown a {
        width: 42px;
        height: 34px;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(255, 255, 255, .28);
        background: rgba(17, 24, 39, .92);
        color: #e5e7eb;
        text-decoration: none;
        font-size: 11px;
        font-weight: 700;
        display: inline-flex;
        justify-content: center;
        align-items: center;
    }

    .nflang-v10__dropdown button:hover,
    .nflang-v10__dropdown a:hover {
        background: #38bdf8;
        border-color: transparent;
        color: #06263a;
    }

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

    .hero-arc-v5 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        gap: calc(var(--gap) * 2);
        align-items: flex-end;
        justify-content: space-between;
    }

    .hero-arc-v5 .content {
        max-width: 66ch;
    }

    .hero-arc-v5 h1 {
        margin: .25rem 0;
        font-size: clamp(2.1rem, 5vw, 4rem);
        line-height: 1.02;
        letter-spacing: -.02em;
    }

    .hero-arc-v5 .subtitle {
        margin: 0 0 .5rem;
        opacity: .9;
        font-size: 1.05rem;
    }

    .hero-arc-v5 .desc {
        margin: 0;
        opacity: .8;
        max-width: 58ch;
    }

    .hero-arc-v5 .aside {
        min-width: 280px;
        max-width: 360px;
        display: grid;
        gap: var(--gap);
    }

    .hero-arc-v5 img {
        width: 100%;
        display: block;
        aspect-ratio: 4/5;
        object-fit: cover;
        border-radius: var(--radius-xl);
    }

    .hero-arc-v5 .actions {
        display: grid;
        gap: .7rem;
    }

    .hero-arc-v5 .actions a {
        display: block;
        text-align: center;
        padding: .66rem;
        border-radius: var(--radius-md);
        text-decoration: none;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-weight: 700;
    }

    .hero-arc-v5 .actions a:nth-child(even) {
        background: var(--surface-1);
        color: var(--fg-on-surface);
    }

    .hero-arc-v5 .ticker {
        max-width: var(--max-w);
        margin: calc(var(--space-y) * 1.2) auto 0;
        display: flex;
        flex-wrap: wrap;
        gap: .7rem;
        padding-top: var(--space-y);
        border-top: 1px solid var(--neutral-600);
    }

    .hero-arc-v5 .ticker span {
        padding: .45rem .7rem;
        border-radius: var(--radius-sm);
        background: var(--chip-bg);
        font-size: .9rem;
    }

    @media (max-width: 940px) {
        .hero-arc-v5 .shell {
            flex-direction: column;
            align-items: stretch;
        }

        .hero-arc-v5 .aside {
            max-width: none;
        }

        .hero-arc-v5 img {
            aspect-ratio: 16/9;
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface-1, #ffffff);
  border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
  box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.08));
}

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

.logo {
  font-size: calc(var(--font-size-base, 16px) * 1.5);
  font-weight: 700;
  color: var(--brand, #2563eb);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: var(--gap, 16px);
  margin: 0;
  padding: 0;
}

.nav-list a {
  text-decoration: none;
  color: var(--neutral-800, #1f2937);
  font-size: var(--font-size-base, 16px);
  line-height: var(--line-height-base, 1.5);
  padding: 8px 12px;
  border-radius: var(--radius-sm, 6px);
  transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease), color var(--anim-duration, 0.2s) var(--anim-ease, ease);
}

.nav-list a:hover,
.nav-list a:focus-visible {
  background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
  color: var(--brand, #2563eb);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.search-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm, 6px);
  color: var(--neutral-800, #1f2937);
  transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-toggle:hover {
  background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
}

.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm, 6px);
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
}

.burger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--neutral-800, #1f2937);
  border-radius: 2px;
  transition: transform var(--anim-duration, 0.2s) var(--anim-ease, ease), opacity var(--anim-duration, 0.2s) var(--anim-ease, 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) {
  .burger {
    display: flex;
  }

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

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

  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

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

  .header-inner {
    position: relative;
    z-index: 100;
  }
}

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .footer-brand {
    flex: 1 1 200px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    letter-spacing: 1px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-policy {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-policy a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-policy a:hover {
    color: #f0a500;
  }
  .footer-contact {
    flex: 1 1 250px;
  }
  .contact-item {
    margin-bottom: 0.5rem;
  }
  .contact-label {
    font-weight: 600;
    color: #f0a500;
    margin-right: 0.5rem;
  }
  .footer-contact a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-contact a:hover {
    color: #f0a500;
  }
  .footer-disclaimer {
    border-top: 1px solid #333;
    padding-top: 1rem;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #aaa;
    text-align: center;
  }
  .footer-disclaimer p {
    margin: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-copyright {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #888;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      align-items: center;
    }
    .footer-policy {
      align-items: center;
    }
    .footer-contact {
      text-align: center;
    }
  }

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

    .cookie-cv15__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

    .cookie-cv15__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

    .cookie-cv15__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, 0.45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, 0.65);
        cursor: pointer;
    }

    .cookie-cv15__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

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

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

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

    .team-fresh-v2 .list {
        display: grid;
        gap: .75rem;
    }

    .team-fresh-v2 article {
        display: grid;
        grid-template-columns:92px 1fr;
        gap: var(--gap);
        align-items: center;
        padding: .8rem;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
    }

    .team-fresh-v2 img {
        width: 92px;
        height: 92px;
        object-fit: cover;
        border-radius: 50%;
    }

    .team-fresh-v2 h3 {
        margin: 0 0 .2rem;
    }

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

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

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

        .team-fresh-v2 img {
            border-radius: var(--radius-md);
            width: 100%;
            height: auto;
            aspect-ratio: 4/3;
        }
    }

.identity-nv11 {
        padding: clamp(52px, 8vw, 96px) clamp(16px, 4vw, 40px);
        background: linear-gradient(145deg, var(--bg-primary), var(--brand));
        color: var(--fg-on-primary);
    }

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

    .identity-nv11__hero {
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        background: rgba(255, 255, 255, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.28);
    }

    .identity-nv11__hero h2 {
        margin: 0;
        font-size: clamp(28px, 4.5vw, 46px);
    }

    .identity-nv11__hero p {
        margin: 8px 0 0;
        opacity: .92;
        max-width: 72ch;
    }

    .identity-nv11__content {
        margin-top: 14px;
        display: grid;
        grid-template-columns: 1.2fr .8fr;
        gap: var(--gap);
    }

    .identity-nv11__copy span {
        display: block;
        margin: 0 0 9px;
        opacity: .92;
    }

    .identity-nv11__list h3 {
        margin: 0 0 9px;
        font-size: 1rem;
    }

    .identity-nv11__list ul {
        margin: 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 8px;
    }

    .identity-nv11__list li {
        border-radius: var(--radius-md);
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.14);
        padding: 9px 11px;
    }

    @media (max-width: 820px) {
        .identity-nv11__content {
            grid-template-columns: 1fr;
        }
    }

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

.story-banner-c1 {
        padding: clamp(3.6rem, 8vw, 6rem) var(--space-x);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

    .story-banner-c1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        gap: 1.4rem;
        flex-wrap: wrap;
        align-items: center;
    }

    .story-banner-c1__copy, .story-banner-c1__media {
        flex: 1 1 20rem;
    }

    .story-banner-c1__copy p:first-child {
        margin: 0;
        color: rgba(255, 255, 255, .76);
        text-transform: uppercase;
        letter-spacing: .1em;
        font-size: .82rem;
    }

    .story-banner-c1__copy h2 {
        margin: .55rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .story-banner-c1__copy strong {
        display: block;
        margin-top: .75rem;
    }

    .story-banner-c1__copy p {
        color: rgba(255, 255, 255, .84);
    }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface-1, #ffffff);
  border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
  box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.08));
}

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

.logo {
  font-size: calc(var(--font-size-base, 16px) * 1.5);
  font-weight: 700;
  color: var(--brand, #2563eb);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: var(--gap, 16px);
  margin: 0;
  padding: 0;
}

.nav-list a {
  text-decoration: none;
  color: var(--neutral-800, #1f2937);
  font-size: var(--font-size-base, 16px);
  line-height: var(--line-height-base, 1.5);
  padding: 8px 12px;
  border-radius: var(--radius-sm, 6px);
  transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease), color var(--anim-duration, 0.2s) var(--anim-ease, ease);
}

.nav-list a:hover,
.nav-list a:focus-visible {
  background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
  color: var(--brand, #2563eb);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.search-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm, 6px);
  color: var(--neutral-800, #1f2937);
  transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-toggle:hover {
  background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
}

.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm, 6px);
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
}

.burger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--neutral-800, #1f2937);
  border-radius: 2px;
  transition: transform var(--anim-duration, 0.2s) var(--anim-ease, ease), opacity var(--anim-duration, 0.2s) var(--anim-ease, 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) {
  .burger {
    display: flex;
  }

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

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

  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

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

  .header-inner {
    position: relative;
    z-index: 100;
  }
}

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .footer-brand {
    flex: 1 1 200px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    letter-spacing: 1px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-policy {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-policy a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-policy a:hover {
    color: #f0a500;
  }
  .footer-contact {
    flex: 1 1 250px;
  }
  .contact-item {
    margin-bottom: 0.5rem;
  }
  .contact-label {
    font-weight: 600;
    color: #f0a500;
    margin-right: 0.5rem;
  }
  .footer-contact a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-contact a:hover {
    color: #f0a500;
  }
  .footer-disclaimer {
    border-top: 1px solid #333;
    padding-top: 1rem;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #aaa;
    text-align: center;
  }
  .footer-disclaimer p {
    margin: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-copyright {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #888;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      align-items: center;
    }
    .footer-policy {
      align-items: center;
    }
    .footer-contact {
      text-align: center;
    }
  }

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

    .cookie-cv15__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

    .cookie-cv15__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

    .cookie-cv15__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, 0.45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, 0.65);
        cursor: pointer;
    }

    .cookie-cv15__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

.plans-ux3{padding:clamp(50px,7vw,92px) clamp(16px,4vw,36px);background:var(--gradient-accent);color:var(--accent-contrast)}.plans-ux3__wrap{max-width:var(--max-w);margin:0 auto}.plans-ux3 p{margin:8px 0 12px;color:rgba(255,255,255,.88)}.plans-ux3__grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:10px}.plans-ux3__grid article{border:1px solid rgba(255,255,255,.28);background:rgba(255,255,255,.12);border-radius:var(--radius-lg);padding:12px}.plans-ux3 h3{margin:0}.plans-ux3 ul{margin:8px 0 0;padding-left:18px;display:grid;gap:5px}.plans-ux3 button{width:100%;margin-top:9px;border:0;border-radius:var(--radius-sm);padding:8px 10px;background:var(--bg-primary);color:var(--fg-on-primary)}

.cap-lx5{padding:calc(var(--space-y)*2.8) var(--space-x)}
.cap-lx5 .cap-shell{max-width:var(--max-w);margin:0 auto}
.cap-lx5 h2{margin:0;font-size:clamp(1.8rem,3.3vw,2.6rem)}
.cap-lx5 .cap-sub{margin:.4rem 0 1rem;color:var(--fg-on-surface-light)}
.cap-lx5 .cap-points{display:grid;grid-template-columns:repeat(12,minmax(0,1fr));gap:.7rem}
.cap-lx5 .cap-points article{grid-column:span 4;padding:1rem;border-radius:var(--radius-xl);background:var(--surface-1);border:1px solid var(--border-on-surface);box-shadow:var(--shadow-sm);transition:transform var(--anim-duration) var(--anim-ease),box-shadow var(--anim-duration) var(--anim-ease)}
.cap-lx5 .cap-points article:nth-child(2n){grid-column:span 5}
.cap-lx5 .cap-points article:nth-child(3n){grid-column:span 3}
.cap-lx5 .cap-points article:hover{transform:translateY(-3px);box-shadow:var(--shadow-md)}
.cap-lx5 h3{margin:0 0 .35rem}
.cap-lx5 article p{margin:0;color:var(--fg-on-surface-light)}
.cap-lx5 .cap-bottom{margin-top:.6rem;font-weight:700;color:var(--fg-on-surface)}
@media (max-width:920px){.cap-lx5 .cap-points article,.cap-lx5 .cap-points article:nth-child(2n),.cap-lx5 .cap-points article:nth-child(3n){grid-column:span 6}}@media (max-width:620px){.cap-lx5 .cap-points article,.cap-lx5 .cap-points article:nth-child(2n),.cap-lx5 .cap-points article:nth-child(3n){grid-column:1/-1}}

.hiw-split-c6 {
        padding: clamp(3.5rem, 8vw, 6rem) var(--space-x);
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
    }

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

    .hiw-split-c6__media {
        flex: 1 1 18rem;
        order: var(--random-number);
    }

    .hiw-split-c6__content {
        flex: 1 1 22rem;
        order: calc(3 - var(--random-number));
    }

    .hiw-split-c6__media img {
        display: block;
        width: 100%;
        border-radius: var(--radius-xl);
        border: 1px solid rgba(255, 255, 255, .18);
        box-shadow: var(--shadow-lg);
    }

    .hiw-split-c6__content p:first-child {
        margin: 0;
        color: rgba(255, 255, 255, .78);
        text-transform: uppercase;
        letter-spacing: .12em;
        font-size: .82rem;
    }

    .hiw-split-c6__content h2 {
        margin: .55rem 0 0;
        font-size: clamp(2rem, 4vw, 3.1rem);
    }

    .hiw-split-c6__content strong {
        display: block;
        margin-top: .8rem;
        color: var(--bg-accent);
    }

    .hiw-split-c6__copy {
        margin: .75rem 0 0;
        color: rgba(255, 255, 255, .85);
    }

    .hiw-split-c6__content ul {
        margin: 1rem 0 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: .65rem;
    }

    .hiw-split-c6__content li {
        padding: .8rem .9rem;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .16);
    }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface-1, #ffffff);
  border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
  box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.08));
}

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

.logo {
  font-size: calc(var(--font-size-base, 16px) * 1.5);
  font-weight: 700;
  color: var(--brand, #2563eb);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: var(--gap, 16px);
  margin: 0;
  padding: 0;
}

.nav-list a {
  text-decoration: none;
  color: var(--neutral-800, #1f2937);
  font-size: var(--font-size-base, 16px);
  line-height: var(--line-height-base, 1.5);
  padding: 8px 12px;
  border-radius: var(--radius-sm, 6px);
  transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease), color var(--anim-duration, 0.2s) var(--anim-ease, ease);
}

.nav-list a:hover,
.nav-list a:focus-visible {
  background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
  color: var(--brand, #2563eb);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.search-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm, 6px);
  color: var(--neutral-800, #1f2937);
  transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-toggle:hover {
  background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
}

.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm, 6px);
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
}

.burger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--neutral-800, #1f2937);
  border-radius: 2px;
  transition: transform var(--anim-duration, 0.2s) var(--anim-ease, ease), opacity var(--anim-duration, 0.2s) var(--anim-ease, 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) {
  .burger {
    display: flex;
  }

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

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

  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

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

  .header-inner {
    position: relative;
    z-index: 100;
  }
}

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .footer-brand {
    flex: 1 1 200px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    letter-spacing: 1px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-policy {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-policy a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-policy a:hover {
    color: #f0a500;
  }
  .footer-contact {
    flex: 1 1 250px;
  }
  .contact-item {
    margin-bottom: 0.5rem;
  }
  .contact-label {
    font-weight: 600;
    color: #f0a500;
    margin-right: 0.5rem;
  }
  .footer-contact a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-contact a:hover {
    color: #f0a500;
  }
  .footer-disclaimer {
    border-top: 1px solid #333;
    padding-top: 1rem;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #aaa;
    text-align: center;
  }
  .footer-disclaimer p {
    margin: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-copyright {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #888;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      align-items: center;
    }
    .footer-policy {
      align-items: center;
    }
    .footer-contact {
      text-align: center;
    }
  }

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

    .cookie-cv15__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

    .cookie-cv15__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

    .cookie-cv15__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, 0.45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, 0.65);
        cursor: pointer;
    }

    .cookie-cv15__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

.con-lx10{padding:calc(var(--space-y)*2.7) var(--space-x)}
.con-lx10 .con-shell{max-width:var(--max-w);margin:0 auto;display:grid;gap:.68rem}
.con-lx10 h2{margin:0;font-size:clamp(1.8rem,3.4vw,2.55rem)}
.con-lx10>div>p,.con-lx10 .con-shell>p{margin:0;color:var(--fg-on-surface-light)}
.con-lx10 .con-band{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.65rem}
.con-lx10 .con-pane{padding:.9rem 1rem;border-radius:var(--radius-lg);background:var(--surface-1);border:1px solid var(--border-on-surface)}
.con-lx10 .con-band--alt .con-pane{background:color-mix(in srgb,var(--surface-1) 82%, var(--bg-accent) 18%)}
.con-lx10 h3{margin:0 0 .25rem;font-size:1rem}
.con-lx10 .con-pane p{margin:0}
.con-lx10 a{text-decoration:none;color:var(--link)}
.con-lx10 .con-links{list-style:none;margin:.1rem 0 0;padding:0;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.55rem}
.con-lx10 .con-links li a{display:block;padding:.62rem .75rem;border-radius:var(--radius-md);background:var(--surface-2);border:1px solid var(--border-on-surface)}
@media (max-width:760px){.con-lx10 .con-band,.con-lx10 .con-links{grid-template-columns:1fr}}

.form-u1{padding:calc(var(--space-y)*2.9) var(--space-x);background:var(--gradient-hero);color:var(--brand-contrast)} .form-u1 .shell{max-width:var(--max-w);margin:0 auto;display:grid;gap:var(--gap)} .form-u1 h2{margin:0;font-size:clamp(1.85rem,3.6vw,2.8rem);line-height:1.1} .form-u1 .sub{margin:.35rem 0 0;opacity:.9;} .form-u1 .panel,.form-u1 .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-u1 form{display:grid;gap:.75rem} .form-u1 .field{display:grid;gap:.28rem} .form-u1 .field span{font-size:.82rem;font-weight:700;color:var(--fg-on-surface-light)} .form-u1 input,.form-u1 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-u1 input:focus,.form-u1 textarea:focus{border-color:var(--ring);box-shadow:0 0 0 3px color-mix(in srgb,var(--ring) 22%, transparent)} .form-u1 textarea{min-height:120px;resize:vertical} .form-u1 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-u1 button:hover{transform:translateY(-1px);background:var(--bg-primary-hover)} .form-u1 .split{display:grid;grid-template-columns:1fr 1fr;gap:var(--gap)} .form-u1 .grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.65rem} .form-u1 .line{padding:1rem;border-radius:var(--radius-lg);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover)} .form-u1 .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-u1 .stack{padding:1rem;border-radius:var(--radius-lg);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover)} .form-u1 .steps{display:flex;gap:.45rem;flex-wrap:wrap} .form-u1 .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-u1 .agree{display:flex;align-items:center;gap:.45rem;font-size:.86rem} .form-u1 .media{display:grid;grid-template-columns:.9fr 1.1fr;gap:var(--gap)} .form-u1 .media img,.form-u1 .frame img{width:100%;height:100%;min-height:320px;object-fit:cover;border-radius:var(--radius-xl)} .form-u1 .frame{display:grid;grid-template-columns:1.1fr .9fr;gap:var(--gap)} .form-u1 .full{grid-column:1/-1} @media (max-width:860px){.form-u1 .split,.form-u1 .media,.form-u1 .frame{grid-template-columns:1fr} .form-u1 .grid,.form-u1 .bar{grid-template-columns:1fr}}

.connect {
        color: var(--fg-on-page);
        background: var(--surface-light);
        padding: clamp(32px, 5vw, 64px) clamp(16px, 4vw, 40px);
    }

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

    .connect .connect__header {
        text-align: center;
        margin-bottom: clamp(48px, 7vw, 72px);
    }

    .connect .connect__header h2 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 0.75rem;
        color: var(--fg-on-surface-light);
    }

    .connect .connect__header p {
        font-size: clamp(16px, 2vw, 18px);
        color: var(--neutral-600);
        margin: 0;
    }

    .connect .connect__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(125px, 1fr));
        gap: clamp(24px, 4vw, 32px);
    }

    .connect .connect__item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: clamp(14px, 2.2vw, 18px);
        padding: clamp(24px, 4vw, 32px);
        background: var(--bg-page);
        border-radius: var(--radius-lg);
        text-decoration: none;
        color: inherit;
        transition: transform 0.3s;
        box-shadow: var(--shadow-lg);
        position: relative;
    }

    .connect .connect__item:not(:last-of-type):before {
        position: absolute;
        content: '';
        top: 50%;
        right: -32px;
        transform: translatey(-50%);
        width: 32px;
        height: 1px;
        background: var(--accent);
    }

    .connect .connect__item:hover {
        transform: translateY(-4px);
    }

    .connect .connect__icon {
        font-size: clamp(44px, 7.5vw, 68px);
        width: clamp(90px, 13vw, 130px);
        height: clamp(90px, 13vw, 130px);
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-accent);
        border-radius: 50%;
    }

    .connect .connect__icon {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
        animation: section-pulse-border 3s var(--anim-ease) infinite;
    }

    @keyframes section-pulse-border {
        0%, 100% {
            border-color: var(--border-on-surface);
            box-shadow: none;
        }
        50% {
            border-color: var(--brand);
            box-shadow: 0 0 0 3px var(--accent);
        }
    }

    .connect .connect__item span {
        font-size: clamp(16px, 2.5vw, 18px);
        font-weight: 600;
        color: var(--fg-on-page);
    }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface-1, #ffffff);
  border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
  box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.08));
}

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

.logo {
  font-size: calc(var(--font-size-base, 16px) * 1.5);
  font-weight: 700;
  color: var(--brand, #2563eb);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: var(--gap, 16px);
  margin: 0;
  padding: 0;
}

.nav-list a {
  text-decoration: none;
  color: var(--neutral-800, #1f2937);
  font-size: var(--font-size-base, 16px);
  line-height: var(--line-height-base, 1.5);
  padding: 8px 12px;
  border-radius: var(--radius-sm, 6px);
  transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease), color var(--anim-duration, 0.2s) var(--anim-ease, ease);
}

.nav-list a:hover,
.nav-list a:focus-visible {
  background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
  color: var(--brand, #2563eb);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.search-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm, 6px);
  color: var(--neutral-800, #1f2937);
  transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-toggle:hover {
  background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
}

.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm, 6px);
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
}

.burger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--neutral-800, #1f2937);
  border-radius: 2px;
  transition: transform var(--anim-duration, 0.2s) var(--anim-ease, ease), opacity var(--anim-duration, 0.2s) var(--anim-ease, 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) {
  .burger {
    display: flex;
  }

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

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

  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

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

  .header-inner {
    position: relative;
    z-index: 100;
  }
}

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .footer-brand {
    flex: 1 1 200px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    letter-spacing: 1px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-policy {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-policy a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-policy a:hover {
    color: #f0a500;
  }
  .footer-contact {
    flex: 1 1 250px;
  }
  .contact-item {
    margin-bottom: 0.5rem;
  }
  .contact-label {
    font-weight: 600;
    color: #f0a500;
    margin-right: 0.5rem;
  }
  .footer-contact a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-contact a:hover {
    color: #f0a500;
  }
  .footer-disclaimer {
    border-top: 1px solid #333;
    padding-top: 1rem;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #aaa;
    text-align: center;
  }
  .footer-disclaimer p {
    margin: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-copyright {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #888;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      align-items: center;
    }
    .footer-policy {
      align-items: center;
    }
    .footer-contact {
      text-align: center;
    }
  }

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

    .cookie-cv15__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

    .cookie-cv15__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

    .cookie-cv15__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, 0.45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, 0.65);
        cursor: pointer;
    }

    .cookie-cv15__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface-1, #ffffff);
  border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
  box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.08));
}

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

.logo {
  font-size: calc(var(--font-size-base, 16px) * 1.5);
  font-weight: 700;
  color: var(--brand, #2563eb);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: var(--gap, 16px);
  margin: 0;
  padding: 0;
}

.nav-list a {
  text-decoration: none;
  color: var(--neutral-800, #1f2937);
  font-size: var(--font-size-base, 16px);
  line-height: var(--line-height-base, 1.5);
  padding: 8px 12px;
  border-radius: var(--radius-sm, 6px);
  transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease), color var(--anim-duration, 0.2s) var(--anim-ease, ease);
}

.nav-list a:hover,
.nav-list a:focus-visible {
  background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
  color: var(--brand, #2563eb);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.search-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm, 6px);
  color: var(--neutral-800, #1f2937);
  transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-toggle:hover {
  background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
}

.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm, 6px);
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
}

.burger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--neutral-800, #1f2937);
  border-radius: 2px;
  transition: transform var(--anim-duration, 0.2s) var(--anim-ease, ease), opacity var(--anim-duration, 0.2s) var(--anim-ease, 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) {
  .burger {
    display: flex;
  }

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

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

  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

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

  .header-inner {
    position: relative;
    z-index: 100;
  }
}

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .footer-brand {
    flex: 1 1 200px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    letter-spacing: 1px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-policy {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-policy a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-policy a:hover {
    color: #f0a500;
  }
  .footer-contact {
    flex: 1 1 250px;
  }
  .contact-item {
    margin-bottom: 0.5rem;
  }
  .contact-label {
    font-weight: 600;
    color: #f0a500;
    margin-right: 0.5rem;
  }
  .footer-contact a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-contact a:hover {
    color: #f0a500;
  }
  .footer-disclaimer {
    border-top: 1px solid #333;
    padding-top: 1rem;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #aaa;
    text-align: center;
  }
  .footer-disclaimer p {
    margin: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-copyright {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #888;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      align-items: center;
    }
    .footer-policy {
      align-items: center;
    }
    .footer-contact {
      text-align: center;
    }
  }

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

    .cookie-cv15__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

    .cookie-cv15__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

    .cookie-cv15__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, 0.45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, 0.65);
        cursor: pointer;
    }

    .cookie-cv15__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface-1, #ffffff);
  border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
  box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.08));
}

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

.logo {
  font-size: calc(var(--font-size-base, 16px) * 1.5);
  font-weight: 700;
  color: var(--brand, #2563eb);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: var(--gap, 16px);
  margin: 0;
  padding: 0;
}

.nav-list a {
  text-decoration: none;
  color: var(--neutral-800, #1f2937);
  font-size: var(--font-size-base, 16px);
  line-height: var(--line-height-base, 1.5);
  padding: 8px 12px;
  border-radius: var(--radius-sm, 6px);
  transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease), color var(--anim-duration, 0.2s) var(--anim-ease, ease);
}

.nav-list a:hover,
.nav-list a:focus-visible {
  background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
  color: var(--brand, #2563eb);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.search-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm, 6px);
  color: var(--neutral-800, #1f2937);
  transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-toggle:hover {
  background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
}

.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm, 6px);
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
}

.burger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--neutral-800, #1f2937);
  border-radius: 2px;
  transition: transform var(--anim-duration, 0.2s) var(--anim-ease, ease), opacity var(--anim-duration, 0.2s) var(--anim-ease, 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) {
  .burger {
    display: flex;
  }

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

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

  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

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

  .header-inner {
    position: relative;
    z-index: 100;
  }
}

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .footer-brand {
    flex: 1 1 200px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    letter-spacing: 1px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-policy {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-policy a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-policy a:hover {
    color: #f0a500;
  }
  .footer-contact {
    flex: 1 1 250px;
  }
  .contact-item {
    margin-bottom: 0.5rem;
  }
  .contact-label {
    font-weight: 600;
    color: #f0a500;
    margin-right: 0.5rem;
  }
  .footer-contact a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-contact a:hover {
    color: #f0a500;
  }
  .footer-disclaimer {
    border-top: 1px solid #333;
    padding-top: 1rem;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #aaa;
    text-align: center;
  }
  .footer-disclaimer p {
    margin: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-copyright {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #888;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      align-items: center;
    }
    .footer-policy {
      align-items: center;
    }
    .footer-contact {
      text-align: center;
    }
  }

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

    .cookie-cv15__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

    .cookie-cv15__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

    .cookie-cv15__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, 0.45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, 0.65);
        cursor: pointer;
    }

    .cookie-cv15__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface-1, #ffffff);
  border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
  box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.08));
}

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

.logo {
  font-size: calc(var(--font-size-base, 16px) * 1.5);
  font-weight: 700;
  color: var(--brand, #2563eb);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: var(--gap, 16px);
  margin: 0;
  padding: 0;
}

.nav-list a {
  text-decoration: none;
  color: var(--neutral-800, #1f2937);
  font-size: var(--font-size-base, 16px);
  line-height: var(--line-height-base, 1.5);
  padding: 8px 12px;
  border-radius: var(--radius-sm, 6px);
  transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease), color var(--anim-duration, 0.2s) var(--anim-ease, ease);
}

.nav-list a:hover,
.nav-list a:focus-visible {
  background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
  color: var(--brand, #2563eb);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.search-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm, 6px);
  color: var(--neutral-800, #1f2937);
  transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-toggle:hover {
  background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
}

.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm, 6px);
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
}

.burger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--neutral-800, #1f2937);
  border-radius: 2px;
  transition: transform var(--anim-duration, 0.2s) var(--anim-ease, ease), opacity var(--anim-duration, 0.2s) var(--anim-ease, 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) {
  .burger {
    display: flex;
  }

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

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

  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

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

  .header-inner {
    position: relative;
    z-index: 100;
  }
}

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .footer-brand {
    flex: 1 1 200px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    letter-spacing: 1px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-policy {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-policy a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-policy a:hover {
    color: #f0a500;
  }
  .footer-contact {
    flex: 1 1 250px;
  }
  .contact-item {
    margin-bottom: 0.5rem;
  }
  .contact-label {
    font-weight: 600;
    color: #f0a500;
    margin-right: 0.5rem;
  }
  .footer-contact a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-contact a:hover {
    color: #f0a500;
  }
  .footer-disclaimer {
    border-top: 1px solid #333;
    padding-top: 1rem;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #aaa;
    text-align: center;
  }
  .footer-disclaimer p {
    margin: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-copyright {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #888;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      align-items: center;
    }
    .footer-policy {
      align-items: center;
    }
    .footer-contact {
      text-align: center;
    }
  }

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

    .cookie-cv15__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

    .cookie-cv15__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

    .cookie-cv15__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, 0.45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, 0.65);
        cursor: pointer;
    }

    .cookie-cv15__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

.nf404-v12 {
        padding: clamp(56px, 10vw, 112px) 20px;
        background: var(--surface-2);
        color: var(--fg-on-page);
    }

    .nf404-v12__box {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        border-top: 6px solid var(--accent);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border-left: 1px solid var(--border-on-surface);
        border-right: 1px solid var(--border-on-surface);
        border-bottom: 1px solid var(--border-on-surface);
        padding: clamp(28px, 4vw, 46px);
    }

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

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

    .nf404-v12 a {
        display: inline-block;
        margin-top: 16px;
        padding: 9px 14px;
        border-radius: 999px;
        text-decoration: none;
        border: 1px solid var(--border-on-surface);
        color: var(--fg-on-page);
    }