:root {
  --font-family: "IBM Plex Sans", sans-serif;
  --font-size-base: 16.2px;
  --line-height-base: 1.8;

  --max-w: 1600px;
  --space-x: 1.8rem;
  --space-y: 1.5rem;
  --gap: 2.13rem;

  --radius-xl: 1.15rem;
  --radius-lg: 0.87rem;
  --radius-md: 0.61rem;
  --radius-sm: 0.31rem;

  --shadow-sm: 0 2px 6px rgba(0,0,0,0.12);
  --shadow-md: 0 12px 26px rgba(0,0,0,0.15);
  --shadow-lg: 0 24px 50px rgba(0,0,0,0.19);

  --overlay: rgba(0,0,0,0.5);
  --anim-duration: 370ms;
  --anim-ease: cubic-bezier(0.2,0.8,0.2,1);
  --random-number: 1;

  --brand: #1a5276;
  --brand-contrast: #ffffff;
  --accent: #2980b9;
  --accent-contrast: #ffffff;

  --neutral-0: #ffffff;
  --neutral-100: #f5f7fa;
  --neutral-300: #d0d5dd;
  --neutral-600: #667085;
  --neutral-800: #344054;
  --neutral-900: #101828;

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

  --bg-alt: #f0f4f8;
  --fg-on-alt: #1a5276;

  --surface-1: #ffffff;
  --surface-2: #f9fafb;
  --fg-on-surface: #101828;
  --border-on-surface: #e4e7ec;

  --surface-light: #f5f7fa;
  --fg-on-surface-light: #344054;
  --border-on-surface-light: #e4e7ec;

  --bg-primary: #1a5276;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #154360;
  --ring: #2980b9;

  --bg-accent: #2980b9;
  --fg-on-accent: #ffffff;
  --bg-accent-hover: #1f6a9a;

  --link: #2980b9;
  --link-hover: #1f6a9a;

  --gradient-hero: linear-gradient(135deg, #1a5276 0%, #2980b9 100%);
  --gradient-accent: linear-gradient(135deg, #2980b9 0%, #1a5276 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 {
  background-color: 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));
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo-link {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand, #0077b6);
  text-decoration: none;
  letter-spacing: -0.02em;
  transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
}

.logo-link:hover {
  color: var(--brand-contrast, #005f8a);
}

.main-nav {
  display: flex;
  align-items: center;
}

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

.nav-list a {
  text-decoration: none;
  color: var(--fg-on-surface, #333333);
  font-size: var(--font-size-base, 1rem);
  line-height: var(--line-height-base, 1.5);
  padding: 0.5rem 0;
  position: relative;
  transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
}

.nav-list a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--brand, #0077b6);
  transition: width var(--anim-duration, 0.2s) var(--anim-ease, ease);
}

.nav-list a:hover {
  color: var(--brand, #0077b6);
}

.nav-list a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.search-toggle {
  background: none;
  border: 1px solid var(--border-on-surface, #e0e0e0);
  border-radius: var(--radius-md, 8px);
  padding: 0.5rem;
  cursor: pointer;
  color: var(--fg-on-surface, #333333);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--anim-duration, 0.2s) var(--anim-ease, ease), color var(--anim-duration, 0.2s) var(--anim-ease, ease);
}

.search-toggle:hover {
  background-color: var(--btn-ghost-bg-hover, #f0f0f0);
  color: var(--brand, #0077b6);
}

.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 4px;
}

.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--fg-on-surface, #333333);
  border-radius: 2px;
  transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) 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) {
  .header-inner {
    padding: var(--space-y, 0.75rem) var(--space-x, 1rem);
  }

  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay, rgba(0,0,0,0.5));
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 200;
  }

  .main-nav.open {
    display: flex;
  }

  .nav-list {
    flex-direction: column;
    background-color: var(--surface-1, #ffffff);
    padding: 2rem;
    border-radius: var(--radius-xl, 16px);
    box-shadow: var(--shadow-lg, 0 10px 40px rgba(0,0,0,0.15));
    gap: 1rem;
    min-width: 250px;
    text-align: center;
  }

  .nav-list a {
    font-size: 1.2rem;
    padding: 0.75rem 0;
  }

  .burger {
    display: flex;
  }

  .search-toggle {
    display: flex;
  }
}

footer {
      background: #0b1a2e;
      color: #e0e9f0;
      padding: 2.5rem 1.5rem 1.5rem;
      font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
      line-height: 1.6;
    }
    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem 3rem;
    }
    .footer-brand {
      grid-column: 1 / 2;
    }
    .footer-logo {
      font-size: 1.6rem;
      font-weight: 700;
      color: #ffffff;
      text-decoration: none;
      letter-spacing: 0.02em;
    }
    .footer-logo:hover {
      color: #a0c4e8;
    }
    .footer-tagline {
      margin-top: 0.5rem;
      font-size: 0.95rem;
      color: #b0c7da;
    }
    .footer-right {
      grid-column: 2 / 3;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }
    .footer-nav ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 1.2rem 2rem;
    }
    .footer-nav a {
      color: #d0e1f0;
      text-decoration: none;
      font-size: 0.95rem;
      font-weight: 500;
      transition: color 0.2s;
    }
    .footer-nav a:hover {
      color: #ffffff;
      text-decoration: underline;
    }
    .footer-legal {
      display: flex;
      flex-wrap: wrap;
      gap: 1.2rem 2rem;
    }
    .footer-legal a {
      color: #9bb7d4;
      text-decoration: none;
      font-size: 0.9rem;
      transition: color 0.2s;
    }
    .footer-legal a:hover {
      color: #ffffff;
      text-decoration: underline;
    }
    .footer-contact {
      grid-column: 1 / -1;
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem 2.5rem;
      align-items: baseline;
      padding-top: 1.2rem;
      border-top: 1px solid #2a4058;
      font-size: 0.95rem;
    }
    .footer-contact address {
      font-style: normal;
      color: #c8dbea;
    }
    .footer-contact a {
      color: #b0cfe8;
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-contact a:hover {
      color: #ffffff;
      text-decoration: underline;
    }
    .footer-bottom {
      grid-column: 1 / -1;
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
      padding-top: 1.2rem;
      border-top: 1px solid #2a4058;
      font-size: 0.85rem;
      color: #8aa5be;
    }
    .footer-disclaimer {
      margin: 0;
      line-height: 1.5;
    }
    .footer-copy {
      margin: 0;
    }
    @media (max-width: 640px) {
      .footer-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }
      .footer-brand,
      .footer-right {
        grid-column: 1 / -1;
      }
      .footer-nav ul {
        flex-direction: column;
        gap: 0.8rem;
      }
      .footer-legal {
        flex-direction: column;
        gap: 0.8rem;
      }
      .footer-contact {
        flex-direction: column;
        gap: 0.8rem;
      }
    }

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

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

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

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

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

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

.intro-focus-alt {

        background: var(--fg-on-primary);
        color: var(--bg-primary);
        padding: clamp(60px, 10vw, 120px) clamp(16px, 3vw, 40px);
        position: relative;
        overflow: hidden;
    }

    .intro-focus-alt::after {
        content: '';
        position: absolute;
        bottom: -100px;
        left: -100px;
        width: 400px;
        height: 400px;
        background: var(--accent);
        border-radius: 50%;
        opacity: 0.1;
        filter: blur(80px);
        animation: pulseGlow 4s ease-in-out infinite;
    }

    @keyframes pulseGlow {
        0%, 100% {
            transform: scale(1);
            opacity: 0.1;
        }
        50% {
            transform: scale(1.2);
            opacity: 0.15;
        }
    }

    .intro-focus-alt .intro-focus-alt__c {
        max-width: var(--max-w);
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    .intro-focus-alt .intro-focus-alt__grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: clamp(32px, 5vw, 64px);
        align-items: center;
    }

    @media (min-width: 768px) {
        .intro-focus-alt .intro-focus-alt__grid {
            grid-template-columns: 1.2fr 1fr;
        }
    }

    .intro-focus-alt .intro-focus-alt__visual {
        order: var(--random-number);
    }

    .intro-focus-alt .intro-focus-alt__title {
        font-size: clamp(32px, 6vw, 56px);
        font-weight: 800;
        margin: 0 0 1.5rem;
        line-height: 1.1;
        position: relative;
    }

    .intro-focus-alt .intro-focus-alt__title::after {
        content: '';
        position: absolute;
        bottom: -12px;
        left: 0;
        width: 80px;
        height: 4px;
        background: var(--accent);
        border-radius: var(--radius-sm);
        animation: expandLine 1s ease-out 0.8s forwards;
        transform: scaleX(0);
        transform-origin: left;
    }

    @keyframes expandLine {
        to {
            transform: scaleX(1);
        }
    }

    .intro-focus-alt .intro-focus-alt__description {
        font-size: clamp(16px, 2vw, 20px);
        margin: 2rem 0 0;
        opacity: 0.9;
        line-height: var(--line-height-base);
    }

    .intro-focus-alt .intro-focus-alt__card {
        background: var(--brand-contrast);
        padding: clamp(32px, 4vw, 48px);
        border-radius: var(--radius-xl);
        text-align: center;
        box-shadow: var(--shadow-lg);
        position: relative;
        overflow: hidden;
    }

    .intro-focus-alt .intro-focus-alt__card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        animation: shimmer 3s infinite;
    }

    @keyframes shimmer {
        to {
            left: 100%;
        }
    }

    .intro-focus-alt .intro-focus-alt__icon {
        color: var(--fg-on-surface-light);
        font-size: clamp(48px, 6vw, 64px);
        margin-bottom: 1rem;
    }

    .intro-focus-alt .intro-focus-alt__fact {
        font-size: clamp(40px, 6vw, 56px);
        font-weight: 900;
        color: var(--brand);
        margin-bottom: 0.5rem;
        line-height: 1;
    }

    .intro-focus-alt .intro-focus-alt__caption {
        font-size: clamp(14px, 1.5vw, 18px);
        color: var(--neutral-600);
        font-weight: 600;
    }

.about-struct-v3 {
        padding: calc(var(--space-y) * 2) var(--space-x);
        background: var(--gradient-hero);
        color: var(--brand-contrast)
    }

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

    .about-struct-v3 h2, .about-struct-v3 h3, .about-struct-v3 p {
        margin: 0
    }

    .about-struct-v3 .split, .about-struct-v3 .duo {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: var(--gap)
    }

    .about-struct-v3 .split img, .about-struct-v3 .gallery img {
        display: block;
        width: 100%;
        object-fit: cover;
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-md)
    }

    .about-struct-v3 .split img {
        aspect-ratio: 4/3
    }

    .about-struct-v3 .split div {
        display: grid;
        gap: .5rem
    }

    .about-struct-v3 .cards {
        display: grid;
        grid-template-columns:repeat(3, minmax(0, 1fr));
        gap: var(--gap)
    }

    .about-struct-v3 article, .about-struct-v3 .values div, .about-struct-v3 .facts div, .about-struct-v3 .quote, .about-struct-v3 .statement {
        background: var(--chip-bg);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        padding: .85rem
    }

    .about-struct-v3 .timeline {
        display: grid;
        gap: .65rem
    }

    .about-struct-v3 .timeline article {
        position: relative;
        padding-left: 1.25rem
    }

    .about-struct-v3 .timeline article::before {
        content: "";
        position: absolute;
        left: 0;
        top: .55rem;
        width: .5rem;
        height: .5rem;
        background: var(--bg-accent);
        border-radius: 50%
    }

    .about-struct-v3 .values, .about-struct-v3 .facts {
        display: grid;
        gap: .6rem
    }

    .about-struct-v3 .gallery {
        display: grid;
        grid-template-columns:repeat(3, minmax(0, 1fr));
        gap: var(--gap)
    }

    .about-struct-v3 .gallery img {
        aspect-ratio: 1/1
    }

    .about-struct-v3 .statement {
        display: grid;
        gap: .5rem
    }

    .about-struct-v3 .actions {
        display: flex;
        flex-wrap: wrap;
        gap: .45rem
    }

    .about-struct-v3 .actions a {
        display: inline-flex;
        min-height: 2.4rem;
        padding: 0 .85rem;
        border-radius: var(--radius-sm);
        align-items: center;
        text-decoration: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border: 1px solid var(--ring)
    }

    @media (max-width: 900px) {
        .about-struct-v3 .split, .about-struct-v3 .duo, .about-struct-v3 .cards, .about-struct-v3 .gallery {
            grid-template-columns:1fr 1fr
        }
    }

    @media (max-width: 680px) {
        .about-struct-v3 .split, .about-struct-v3 .duo, .about-struct-v3 .cards, .about-struct-v3 .gallery {
            grid-template-columns:1fr
        }
    }

.social-l2 {

        padding: clamp(18px, 3vw, 44px);
        background: var(--bg-alt);
        color: var(--fg-on-alt);
    }

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

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

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

    .social-l2__sub {
        margin: 10px 0 0;
        max-width: 72ch;
        color: var(--neutral-600);
    }

    .social-l2__wrap {
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-lg);
        overflow: hidden;
    }

    .social-l2__quoteBox {
        padding: 18px;
        border-bottom: 1px solid var(--border-on-surface);
        position: relative;
    }

    .social-l2__quote {
        display: none;
    }

    .social-l2__quote.is-on {
        display: block;
    }

    .social-l2__q {
        font-size: clamp(16px, 2.2vw, 20px);
        line-height: 1.7;
        color: var(--fg-on-page);
        letter-spacing: -.01em;
    }

    .social-l2__m {
        margin-top: 12px;
        color: var(--neutral-600);
        font-weight: 800;
    }

    .social-l2__badges {
        overflow: hidden;
        background: var(--bg-alt);
    }

    .social-l2__badgeTrack {
        display: flex;
        gap: 10px;
        padding: 12px;
        width: max-content;
        animation: socialL2Badges 16s linear infinite;
    }

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

    .social-l2__badge {
        display: inline-flex;
        align-items: center;
        padding: 8px 12px;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border: 1px solid rgba(0, 0, 0, 0.06);
        font-weight: 900;
        white-space: nowrap;
    }

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

.blog-list {

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

    .blog-list .blog-list__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .blog-list .blog-list__h {
        text-align: center;
        margin-bottom: var(--space-y);
        color: var(--fg-on-page);
    }

    .blog-list h1 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 0.5rem;
    }

    .blog-list .blog-list__grid {
        display: grid;
        gap: var(--space-x);
    }

    @media (min-width: 768px) {
        .blog-list .blog-list__grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
    }

    @media (min-width: 1024px) {
        .blog-list .blog-list__grid {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }
    }

    .blog-list .blog-list__card {
        background: var(--surface-1);
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow-md);
        transition: transform var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    }

    .blog-list .blog-list__card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
    }

    .blog-list .blog-list__image img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    .blog-list .blog-list__content {
        padding: clamp(16px, 2vw, 24px);
        color: var(--fg-on-page);
    }

    .blog-list .blog-list__date {
        color: var(--neutral-300);
        font-size: 0.875rem;
    }

    .blog-list h3 {
        margin: 0.5rem 0;
        font-size: clamp(18px, 2.2vw, 22px);
    }

    .blog-list h3 a {
        color: var(--fg-on-page);
        text-decoration: none;
    }

    .blog-list p {
        color: var(--neutral-300);
        margin: 0.5rem 0 1rem;
    }

    .blog-list .blog-list__read-more {
        color: var(--bg-primary);
        text-decoration: none;
        font-weight: 600;
    }

    .blog-list .blog-list__read-more:hover {
        text-decoration: underline;
    }

.site-header {
  background-color: 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));
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo-link {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand, #0077b6);
  text-decoration: none;
  letter-spacing: -0.02em;
  transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
}

.logo-link:hover {
  color: var(--brand-contrast, #005f8a);
}

.main-nav {
  display: flex;
  align-items: center;
}

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

.nav-list a {
  text-decoration: none;
  color: var(--fg-on-surface, #333333);
  font-size: var(--font-size-base, 1rem);
  line-height: var(--line-height-base, 1.5);
  padding: 0.5rem 0;
  position: relative;
  transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
}

.nav-list a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--brand, #0077b6);
  transition: width var(--anim-duration, 0.2s) var(--anim-ease, ease);
}

.nav-list a:hover {
  color: var(--brand, #0077b6);
}

.nav-list a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.search-toggle {
  background: none;
  border: 1px solid var(--border-on-surface, #e0e0e0);
  border-radius: var(--radius-md, 8px);
  padding: 0.5rem;
  cursor: pointer;
  color: var(--fg-on-surface, #333333);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--anim-duration, 0.2s) var(--anim-ease, ease), color var(--anim-duration, 0.2s) var(--anim-ease, ease);
}

.search-toggle:hover {
  background-color: var(--btn-ghost-bg-hover, #f0f0f0);
  color: var(--brand, #0077b6);
}

.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 4px;
}

.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--fg-on-surface, #333333);
  border-radius: 2px;
  transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) 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) {
  .header-inner {
    padding: var(--space-y, 0.75rem) var(--space-x, 1rem);
  }

  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay, rgba(0,0,0,0.5));
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 200;
  }

  .main-nav.open {
    display: flex;
  }

  .nav-list {
    flex-direction: column;
    background-color: var(--surface-1, #ffffff);
    padding: 2rem;
    border-radius: var(--radius-xl, 16px);
    box-shadow: var(--shadow-lg, 0 10px 40px rgba(0,0,0,0.15));
    gap: 1rem;
    min-width: 250px;
    text-align: center;
  }

  .nav-list a {
    font-size: 1.2rem;
    padding: 0.75rem 0;
  }

  .burger {
    display: flex;
  }

  .search-toggle {
    display: flex;
  }
}

footer {
      background: #0b1a2e;
      color: #e0e9f0;
      padding: 2.5rem 1.5rem 1.5rem;
      font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
      line-height: 1.6;
    }
    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem 3rem;
    }
    .footer-brand {
      grid-column: 1 / 2;
    }
    .footer-logo {
      font-size: 1.6rem;
      font-weight: 700;
      color: #ffffff;
      text-decoration: none;
      letter-spacing: 0.02em;
    }
    .footer-logo:hover {
      color: #a0c4e8;
    }
    .footer-tagline {
      margin-top: 0.5rem;
      font-size: 0.95rem;
      color: #b0c7da;
    }
    .footer-right {
      grid-column: 2 / 3;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }
    .footer-nav ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 1.2rem 2rem;
    }
    .footer-nav a {
      color: #d0e1f0;
      text-decoration: none;
      font-size: 0.95rem;
      font-weight: 500;
      transition: color 0.2s;
    }
    .footer-nav a:hover {
      color: #ffffff;
      text-decoration: underline;
    }
    .footer-legal {
      display: flex;
      flex-wrap: wrap;
      gap: 1.2rem 2rem;
    }
    .footer-legal a {
      color: #9bb7d4;
      text-decoration: none;
      font-size: 0.9rem;
      transition: color 0.2s;
    }
    .footer-legal a:hover {
      color: #ffffff;
      text-decoration: underline;
    }
    .footer-contact {
      grid-column: 1 / -1;
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem 2.5rem;
      align-items: baseline;
      padding-top: 1.2rem;
      border-top: 1px solid #2a4058;
      font-size: 0.95rem;
    }
    .footer-contact address {
      font-style: normal;
      color: #c8dbea;
    }
    .footer-contact a {
      color: #b0cfe8;
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-contact a:hover {
      color: #ffffff;
      text-decoration: underline;
    }
    .footer-bottom {
      grid-column: 1 / -1;
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
      padding-top: 1.2rem;
      border-top: 1px solid #2a4058;
      font-size: 0.85rem;
      color: #8aa5be;
    }
    .footer-disclaimer {
      margin: 0;
      line-height: 1.5;
    }
    .footer-copy {
      margin: 0;
    }
    @media (max-width: 640px) {
      .footer-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }
      .footer-brand,
      .footer-right {
        grid-column: 1 / -1;
      }
      .footer-nav ul {
        flex-direction: column;
        gap: 0.8rem;
      }
      .footer-legal {
        flex-direction: column;
        gap: 0.8rem;
      }
      .footer-contact {
        flex-direction: column;
        gap: 0.8rem;
      }
    }

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

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

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

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

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

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

.blog-list {

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

    .blog-list .blog-list__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .blog-list .blog-list__h {
        text-align: center;
        margin-bottom: var(--space-y);
        color: var(--fg-on-page);
    }

    .blog-list h1 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 0.5rem;
    }

    .blog-list .blog-list__grid {
        display: grid;
        gap: var(--space-x);
    }

    @media (min-width: 768px) {
        .blog-list .blog-list__grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
    }

    @media (min-width: 1024px) {
        .blog-list .blog-list__grid {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }
    }

    .blog-list .blog-list__card {
        background: var(--surface-1);
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow-md);
        transition: transform var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    }

    .blog-list .blog-list__card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
    }

    .blog-list .blog-list__image img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    .blog-list .blog-list__content {
        padding: clamp(16px, 2vw, 24px);
        color: var(--fg-on-page);
    }

    .blog-list .blog-list__date {
        color: var(--neutral-300);
        font-size: 0.875rem;
    }

    .blog-list h3 {
        margin: 0.5rem 0;
        font-size: clamp(18px, 2.2vw, 22px);
    }

    .blog-list h3 a {
        color: var(--fg-on-page);
        text-decoration: none;
    }

    .blog-list p {
        color: var(--neutral-300);
        margin: 0.5rem 0 1rem;
    }

    .blog-list .blog-list__read-more {
        color: var(--bg-primary);
        text-decoration: none;
        font-weight: 600;
    }

    .blog-list .blog-list__read-more:hover {
        text-decoration: underline;
    }

.rec-lx2{padding:calc(var(--space-y)*2.75) var(--space-x)}
.rec-lx2 .rec-shell{max-width:var(--max-w);margin:0 auto}
.rec-lx2 h2{margin:0;font-size:clamp(1.8rem,3.3vw,2.55rem)}
.rec-lx2 .rec-sub{margin:.4rem 0 1rem;color:var(--fg-on-surface-light)}
.rec-lx2 .rec-cards{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:.65rem}
.rec-lx2 article{padding:.95rem;border:1px solid var(--border-on-surface);border-radius:var(--radius-lg);background:var(--surface-1)}
.rec-lx2 h3{margin:0 0 .28rem}
.rec-lx2 article p{margin:0 0 .58rem;color:var(--fg-on-surface-light)}
.rec-lx2 a{text-decoration:none;color:var(--link);font-weight:700}
@media (max-width:930px){.rec-lx2 .rec-cards{grid-template-columns:1fr 1fr}}@media (max-width:620px){.rec-lx2 .rec-cards{grid-template-columns:1fr}}

.site-header {
  background-color: 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));
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo-link {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand, #0077b6);
  text-decoration: none;
  letter-spacing: -0.02em;
  transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
}

.logo-link:hover {
  color: var(--brand-contrast, #005f8a);
}

.main-nav {
  display: flex;
  align-items: center;
}

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

.nav-list a {
  text-decoration: none;
  color: var(--fg-on-surface, #333333);
  font-size: var(--font-size-base, 1rem);
  line-height: var(--line-height-base, 1.5);
  padding: 0.5rem 0;
  position: relative;
  transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
}

.nav-list a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--brand, #0077b6);
  transition: width var(--anim-duration, 0.2s) var(--anim-ease, ease);
}

.nav-list a:hover {
  color: var(--brand, #0077b6);
}

.nav-list a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.search-toggle {
  background: none;
  border: 1px solid var(--border-on-surface, #e0e0e0);
  border-radius: var(--radius-md, 8px);
  padding: 0.5rem;
  cursor: pointer;
  color: var(--fg-on-surface, #333333);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--anim-duration, 0.2s) var(--anim-ease, ease), color var(--anim-duration, 0.2s) var(--anim-ease, ease);
}

.search-toggle:hover {
  background-color: var(--btn-ghost-bg-hover, #f0f0f0);
  color: var(--brand, #0077b6);
}

.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 4px;
}

.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--fg-on-surface, #333333);
  border-radius: 2px;
  transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) 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) {
  .header-inner {
    padding: var(--space-y, 0.75rem) var(--space-x, 1rem);
  }

  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay, rgba(0,0,0,0.5));
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 200;
  }

  .main-nav.open {
    display: flex;
  }

  .nav-list {
    flex-direction: column;
    background-color: var(--surface-1, #ffffff);
    padding: 2rem;
    border-radius: var(--radius-xl, 16px);
    box-shadow: var(--shadow-lg, 0 10px 40px rgba(0,0,0,0.15));
    gap: 1rem;
    min-width: 250px;
    text-align: center;
  }

  .nav-list a {
    font-size: 1.2rem;
    padding: 0.75rem 0;
  }

  .burger {
    display: flex;
  }

  .search-toggle {
    display: flex;
  }
}

footer {
      background: #0b1a2e;
      color: #e0e9f0;
      padding: 2.5rem 1.5rem 1.5rem;
      font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
      line-height: 1.6;
    }
    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem 3rem;
    }
    .footer-brand {
      grid-column: 1 / 2;
    }
    .footer-logo {
      font-size: 1.6rem;
      font-weight: 700;
      color: #ffffff;
      text-decoration: none;
      letter-spacing: 0.02em;
    }
    .footer-logo:hover {
      color: #a0c4e8;
    }
    .footer-tagline {
      margin-top: 0.5rem;
      font-size: 0.95rem;
      color: #b0c7da;
    }
    .footer-right {
      grid-column: 2 / 3;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }
    .footer-nav ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 1.2rem 2rem;
    }
    .footer-nav a {
      color: #d0e1f0;
      text-decoration: none;
      font-size: 0.95rem;
      font-weight: 500;
      transition: color 0.2s;
    }
    .footer-nav a:hover {
      color: #ffffff;
      text-decoration: underline;
    }
    .footer-legal {
      display: flex;
      flex-wrap: wrap;
      gap: 1.2rem 2rem;
    }
    .footer-legal a {
      color: #9bb7d4;
      text-decoration: none;
      font-size: 0.9rem;
      transition: color 0.2s;
    }
    .footer-legal a:hover {
      color: #ffffff;
      text-decoration: underline;
    }
    .footer-contact {
      grid-column: 1 / -1;
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem 2.5rem;
      align-items: baseline;
      padding-top: 1.2rem;
      border-top: 1px solid #2a4058;
      font-size: 0.95rem;
    }
    .footer-contact address {
      font-style: normal;
      color: #c8dbea;
    }
    .footer-contact a {
      color: #b0cfe8;
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-contact a:hover {
      color: #ffffff;
      text-decoration: underline;
    }
    .footer-bottom {
      grid-column: 1 / -1;
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
      padding-top: 1.2rem;
      border-top: 1px solid #2a4058;
      font-size: 0.85rem;
      color: #8aa5be;
    }
    .footer-disclaimer {
      margin: 0;
      line-height: 1.5;
    }
    .footer-copy {
      margin: 0;
    }
    @media (max-width: 640px) {
      .footer-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }
      .footer-brand,
      .footer-right {
        grid-column: 1 / -1;
      }
      .footer-nav ul {
        flex-direction: column;
        gap: 0.8rem;
      }
      .footer-legal {
        flex-direction: column;
        gap: 0.8rem;
      }
      .footer-contact {
        flex-direction: column;
        gap: 0.8rem;
      }
    }

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

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

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

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

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

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

.blog-item--colored-v5 {

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

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

.blog-item__cover {
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(148,163,184,0.6);
    margin-bottom: 16px;
}

.blog-item__cover img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

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

.blog-item__meta {
    margin: 0;
    font-size: 0.9rem;
    color: var(--neutral-300);
}

.articles--light-v6 {

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

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

.articles__title {
    margin: 0 0 16px;
    font-size: clamp(24px,4vw,30px);
}

.articles__list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}

.articles__item {
    background: var(--surface-light);
    border-radius: var(--radius-lg);
    padding: 14px 16px;
    border: 1px solid var(--border-on-surface-light);
}

.articles__item h3 {
    margin: 0 0 4px;
    font-size: 1rem;
}

.articles__item p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--neutral-600);
}

.site-header {
  background-color: 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));
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo-link {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand, #0077b6);
  text-decoration: none;
  letter-spacing: -0.02em;
  transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
}

.logo-link:hover {
  color: var(--brand-contrast, #005f8a);
}

.main-nav {
  display: flex;
  align-items: center;
}

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

.nav-list a {
  text-decoration: none;
  color: var(--fg-on-surface, #333333);
  font-size: var(--font-size-base, 1rem);
  line-height: var(--line-height-base, 1.5);
  padding: 0.5rem 0;
  position: relative;
  transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
}

.nav-list a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--brand, #0077b6);
  transition: width var(--anim-duration, 0.2s) var(--anim-ease, ease);
}

.nav-list a:hover {
  color: var(--brand, #0077b6);
}

.nav-list a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.search-toggle {
  background: none;
  border: 1px solid var(--border-on-surface, #e0e0e0);
  border-radius: var(--radius-md, 8px);
  padding: 0.5rem;
  cursor: pointer;
  color: var(--fg-on-surface, #333333);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--anim-duration, 0.2s) var(--anim-ease, ease), color var(--anim-duration, 0.2s) var(--anim-ease, ease);
}

.search-toggle:hover {
  background-color: var(--btn-ghost-bg-hover, #f0f0f0);
  color: var(--brand, #0077b6);
}

.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 4px;
}

.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--fg-on-surface, #333333);
  border-radius: 2px;
  transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) 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) {
  .header-inner {
    padding: var(--space-y, 0.75rem) var(--space-x, 1rem);
  }

  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay, rgba(0,0,0,0.5));
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 200;
  }

  .main-nav.open {
    display: flex;
  }

  .nav-list {
    flex-direction: column;
    background-color: var(--surface-1, #ffffff);
    padding: 2rem;
    border-radius: var(--radius-xl, 16px);
    box-shadow: var(--shadow-lg, 0 10px 40px rgba(0,0,0,0.15));
    gap: 1rem;
    min-width: 250px;
    text-align: center;
  }

  .nav-list a {
    font-size: 1.2rem;
    padding: 0.75rem 0;
  }

  .burger {
    display: flex;
  }

  .search-toggle {
    display: flex;
  }
}

footer {
      background: #0b1a2e;
      color: #e0e9f0;
      padding: 2.5rem 1.5rem 1.5rem;
      font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
      line-height: 1.6;
    }
    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem 3rem;
    }
    .footer-brand {
      grid-column: 1 / 2;
    }
    .footer-logo {
      font-size: 1.6rem;
      font-weight: 700;
      color: #ffffff;
      text-decoration: none;
      letter-spacing: 0.02em;
    }
    .footer-logo:hover {
      color: #a0c4e8;
    }
    .footer-tagline {
      margin-top: 0.5rem;
      font-size: 0.95rem;
      color: #b0c7da;
    }
    .footer-right {
      grid-column: 2 / 3;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }
    .footer-nav ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 1.2rem 2rem;
    }
    .footer-nav a {
      color: #d0e1f0;
      text-decoration: none;
      font-size: 0.95rem;
      font-weight: 500;
      transition: color 0.2s;
    }
    .footer-nav a:hover {
      color: #ffffff;
      text-decoration: underline;
    }
    .footer-legal {
      display: flex;
      flex-wrap: wrap;
      gap: 1.2rem 2rem;
    }
    .footer-legal a {
      color: #9bb7d4;
      text-decoration: none;
      font-size: 0.9rem;
      transition: color 0.2s;
    }
    .footer-legal a:hover {
      color: #ffffff;
      text-decoration: underline;
    }
    .footer-contact {
      grid-column: 1 / -1;
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem 2.5rem;
      align-items: baseline;
      padding-top: 1.2rem;
      border-top: 1px solid #2a4058;
      font-size: 0.95rem;
    }
    .footer-contact address {
      font-style: normal;
      color: #c8dbea;
    }
    .footer-contact a {
      color: #b0cfe8;
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-contact a:hover {
      color: #ffffff;
      text-decoration: underline;
    }
    .footer-bottom {
      grid-column: 1 / -1;
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
      padding-top: 1.2rem;
      border-top: 1px solid #2a4058;
      font-size: 0.85rem;
      color: #8aa5be;
    }
    .footer-disclaimer {
      margin: 0;
      line-height: 1.5;
    }
    .footer-copy {
      margin: 0;
    }
    @media (max-width: 640px) {
      .footer-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }
      .footer-brand,
      .footer-right {
        grid-column: 1 / -1;
      }
      .footer-nav ul {
        flex-direction: column;
        gap: 0.8rem;
      }
      .footer-legal {
        flex-direction: column;
        gap: 0.8rem;
      }
      .footer-contact {
        flex-direction: column;
        gap: 0.8rem;
      }
    }

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

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

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

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

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

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

.blog-item--colored-v5 {

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

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

.blog-item__cover {
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(148,163,184,0.6);
    margin-bottom: 16px;
}

.blog-item__cover img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

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

.blog-item__meta {
    margin: 0;
    font-size: 0.9rem;
    color: var(--neutral-300);
}

.author {

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

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

    .author .author__content {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: clamp(32px, 5vw, 48px);
        align-items: center;
    }

    .author .author__image {
        width: clamp(150px, 22vw, 220px);
        height: clamp(150px, 22vw, 220px);
        border-radius: var(--radius-lg);
        overflow: hidden;
        flex-shrink: 0;
    }

    .author .author__image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .author .author__info h3 {
        font-size: clamp(26px, 4.5vw, 36px);
        margin: 0 0 0.75rem;
        color: var(--fg-on-surface-light);
    }

    .author .author__role {
        font-size: clamp(16px, 2.5vw, 18px);
        color: var(--bg-accent);
        margin: 0 0 1.25rem;
        font-weight: 600;
    }

    .author .author__bio {
        font-size: clamp(15px, 2.2vw, 17px);
        line-height: 1.7;
        color: var(--neutral-600);
        margin: 0;
    }

    @media (max-width: 768px) {
        .author .author__content {
            grid-template-columns: 1fr;
            text-align: center;
        }
    }

.site-header {
  background-color: 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));
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo-link {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand, #0077b6);
  text-decoration: none;
  letter-spacing: -0.02em;
  transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
}

.logo-link:hover {
  color: var(--brand-contrast, #005f8a);
}

.main-nav {
  display: flex;
  align-items: center;
}

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

.nav-list a {
  text-decoration: none;
  color: var(--fg-on-surface, #333333);
  font-size: var(--font-size-base, 1rem);
  line-height: var(--line-height-base, 1.5);
  padding: 0.5rem 0;
  position: relative;
  transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
}

.nav-list a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--brand, #0077b6);
  transition: width var(--anim-duration, 0.2s) var(--anim-ease, ease);
}

.nav-list a:hover {
  color: var(--brand, #0077b6);
}

.nav-list a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.search-toggle {
  background: none;
  border: 1px solid var(--border-on-surface, #e0e0e0);
  border-radius: var(--radius-md, 8px);
  padding: 0.5rem;
  cursor: pointer;
  color: var(--fg-on-surface, #333333);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--anim-duration, 0.2s) var(--anim-ease, ease), color var(--anim-duration, 0.2s) var(--anim-ease, ease);
}

.search-toggle:hover {
  background-color: var(--btn-ghost-bg-hover, #f0f0f0);
  color: var(--brand, #0077b6);
}

.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 4px;
}

.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--fg-on-surface, #333333);
  border-radius: 2px;
  transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) 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) {
  .header-inner {
    padding: var(--space-y, 0.75rem) var(--space-x, 1rem);
  }

  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay, rgba(0,0,0,0.5));
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 200;
  }

  .main-nav.open {
    display: flex;
  }

  .nav-list {
    flex-direction: column;
    background-color: var(--surface-1, #ffffff);
    padding: 2rem;
    border-radius: var(--radius-xl, 16px);
    box-shadow: var(--shadow-lg, 0 10px 40px rgba(0,0,0,0.15));
    gap: 1rem;
    min-width: 250px;
    text-align: center;
  }

  .nav-list a {
    font-size: 1.2rem;
    padding: 0.75rem 0;
  }

  .burger {
    display: flex;
  }

  .search-toggle {
    display: flex;
  }
}

footer {
      background: #0b1a2e;
      color: #e0e9f0;
      padding: 2.5rem 1.5rem 1.5rem;
      font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
      line-height: 1.6;
    }
    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem 3rem;
    }
    .footer-brand {
      grid-column: 1 / 2;
    }
    .footer-logo {
      font-size: 1.6rem;
      font-weight: 700;
      color: #ffffff;
      text-decoration: none;
      letter-spacing: 0.02em;
    }
    .footer-logo:hover {
      color: #a0c4e8;
    }
    .footer-tagline {
      margin-top: 0.5rem;
      font-size: 0.95rem;
      color: #b0c7da;
    }
    .footer-right {
      grid-column: 2 / 3;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }
    .footer-nav ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 1.2rem 2rem;
    }
    .footer-nav a {
      color: #d0e1f0;
      text-decoration: none;
      font-size: 0.95rem;
      font-weight: 500;
      transition: color 0.2s;
    }
    .footer-nav a:hover {
      color: #ffffff;
      text-decoration: underline;
    }
    .footer-legal {
      display: flex;
      flex-wrap: wrap;
      gap: 1.2rem 2rem;
    }
    .footer-legal a {
      color: #9bb7d4;
      text-decoration: none;
      font-size: 0.9rem;
      transition: color 0.2s;
    }
    .footer-legal a:hover {
      color: #ffffff;
      text-decoration: underline;
    }
    .footer-contact {
      grid-column: 1 / -1;
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem 2.5rem;
      align-items: baseline;
      padding-top: 1.2rem;
      border-top: 1px solid #2a4058;
      font-size: 0.95rem;
    }
    .footer-contact address {
      font-style: normal;
      color: #c8dbea;
    }
    .footer-contact a {
      color: #b0cfe8;
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-contact a:hover {
      color: #ffffff;
      text-decoration: underline;
    }
    .footer-bottom {
      grid-column: 1 / -1;
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
      padding-top: 1.2rem;
      border-top: 1px solid #2a4058;
      font-size: 0.85rem;
      color: #8aa5be;
    }
    .footer-disclaimer {
      margin: 0;
      line-height: 1.5;
    }
    .footer-copy {
      margin: 0;
    }
    @media (max-width: 640px) {
      .footer-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }
      .footer-brand,
      .footer-right {
        grid-column: 1 / -1;
      }
      .footer-nav ul {
        flex-direction: column;
        gap: 0.8rem;
      }
      .footer-legal {
        flex-direction: column;
        gap: 0.8rem;
      }
      .footer-contact {
        flex-direction: column;
        gap: 0.8rem;
      }
    }

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

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

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

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

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

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

.blog-item--colored-v5 {

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

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

.blog-item__cover {
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(148,163,184,0.6);
    margin-bottom: 16px;
}

.blog-item__cover img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

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

.blog-item__meta {
    margin: 0;
    font-size: 0.9rem;
    color: var(--neutral-300);
}

.site-header {
  background-color: 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));
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo-link {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand, #0077b6);
  text-decoration: none;
  letter-spacing: -0.02em;
  transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
}

.logo-link:hover {
  color: var(--brand-contrast, #005f8a);
}

.main-nav {
  display: flex;
  align-items: center;
}

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

.nav-list a {
  text-decoration: none;
  color: var(--fg-on-surface, #333333);
  font-size: var(--font-size-base, 1rem);
  line-height: var(--line-height-base, 1.5);
  padding: 0.5rem 0;
  position: relative;
  transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
}

.nav-list a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--brand, #0077b6);
  transition: width var(--anim-duration, 0.2s) var(--anim-ease, ease);
}

.nav-list a:hover {
  color: var(--brand, #0077b6);
}

.nav-list a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.search-toggle {
  background: none;
  border: 1px solid var(--border-on-surface, #e0e0e0);
  border-radius: var(--radius-md, 8px);
  padding: 0.5rem;
  cursor: pointer;
  color: var(--fg-on-surface, #333333);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--anim-duration, 0.2s) var(--anim-ease, ease), color var(--anim-duration, 0.2s) var(--anim-ease, ease);
}

.search-toggle:hover {
  background-color: var(--btn-ghost-bg-hover, #f0f0f0);
  color: var(--brand, #0077b6);
}

.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 4px;
}

.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--fg-on-surface, #333333);
  border-radius: 2px;
  transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) 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) {
  .header-inner {
    padding: var(--space-y, 0.75rem) var(--space-x, 1rem);
  }

  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay, rgba(0,0,0,0.5));
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 200;
  }

  .main-nav.open {
    display: flex;
  }

  .nav-list {
    flex-direction: column;
    background-color: var(--surface-1, #ffffff);
    padding: 2rem;
    border-radius: var(--radius-xl, 16px);
    box-shadow: var(--shadow-lg, 0 10px 40px rgba(0,0,0,0.15));
    gap: 1rem;
    min-width: 250px;
    text-align: center;
  }

  .nav-list a {
    font-size: 1.2rem;
    padding: 0.75rem 0;
  }

  .burger {
    display: flex;
  }

  .search-toggle {
    display: flex;
  }
}

footer {
      background: #0b1a2e;
      color: #e0e9f0;
      padding: 2.5rem 1.5rem 1.5rem;
      font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
      line-height: 1.6;
    }
    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem 3rem;
    }
    .footer-brand {
      grid-column: 1 / 2;
    }
    .footer-logo {
      font-size: 1.6rem;
      font-weight: 700;
      color: #ffffff;
      text-decoration: none;
      letter-spacing: 0.02em;
    }
    .footer-logo:hover {
      color: #a0c4e8;
    }
    .footer-tagline {
      margin-top: 0.5rem;
      font-size: 0.95rem;
      color: #b0c7da;
    }
    .footer-right {
      grid-column: 2 / 3;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }
    .footer-nav ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 1.2rem 2rem;
    }
    .footer-nav a {
      color: #d0e1f0;
      text-decoration: none;
      font-size: 0.95rem;
      font-weight: 500;
      transition: color 0.2s;
    }
    .footer-nav a:hover {
      color: #ffffff;
      text-decoration: underline;
    }
    .footer-legal {
      display: flex;
      flex-wrap: wrap;
      gap: 1.2rem 2rem;
    }
    .footer-legal a {
      color: #9bb7d4;
      text-decoration: none;
      font-size: 0.9rem;
      transition: color 0.2s;
    }
    .footer-legal a:hover {
      color: #ffffff;
      text-decoration: underline;
    }
    .footer-contact {
      grid-column: 1 / -1;
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem 2.5rem;
      align-items: baseline;
      padding-top: 1.2rem;
      border-top: 1px solid #2a4058;
      font-size: 0.95rem;
    }
    .footer-contact address {
      font-style: normal;
      color: #c8dbea;
    }
    .footer-contact a {
      color: #b0cfe8;
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-contact a:hover {
      color: #ffffff;
      text-decoration: underline;
    }
    .footer-bottom {
      grid-column: 1 / -1;
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
      padding-top: 1.2rem;
      border-top: 1px solid #2a4058;
      font-size: 0.85rem;
      color: #8aa5be;
    }
    .footer-disclaimer {
      margin: 0;
      line-height: 1.5;
    }
    .footer-copy {
      margin: 0;
    }
    @media (max-width: 640px) {
      .footer-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }
      .footer-brand,
      .footer-right {
        grid-column: 1 / -1;
      }
      .footer-nav ul {
        flex-direction: column;
        gap: 0.8rem;
      }
      .footer-legal {
        flex-direction: column;
        gap: 0.8rem;
      }
      .footer-contact {
        flex-direction: column;
        gap: 0.8rem;
      }
    }

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

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

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

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

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

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

.support-cv2 {
        padding: clamp(56px, 7vw, 96px) clamp(16px, 4vw, 36px);
        background: linear-gradient(140deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
    }

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

    .support-cv2__box {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: var(--gap);
        border-radius: var(--radius-xl);
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.12);
        padding: 16px;
    }

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

    .support-cv2__box p {
        margin: 8px 0 0;
        opacity: .92;
    }

    .support-cv2__box a {
        text-decoration: none;
        white-space: nowrap;
        padding: 10px 16px;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .support-cv2__box {
            flex-direction: column;
            align-items: flex-start;
        }
    }

.rec-lx2{padding:calc(var(--space-y)*2.75) var(--space-x)}
.rec-lx2 .rec-shell{max-width:var(--max-w);margin:0 auto}
.rec-lx2 h2{margin:0;font-size:clamp(1.8rem,3.3vw,2.55rem)}
.rec-lx2 .rec-sub{margin:.4rem 0 1rem;color:var(--fg-on-surface-light)}
.rec-lx2 .rec-cards{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:.65rem}
.rec-lx2 article{padding:.95rem;border:1px solid var(--border-on-surface);border-radius:var(--radius-lg);background:var(--surface-1)}
.rec-lx2 h3{margin:0 0 .28rem}
.rec-lx2 article p{margin:0 0 .58rem;color:var(--fg-on-surface-light)}
.rec-lx2 a{text-decoration:none;color:var(--link);font-weight:700}
@media (max-width:930px){.rec-lx2 .rec-cards{grid-template-columns:1fr 1fr}}@media (max-width:620px){.rec-lx2 .rec-cards{grid-template-columns:1fr}}

.site-header {
  background-color: 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));
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo-link {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand, #0077b6);
  text-decoration: none;
  letter-spacing: -0.02em;
  transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
}

.logo-link:hover {
  color: var(--brand-contrast, #005f8a);
}

.main-nav {
  display: flex;
  align-items: center;
}

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

.nav-list a {
  text-decoration: none;
  color: var(--fg-on-surface, #333333);
  font-size: var(--font-size-base, 1rem);
  line-height: var(--line-height-base, 1.5);
  padding: 0.5rem 0;
  position: relative;
  transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
}

.nav-list a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--brand, #0077b6);
  transition: width var(--anim-duration, 0.2s) var(--anim-ease, ease);
}

.nav-list a:hover {
  color: var(--brand, #0077b6);
}

.nav-list a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.search-toggle {
  background: none;
  border: 1px solid var(--border-on-surface, #e0e0e0);
  border-radius: var(--radius-md, 8px);
  padding: 0.5rem;
  cursor: pointer;
  color: var(--fg-on-surface, #333333);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--anim-duration, 0.2s) var(--anim-ease, ease), color var(--anim-duration, 0.2s) var(--anim-ease, ease);
}

.search-toggle:hover {
  background-color: var(--btn-ghost-bg-hover, #f0f0f0);
  color: var(--brand, #0077b6);
}

.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 4px;
}

.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--fg-on-surface, #333333);
  border-radius: 2px;
  transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) 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) {
  .header-inner {
    padding: var(--space-y, 0.75rem) var(--space-x, 1rem);
  }

  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay, rgba(0,0,0,0.5));
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 200;
  }

  .main-nav.open {
    display: flex;
  }

  .nav-list {
    flex-direction: column;
    background-color: var(--surface-1, #ffffff);
    padding: 2rem;
    border-radius: var(--radius-xl, 16px);
    box-shadow: var(--shadow-lg, 0 10px 40px rgba(0,0,0,0.15));
    gap: 1rem;
    min-width: 250px;
    text-align: center;
  }

  .nav-list a {
    font-size: 1.2rem;
    padding: 0.75rem 0;
  }

  .burger {
    display: flex;
  }

  .search-toggle {
    display: flex;
  }
}

footer {
      background: #0b1a2e;
      color: #e0e9f0;
      padding: 2.5rem 1.5rem 1.5rem;
      font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
      line-height: 1.6;
    }
    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem 3rem;
    }
    .footer-brand {
      grid-column: 1 / 2;
    }
    .footer-logo {
      font-size: 1.6rem;
      font-weight: 700;
      color: #ffffff;
      text-decoration: none;
      letter-spacing: 0.02em;
    }
    .footer-logo:hover {
      color: #a0c4e8;
    }
    .footer-tagline {
      margin-top: 0.5rem;
      font-size: 0.95rem;
      color: #b0c7da;
    }
    .footer-right {
      grid-column: 2 / 3;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }
    .footer-nav ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 1.2rem 2rem;
    }
    .footer-nav a {
      color: #d0e1f0;
      text-decoration: none;
      font-size: 0.95rem;
      font-weight: 500;
      transition: color 0.2s;
    }
    .footer-nav a:hover {
      color: #ffffff;
      text-decoration: underline;
    }
    .footer-legal {
      display: flex;
      flex-wrap: wrap;
      gap: 1.2rem 2rem;
    }
    .footer-legal a {
      color: #9bb7d4;
      text-decoration: none;
      font-size: 0.9rem;
      transition: color 0.2s;
    }
    .footer-legal a:hover {
      color: #ffffff;
      text-decoration: underline;
    }
    .footer-contact {
      grid-column: 1 / -1;
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem 2.5rem;
      align-items: baseline;
      padding-top: 1.2rem;
      border-top: 1px solid #2a4058;
      font-size: 0.95rem;
    }
    .footer-contact address {
      font-style: normal;
      color: #c8dbea;
    }
    .footer-contact a {
      color: #b0cfe8;
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-contact a:hover {
      color: #ffffff;
      text-decoration: underline;
    }
    .footer-bottom {
      grid-column: 1 / -1;
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
      padding-top: 1.2rem;
      border-top: 1px solid #2a4058;
      font-size: 0.85rem;
      color: #8aa5be;
    }
    .footer-disclaimer {
      margin: 0;
      line-height: 1.5;
    }
    .footer-copy {
      margin: 0;
    }
    @media (max-width: 640px) {
      .footer-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }
      .footer-brand,
      .footer-right {
        grid-column: 1 / -1;
      }
      .footer-nav ul {
        flex-direction: column;
        gap: 0.8rem;
      }
      .footer-legal {
        flex-direction: column;
        gap: 0.8rem;
      }
      .footer-contact {
        flex-direction: column;
        gap: 0.8rem;
      }
    }

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

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

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

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

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

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

.support-cv2 {
        padding: clamp(56px, 7vw, 96px) clamp(16px, 4vw, 36px);
        background: linear-gradient(140deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
    }

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

    .support-cv2__box {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: var(--gap);
        border-radius: var(--radius-xl);
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.12);
        padding: 16px;
    }

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

    .support-cv2__box p {
        margin: 8px 0 0;
        opacity: .92;
    }

    .support-cv2__box a {
        text-decoration: none;
        white-space: nowrap;
        padding: 10px 16px;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .support-cv2__box {
            flex-direction: column;
            align-items: flex-start;
        }
    }

.contacts-u7{padding:calc(var(--space-y)*2.9) var(--space-x);background:var(--gradient-accent);color:var(--brand-contrast)} .contacts-u7 .shell{max-width:var(--max-w);margin:0 auto;display:grid;gap:var(--gap)} .contacts-u7 h2{margin:0;font-size:clamp(1.85rem,3.6vw,2.8rem);line-height:1.1} .contacts-u7 .sub{margin:.35rem 0 0;opacity:.9;} .contacts-u7 article,.contacts-u7 li{padding:.85rem;border-radius:var(--radius-sm);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);list-style:none} .contacts-u7 p{margin:0} .contacts-u7 a{text-decoration:none;color:inherit;font-weight:700} .contacts-u7 .pulse{margin-top:.8rem;padding:1rem;border-radius:var(--radius-lg);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);animation:contacts-u7Pulse 2.8s ease-in-out infinite} @keyframes contacts-u7Pulse{0%,100%{transform:scale(1)}50%{transform:scale(1.01)}} .contacts-u7 article{transition:transform var(--anim-duration) var(--anim-ease),box-shadow var(--anim-duration) var(--anim-ease)} .contacts-u7 article:hover{transform:translateY(-4px);box-shadow:var(--shadow-md)} @media (max-width:860px){.contacts-u7 .split,.contacts-u7 .media,.contacts-u7 .grid,.contacts-u7 .cards,.contacts-u7 .bento,.contacts-u7 .foot{grid-template-columns:1fr}}

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

.site-header {
  background-color: 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));
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo-link {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand, #0077b6);
  text-decoration: none;
  letter-spacing: -0.02em;
  transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
}

.logo-link:hover {
  color: var(--brand-contrast, #005f8a);
}

.main-nav {
  display: flex;
  align-items: center;
}

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

.nav-list a {
  text-decoration: none;
  color: var(--fg-on-surface, #333333);
  font-size: var(--font-size-base, 1rem);
  line-height: var(--line-height-base, 1.5);
  padding: 0.5rem 0;
  position: relative;
  transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
}

.nav-list a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--brand, #0077b6);
  transition: width var(--anim-duration, 0.2s) var(--anim-ease, ease);
}

.nav-list a:hover {
  color: var(--brand, #0077b6);
}

.nav-list a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.search-toggle {
  background: none;
  border: 1px solid var(--border-on-surface, #e0e0e0);
  border-radius: var(--radius-md, 8px);
  padding: 0.5rem;
  cursor: pointer;
  color: var(--fg-on-surface, #333333);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--anim-duration, 0.2s) var(--anim-ease, ease), color var(--anim-duration, 0.2s) var(--anim-ease, ease);
}

.search-toggle:hover {
  background-color: var(--btn-ghost-bg-hover, #f0f0f0);
  color: var(--brand, #0077b6);
}

.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 4px;
}

.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--fg-on-surface, #333333);
  border-radius: 2px;
  transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) 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) {
  .header-inner {
    padding: var(--space-y, 0.75rem) var(--space-x, 1rem);
  }

  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay, rgba(0,0,0,0.5));
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 200;
  }

  .main-nav.open {
    display: flex;
  }

  .nav-list {
    flex-direction: column;
    background-color: var(--surface-1, #ffffff);
    padding: 2rem;
    border-radius: var(--radius-xl, 16px);
    box-shadow: var(--shadow-lg, 0 10px 40px rgba(0,0,0,0.15));
    gap: 1rem;
    min-width: 250px;
    text-align: center;
  }

  .nav-list a {
    font-size: 1.2rem;
    padding: 0.75rem 0;
  }

  .burger {
    display: flex;
  }

  .search-toggle {
    display: flex;
  }
}

footer {
      background: #0b1a2e;
      color: #e0e9f0;
      padding: 2.5rem 1.5rem 1.5rem;
      font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
      line-height: 1.6;
    }
    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem 3rem;
    }
    .footer-brand {
      grid-column: 1 / 2;
    }
    .footer-logo {
      font-size: 1.6rem;
      font-weight: 700;
      color: #ffffff;
      text-decoration: none;
      letter-spacing: 0.02em;
    }
    .footer-logo:hover {
      color: #a0c4e8;
    }
    .footer-tagline {
      margin-top: 0.5rem;
      font-size: 0.95rem;
      color: #b0c7da;
    }
    .footer-right {
      grid-column: 2 / 3;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }
    .footer-nav ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 1.2rem 2rem;
    }
    .footer-nav a {
      color: #d0e1f0;
      text-decoration: none;
      font-size: 0.95rem;
      font-weight: 500;
      transition: color 0.2s;
    }
    .footer-nav a:hover {
      color: #ffffff;
      text-decoration: underline;
    }
    .footer-legal {
      display: flex;
      flex-wrap: wrap;
      gap: 1.2rem 2rem;
    }
    .footer-legal a {
      color: #9bb7d4;
      text-decoration: none;
      font-size: 0.9rem;
      transition: color 0.2s;
    }
    .footer-legal a:hover {
      color: #ffffff;
      text-decoration: underline;
    }
    .footer-contact {
      grid-column: 1 / -1;
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem 2.5rem;
      align-items: baseline;
      padding-top: 1.2rem;
      border-top: 1px solid #2a4058;
      font-size: 0.95rem;
    }
    .footer-contact address {
      font-style: normal;
      color: #c8dbea;
    }
    .footer-contact a {
      color: #b0cfe8;
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-contact a:hover {
      color: #ffffff;
      text-decoration: underline;
    }
    .footer-bottom {
      grid-column: 1 / -1;
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
      padding-top: 1.2rem;
      border-top: 1px solid #2a4058;
      font-size: 0.85rem;
      color: #8aa5be;
    }
    .footer-disclaimer {
      margin: 0;
      line-height: 1.5;
    }
    .footer-copy {
      margin: 0;
    }
    @media (max-width: 640px) {
      .footer-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }
      .footer-brand,
      .footer-right {
        grid-column: 1 / -1;
      }
      .footer-nav ul {
        flex-direction: column;
        gap: 0.8rem;
      }
      .footer-legal {
        flex-direction: column;
        gap: 0.8rem;
      }
      .footer-contact {
        flex-direction: column;
        gap: 0.8rem;
      }
    }

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

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

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

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

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

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

.pol-lx2{padding:calc(var(--space-y)*2.8) var(--space-x)}
.pol-lx2 .pol-shell{max-width:var(--max-w);margin:0 auto;display:grid;gap:.75rem}
.pol-lx2 h2{margin:0;font-size:clamp(1.8rem,3.4vw,2.55rem)}
.pol-lx2 .pol-core{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.65rem}
.pol-lx2 .pol-core article{padding:.9rem;border-radius:var(--radius-lg);background:var(--surface-2);border:1px solid var(--border-on-surface)}
.pol-lx2 h3{margin:0 0 .28rem;font-size:1rem}
.pol-lx2 p{margin:0;color:var(--fg-on-surface-light)}
.pol-lx2 .pol-list{list-style:none;margin:0;padding:0;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.58rem}
.pol-lx2 .pol-list li{padding:.85rem;border-radius:var(--radius-md);background:var(--surface-1);border:1px solid var(--border-on-surface)}
@media (max-width:860px){.pol-lx2 .pol-core,.pol-lx2 .pol-list{grid-template-columns:1fr}}

.site-header {
  background-color: 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));
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo-link {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand, #0077b6);
  text-decoration: none;
  letter-spacing: -0.02em;
  transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
}

.logo-link:hover {
  color: var(--brand-contrast, #005f8a);
}

.main-nav {
  display: flex;
  align-items: center;
}

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

.nav-list a {
  text-decoration: none;
  color: var(--fg-on-surface, #333333);
  font-size: var(--font-size-base, 1rem);
  line-height: var(--line-height-base, 1.5);
  padding: 0.5rem 0;
  position: relative;
  transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
}

.nav-list a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--brand, #0077b6);
  transition: width var(--anim-duration, 0.2s) var(--anim-ease, ease);
}

.nav-list a:hover {
  color: var(--brand, #0077b6);
}

.nav-list a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.search-toggle {
  background: none;
  border: 1px solid var(--border-on-surface, #e0e0e0);
  border-radius: var(--radius-md, 8px);
  padding: 0.5rem;
  cursor: pointer;
  color: var(--fg-on-surface, #333333);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--anim-duration, 0.2s) var(--anim-ease, ease), color var(--anim-duration, 0.2s) var(--anim-ease, ease);
}

.search-toggle:hover {
  background-color: var(--btn-ghost-bg-hover, #f0f0f0);
  color: var(--brand, #0077b6);
}

.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 4px;
}

.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--fg-on-surface, #333333);
  border-radius: 2px;
  transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) 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) {
  .header-inner {
    padding: var(--space-y, 0.75rem) var(--space-x, 1rem);
  }

  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay, rgba(0,0,0,0.5));
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 200;
  }

  .main-nav.open {
    display: flex;
  }

  .nav-list {
    flex-direction: column;
    background-color: var(--surface-1, #ffffff);
    padding: 2rem;
    border-radius: var(--radius-xl, 16px);
    box-shadow: var(--shadow-lg, 0 10px 40px rgba(0,0,0,0.15));
    gap: 1rem;
    min-width: 250px;
    text-align: center;
  }

  .nav-list a {
    font-size: 1.2rem;
    padding: 0.75rem 0;
  }

  .burger {
    display: flex;
  }

  .search-toggle {
    display: flex;
  }
}

footer {
      background: #0b1a2e;
      color: #e0e9f0;
      padding: 2.5rem 1.5rem 1.5rem;
      font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
      line-height: 1.6;
    }
    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem 3rem;
    }
    .footer-brand {
      grid-column: 1 / 2;
    }
    .footer-logo {
      font-size: 1.6rem;
      font-weight: 700;
      color: #ffffff;
      text-decoration: none;
      letter-spacing: 0.02em;
    }
    .footer-logo:hover {
      color: #a0c4e8;
    }
    .footer-tagline {
      margin-top: 0.5rem;
      font-size: 0.95rem;
      color: #b0c7da;
    }
    .footer-right {
      grid-column: 2 / 3;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }
    .footer-nav ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 1.2rem 2rem;
    }
    .footer-nav a {
      color: #d0e1f0;
      text-decoration: none;
      font-size: 0.95rem;
      font-weight: 500;
      transition: color 0.2s;
    }
    .footer-nav a:hover {
      color: #ffffff;
      text-decoration: underline;
    }
    .footer-legal {
      display: flex;
      flex-wrap: wrap;
      gap: 1.2rem 2rem;
    }
    .footer-legal a {
      color: #9bb7d4;
      text-decoration: none;
      font-size: 0.9rem;
      transition: color 0.2s;
    }
    .footer-legal a:hover {
      color: #ffffff;
      text-decoration: underline;
    }
    .footer-contact {
      grid-column: 1 / -1;
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem 2.5rem;
      align-items: baseline;
      padding-top: 1.2rem;
      border-top: 1px solid #2a4058;
      font-size: 0.95rem;
    }
    .footer-contact address {
      font-style: normal;
      color: #c8dbea;
    }
    .footer-contact a {
      color: #b0cfe8;
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-contact a:hover {
      color: #ffffff;
      text-decoration: underline;
    }
    .footer-bottom {
      grid-column: 1 / -1;
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
      padding-top: 1.2rem;
      border-top: 1px solid #2a4058;
      font-size: 0.85rem;
      color: #8aa5be;
    }
    .footer-disclaimer {
      margin: 0;
      line-height: 1.5;
    }
    .footer-copy {
      margin: 0;
    }
    @media (max-width: 640px) {
      .footer-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }
      .footer-brand,
      .footer-right {
        grid-column: 1 / -1;
      }
      .footer-nav ul {
        flex-direction: column;
        gap: 0.8rem;
      }
      .footer-legal {
        flex-direction: column;
        gap: 0.8rem;
      }
      .footer-contact {
        flex-direction: column;
        gap: 0.8rem;
      }
    }

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

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

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

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

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

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

.policy-layout-c {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

    .policy-layout-c .wrap {
        max-width: 920px;
        margin: 0 auto;
    }

    .policy-layout-c .section-head {
        margin-bottom: 14px;
    }

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

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

    .policy-layout-c .stack {
        display: grid;
        gap: 10px;
    }

    .policy-layout-c article {
        border: 1px solid rgba(255, 255, 255, .3);
        border-radius: var(--radius-md);
        padding: 12px;
        background: rgba(255, 255, 255, .1);
    }

    .policy-layout-c h3 {
        margin: 0;
        display: flex;
        gap: 8px;
        align-items: center;
    }

    .policy-layout-c h3 span {
        display: inline-grid;
        place-items: center;
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: rgba(255, 255, 255, .18);
    }

    .policy-layout-c article p {
        margin: 8px 0 0;
        opacity: .95;
    }

.site-header {
  background-color: 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));
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo-link {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand, #0077b6);
  text-decoration: none;
  letter-spacing: -0.02em;
  transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
}

.logo-link:hover {
  color: var(--brand-contrast, #005f8a);
}

.main-nav {
  display: flex;
  align-items: center;
}

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

.nav-list a {
  text-decoration: none;
  color: var(--fg-on-surface, #333333);
  font-size: var(--font-size-base, 1rem);
  line-height: var(--line-height-base, 1.5);
  padding: 0.5rem 0;
  position: relative;
  transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
}

.nav-list a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--brand, #0077b6);
  transition: width var(--anim-duration, 0.2s) var(--anim-ease, ease);
}

.nav-list a:hover {
  color: var(--brand, #0077b6);
}

.nav-list a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.search-toggle {
  background: none;
  border: 1px solid var(--border-on-surface, #e0e0e0);
  border-radius: var(--radius-md, 8px);
  padding: 0.5rem;
  cursor: pointer;
  color: var(--fg-on-surface, #333333);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--anim-duration, 0.2s) var(--anim-ease, ease), color var(--anim-duration, 0.2s) var(--anim-ease, ease);
}

.search-toggle:hover {
  background-color: var(--btn-ghost-bg-hover, #f0f0f0);
  color: var(--brand, #0077b6);
}

.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 4px;
}

.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--fg-on-surface, #333333);
  border-radius: 2px;
  transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) 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) {
  .header-inner {
    padding: var(--space-y, 0.75rem) var(--space-x, 1rem);
  }

  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay, rgba(0,0,0,0.5));
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 200;
  }

  .main-nav.open {
    display: flex;
  }

  .nav-list {
    flex-direction: column;
    background-color: var(--surface-1, #ffffff);
    padding: 2rem;
    border-radius: var(--radius-xl, 16px);
    box-shadow: var(--shadow-lg, 0 10px 40px rgba(0,0,0,0.15));
    gap: 1rem;
    min-width: 250px;
    text-align: center;
  }

  .nav-list a {
    font-size: 1.2rem;
    padding: 0.75rem 0;
  }

  .burger {
    display: flex;
  }

  .search-toggle {
    display: flex;
  }
}

footer {
      background: #0b1a2e;
      color: #e0e9f0;
      padding: 2.5rem 1.5rem 1.5rem;
      font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
      line-height: 1.6;
    }
    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem 3rem;
    }
    .footer-brand {
      grid-column: 1 / 2;
    }
    .footer-logo {
      font-size: 1.6rem;
      font-weight: 700;
      color: #ffffff;
      text-decoration: none;
      letter-spacing: 0.02em;
    }
    .footer-logo:hover {
      color: #a0c4e8;
    }
    .footer-tagline {
      margin-top: 0.5rem;
      font-size: 0.95rem;
      color: #b0c7da;
    }
    .footer-right {
      grid-column: 2 / 3;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }
    .footer-nav ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 1.2rem 2rem;
    }
    .footer-nav a {
      color: #d0e1f0;
      text-decoration: none;
      font-size: 0.95rem;
      font-weight: 500;
      transition: color 0.2s;
    }
    .footer-nav a:hover {
      color: #ffffff;
      text-decoration: underline;
    }
    .footer-legal {
      display: flex;
      flex-wrap: wrap;
      gap: 1.2rem 2rem;
    }
    .footer-legal a {
      color: #9bb7d4;
      text-decoration: none;
      font-size: 0.9rem;
      transition: color 0.2s;
    }
    .footer-legal a:hover {
      color: #ffffff;
      text-decoration: underline;
    }
    .footer-contact {
      grid-column: 1 / -1;
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem 2.5rem;
      align-items: baseline;
      padding-top: 1.2rem;
      border-top: 1px solid #2a4058;
      font-size: 0.95rem;
    }
    .footer-contact address {
      font-style: normal;
      color: #c8dbea;
    }
    .footer-contact a {
      color: #b0cfe8;
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-contact a:hover {
      color: #ffffff;
      text-decoration: underline;
    }
    .footer-bottom {
      grid-column: 1 / -1;
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
      padding-top: 1.2rem;
      border-top: 1px solid #2a4058;
      font-size: 0.85rem;
      color: #8aa5be;
    }
    .footer-disclaimer {
      margin: 0;
      line-height: 1.5;
    }
    .footer-copy {
      margin: 0;
    }
    @media (max-width: 640px) {
      .footer-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }
      .footer-brand,
      .footer-right {
        grid-column: 1 / -1;
      }
      .footer-nav ul {
        flex-direction: column;
        gap: 0.8rem;
      }
      .footer-legal {
        flex-direction: column;
        gap: 0.8rem;
      }
      .footer-contact {
        flex-direction: column;
        gap: 0.8rem;
      }
    }

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

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

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

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

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

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

.thank-u1{padding:calc(var(--space-y)*2.9) var(--space-x);background:var(--gradient-hero);color:var(--brand-contrast)} .thank-u1 .shell{max-width:var(--max-w);margin:0 auto;display:grid;gap:var(--gap)} .thank-u1 h2{margin:0;font-size:clamp(1.85rem,3.6vw,2.8rem);line-height:1.1} .thank-u1 .sub{margin:.35rem 0 0;opacity:.9;} .thank-u1 article,.thank-u1 li{padding:.85rem;border-radius:var(--radius-sm);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);list-style:none} .thank-u1 p{margin:0} .thank-u1 a{text-decoration:none;color:inherit;font-weight:700} .thank-u1 .pulse{margin-top:.8rem;padding:1rem;border-radius:var(--radius-lg);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);animation:thank-u1Pulse 2.8s ease-in-out infinite} @keyframes thank-u1Pulse{0%,100%{transform:scale(1)}50%{transform:scale(1.01)}} @media (max-width:860px){.thank-u1 .split,.thank-u1 .media,.thank-u1 .grid,.thank-u1 .cards,.thank-u1 .bento,.thank-u1 .foot{grid-template-columns:1fr}}

.site-header {
  background-color: 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));
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo-link {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand, #0077b6);
  text-decoration: none;
  letter-spacing: -0.02em;
  transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
}

.logo-link:hover {
  color: var(--brand-contrast, #005f8a);
}

.main-nav {
  display: flex;
  align-items: center;
}

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

.nav-list a {
  text-decoration: none;
  color: var(--fg-on-surface, #333333);
  font-size: var(--font-size-base, 1rem);
  line-height: var(--line-height-base, 1.5);
  padding: 0.5rem 0;
  position: relative;
  transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
}

.nav-list a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--brand, #0077b6);
  transition: width var(--anim-duration, 0.2s) var(--anim-ease, ease);
}

.nav-list a:hover {
  color: var(--brand, #0077b6);
}

.nav-list a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.search-toggle {
  background: none;
  border: 1px solid var(--border-on-surface, #e0e0e0);
  border-radius: var(--radius-md, 8px);
  padding: 0.5rem;
  cursor: pointer;
  color: var(--fg-on-surface, #333333);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--anim-duration, 0.2s) var(--anim-ease, ease), color var(--anim-duration, 0.2s) var(--anim-ease, ease);
}

.search-toggle:hover {
  background-color: var(--btn-ghost-bg-hover, #f0f0f0);
  color: var(--brand, #0077b6);
}

.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 4px;
}

.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--fg-on-surface, #333333);
  border-radius: 2px;
  transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) 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) {
  .header-inner {
    padding: var(--space-y, 0.75rem) var(--space-x, 1rem);
  }

  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay, rgba(0,0,0,0.5));
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 200;
  }

  .main-nav.open {
    display: flex;
  }

  .nav-list {
    flex-direction: column;
    background-color: var(--surface-1, #ffffff);
    padding: 2rem;
    border-radius: var(--radius-xl, 16px);
    box-shadow: var(--shadow-lg, 0 10px 40px rgba(0,0,0,0.15));
    gap: 1rem;
    min-width: 250px;
    text-align: center;
  }

  .nav-list a {
    font-size: 1.2rem;
    padding: 0.75rem 0;
  }

  .burger {
    display: flex;
  }

  .search-toggle {
    display: flex;
  }
}

footer {
      background: #0b1a2e;
      color: #e0e9f0;
      padding: 2.5rem 1.5rem 1.5rem;
      font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
      line-height: 1.6;
    }
    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem 3rem;
    }
    .footer-brand {
      grid-column: 1 / 2;
    }
    .footer-logo {
      font-size: 1.6rem;
      font-weight: 700;
      color: #ffffff;
      text-decoration: none;
      letter-spacing: 0.02em;
    }
    .footer-logo:hover {
      color: #a0c4e8;
    }
    .footer-tagline {
      margin-top: 0.5rem;
      font-size: 0.95rem;
      color: #b0c7da;
    }
    .footer-right {
      grid-column: 2 / 3;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }
    .footer-nav ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 1.2rem 2rem;
    }
    .footer-nav a {
      color: #d0e1f0;
      text-decoration: none;
      font-size: 0.95rem;
      font-weight: 500;
      transition: color 0.2s;
    }
    .footer-nav a:hover {
      color: #ffffff;
      text-decoration: underline;
    }
    .footer-legal {
      display: flex;
      flex-wrap: wrap;
      gap: 1.2rem 2rem;
    }
    .footer-legal a {
      color: #9bb7d4;
      text-decoration: none;
      font-size: 0.9rem;
      transition: color 0.2s;
    }
    .footer-legal a:hover {
      color: #ffffff;
      text-decoration: underline;
    }
    .footer-contact {
      grid-column: 1 / -1;
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem 2.5rem;
      align-items: baseline;
      padding-top: 1.2rem;
      border-top: 1px solid #2a4058;
      font-size: 0.95rem;
    }
    .footer-contact address {
      font-style: normal;
      color: #c8dbea;
    }
    .footer-contact a {
      color: #b0cfe8;
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-contact a:hover {
      color: #ffffff;
      text-decoration: underline;
    }
    .footer-bottom {
      grid-column: 1 / -1;
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
      padding-top: 1.2rem;
      border-top: 1px solid #2a4058;
      font-size: 0.85rem;
      color: #8aa5be;
    }
    .footer-disclaimer {
      margin: 0;
      line-height: 1.5;
    }
    .footer-copy {
      margin: 0;
    }
    @media (max-width: 640px) {
      .footer-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }
      .footer-brand,
      .footer-right {
        grid-column: 1 / -1;
      }
      .footer-nav ul {
        flex-direction: column;
        gap: 0.8rem;
      }
      .footer-legal {
        flex-direction: column;
        gap: 0.8rem;
      }
      .footer-contact {
        flex-direction: column;
        gap: 0.8rem;
      }
    }

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

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

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

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

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

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

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

    .nf404-v8__box {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        padding: clamp(28px, 4vw, 46px);
        box-shadow: var(--shadow-md);
    }

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

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

    .nf404-v8 a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 16px;
        border-radius: var(--radius-sm);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        text-decoration: none;
    }