:root {
  --font-family: "Fira Sans", sans-serif;
  --font-size-base: 13.7px;
  --line-height-base: 1.26;

  --max-w: 1060px;
  --space-x: 0.72rem;
  --space-y: 0.57rem;
  --gap: 0.61rem;

  --radius-xl: 0.83rem;
  --radius-lg: 0.5rem;
  --radius-md: 0.32rem;
  --radius-sm: 0.21rem;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.07);
  --shadow-md: 0 4px 14px rgba(0,0,0,0.09);
  --shadow-lg: 0 8px 22px rgba(0,0,0,0.11);

  --overlay: rgba(0, 0, 0, 0.4);
  --anim-duration: 100ms;
  --anim-ease: cubic-bezier(0.4,0,0.2,1);
  --random-number: 2;

  --brand: #2A6B8F;
  --brand-contrast: #FFFFFF;
  --accent: #E67E22;
  --accent-contrast: #FFFFFF;

  --neutral-0: #FFFFFF;
  --neutral-100: #F8FAFC;
  --neutral-300: #CBD5E1;
  --neutral-600: #64748B;
  --neutral-800: #1E293B;
  --neutral-900: #0F172A;

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

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

  --surface-1: #FFFFFF;
  --surface-2: #F1F5F9;
  --fg-on-surface: #1E293B;
  --border-on-surface: #E2E8F0;

  --surface-light: #F8FAFC;
  --fg-on-surface-light: #334155;
  --border-on-surface-light: #E2E8F0;

  --bg-primary: #0EA5E9;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #0284C7;
  --ring: #0EA5E9;

  --bg-accent: #FEF3E7;
  --fg-on-accent: #92400E;
  --bg-accent-hover: #F59E0B;

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

  --gradient-hero: linear-gradient(135deg, #0EA5E9 0%, #2A6B8F 100%);
  --gradient-accent: linear-gradient(135deg, #F59E0B 0%, #E67E22 100%);

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

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--overlay);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: background-color var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    padding: var(--space-y) 0;
}
.header.scrolled {
    background-color: var(--surface-1);
    box-shadow: var(--shadow-md);
    padding: calc(var(--space-y) / 2) 0;
}
.header__container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header__logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
    z-index: 1001;
}
.header__logo:hover {
    color: var(--accent);
}
.header__nav {
    display: flex;
}
.nav__list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav__link {
    color: var(--fg-on-surface-light);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
}
.nav__link:hover,
.nav__link:focus-visible {
    color: var(--brand);
    background-color: var(--btn-ghost-bg-hover);
    outline: none;
}
.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--brand);
    transition: all var(--anim-duration) var(--anim-ease);
    transform: translateX(-50%);
}
.nav__link:hover::after,
.nav__link:focus-visible::after {
    width: 80%;
}
.header__burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}
.burger__line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
.header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
}
.header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
    opacity: 0;
}
.header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg);
}

@media (max-width: 767px) {
    .header__burger {
        display: flex;
    }
    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        transition: right var(--anim-duration) var(--anim-ease);
        padding: 5rem var(--space-x) var(--space-y);
        display: flex;
        align-items: flex-start;
        z-index: 1000;
    }
    .header__nav.active {
        right: 0;
    }
    .nav__list {
        flex-direction: column;
        width: 100%;
        gap: 0.5rem;
    }
    .nav__link {
        display: block;
        padding: 1rem;
        border-radius: var(--radius-md);
        color: var(--fg-on-surface);
    }
    .nav__link:hover,
    .nav__link:focus-visible {
        background-color: var(--btn-ghost-bg-hover);
        color: var(--brand);
    }
    .nav__link::after {
        display: none;
    }
    .header.scrolled .header__nav {
        top: 0;
    }
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    padding: 2.5rem;
    background-color: #f8f9fa;
    color: #333;
    font-family: sans-serif;
    border-top: 1px solid #dee2e6;
  }

  .footer-left, .footer-right {
    flex: 1;
    min-width: 250px;
  }

  .footer-left {
    max-width: 400px;
  }

  .logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #0056b3;
    margin-bottom: 0.5rem;
  }

  .tagline {
    font-style: italic;
    color: #666;
    margin-bottom: 1.5rem;
  }

  .contact-info p {
    margin-bottom: 0.5rem;
    line-height: 1.4;
  }

  .contact-info a {
    color: #0056b3;
    text-decoration: none;
  }

  .contact-info a:hover {
    text-decoration: underline;
  }

  .social-links {
    margin-top: 1.5rem;
  }

  .social-links a {
    color: #555;
    text-decoration: none;
    margin: 0 0.2rem;
  }

  .social-links a:hover {
    color: #0056b3;
    text-decoration: underline;
  }

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

  .footer-nav li {
    margin-bottom: 0.7rem;
  }

  .footer-nav a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
  }

  .footer-nav a:hover {
    color: #0056b3;
    text-decoration: underline;
  }

  .legal-links {
    margin-bottom: 1.2rem;
    font-size: 0.9rem;
  }

  .legal-links a {
    color: #666;
    text-decoration: none;
  }

  .legal-links a:hover {
    color: #0056b3;
    text-decoration: underline;
  }

  .disclaimer {
    font-size: 0.8rem;
    color: #777;
    line-height: 1.4;
    margin-bottom: 1.2rem;
    padding: 0.8rem;
    background-color: #eee;
    border-radius: 4px;
  }

  .copyright {
    font-size: 0.85rem;
    color: #777;
  }

  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      padding: 1.5rem;
    }
    .footer-left, .footer-right {
      max-width: 100%;
    }
  }

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

    .cookie-lv16__shell {
        max-width: 720px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
    }

    .cookie-lv16__meta {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .cookie-lv16__dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--accent);
        box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 20%, transparent);
    }

    .cookie-lv16__shell p {
        margin: 8px 0 0;
        color: var(--fg-muted);
    }

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

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

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

.nflang-v8 {
        position: fixed;
        right: clamp(14px, 2vw, 24px);
        bottom: clamp(14px, 2vw, 24px);
        z-index: 99999;
    }

    .nflang-v8__toggle {
        width: 54px;
        height: 54px;
        border-radius: 50%;
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        font-size: 12px;
        font-weight: 700;
        letter-spacing: .08em;
        cursor: pointer;
        display: grid;
        place-items: center;
        box-shadow: var(--shadow-lg);
    }

    .nflang-v8__list {
        position: absolute;
        right: 0;
        bottom: 62px;
        display: flex;
        flex-direction: column;
        gap: 8px;
        opacity: 0;
        pointer-events: none;
        transform: translateY(10px) scale(0.95);
        transform-origin: bottom right;
        transition: opacity var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
    }

    .nflang-v8__list.open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0) scale(1);
    }

    .nflang-v8__list button,
    .nflang-v8__list a {
        min-width: 54px;
        height: 36px;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        text-decoration: none;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: .06em;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        box-shadow: var(--shadow-sm);
    }

    .nflang-v8__list button:hover,
    .nflang-v8__list a:hover {
        background: var(--accent);
        border-color: transparent;
        color: var(--accent-contrast);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        transform: translateY(-18px);
    }

    .index-recommendations-list__eyebrow {
        margin: 0 0 10px;
        text-transform: uppercase;
        letter-spacing: 0.22em;
        font-size: 12px;
        color: var(--neutral-600);
    }

    .index-recommendations-list__h h2 {
        margin: 0;
        font-size: clamp(28px, 4.6vw, 48px);
        letter-spacing: -0.02em;
        color: var(--fg-on-page);
    }

    .index-recommendations-list__list {
        display: grid;
        gap: 12px;
    }

    .index-recommendations-list__row {
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface);
        background: var(--surface-light);
        box-shadow: var(--shadow-sm);
        overflow: hidden;

        transform: translateY(24px);
    }

    .index-recommendations-list__q {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        cursor: pointer;
        padding: 14px 16px;
        border: 0;
        background: transparent;
        color: var(--fg-on-page);
        font: inherit;
        text-align: left;
    }

    .index-recommendations-list__left {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        min-width: 0;
    }

    .index-recommendations-list__icon {
        width: 36px;
        height: 36px;
        border-radius: 12px;
        background: var(--bg-accent);
        border: 1px solid var(--border-on-surface);
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
    }

    .index-recommendations-list__title {
        font-weight: 900;
        font-size: 14px;
        color: var(--fg-on-page);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 30ch;
    }

    .index-recommendations-list__right {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        flex: 0 0 auto;
    }

    .index-recommendations-list__tag {
        padding: 6px 10px;
        border-radius: 999px;
        background: var(--surface-2);
        border: 1px solid var(--border-on-surface);
        color: var(--neutral-800);
        font-size: 10px;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        white-space: nowrap;
    }

    .index-recommendations-list__chev {
        width: 30px;
        height: 30px;
        border-radius: 999px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-primary);
        border: 1px solid var(--ring);
        color: var(--fg-on-primary);
        font-weight: 900;
        line-height: 1;
    }

    .index-recommendations-list__a {
        display: none;
        padding: 0 16px 14px;
        overflow: hidden;
    }

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

    .index-recommendations-list__actions {
        margin-top: 10px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        flex-wrap: wrap;
    }

    .index-recommendations-list__hint {
        font-size: 12px;
        color: var(--neutral-600);
        text-transform: uppercase;
        letter-spacing: 0.18em;
    }

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

    .index-recommendations-list__cta::after {
        content: '->';
    }

    .index-recommendations-list__cta:hover {
        background: var(--bg-primary-hover);
    }

    @media (max-width: 560px) {
        .index-recommendations-list__tag {
            display: none;
        }
    }

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

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

    .visual-wave-c5__head {
        text-align: center;
        margin-bottom: 1rem;
    }

    .visual-wave-c5__head p {
        margin: 0;
        color: rgba(255, 255, 255, .76);
    }

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

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

    .visual-wave-c5__grid figure {
        margin: 0;
        overflow: hidden;
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .visual-wave-c5__image {
        overflow: hidden;
    }

    .visual-wave-c5__image img {
        display: block;
        width: 100%;
        height: 14rem;
        object-fit: cover;
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .visual-wave-c5__grid figure:hover img {
        transform: scale(1.05);
    }

    .visual-wave-c5__grid figcaption {
        padding: 1rem;
    }

    .visual-wave-c5__grid small {
        color: rgba(255, 255, 255, .76);
    }

    .visual-wave-c5__grid h3 {
        margin: .45rem 0 .35rem;
    }

    .visual-wave-c5__grid p {
        margin: 0;
        color: rgba(255, 255, 255, .84);
    }

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--overlay);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: background-color var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    padding: var(--space-y) 0;
}
.header.scrolled {
    background-color: var(--surface-1);
    box-shadow: var(--shadow-md);
    padding: calc(var(--space-y) / 2) 0;
}
.header__container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header__logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
    z-index: 1001;
}
.header__logo:hover {
    color: var(--accent);
}
.header__nav {
    display: flex;
}
.nav__list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav__link {
    color: var(--fg-on-surface-light);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
}
.nav__link:hover,
.nav__link:focus-visible {
    color: var(--brand);
    background-color: var(--btn-ghost-bg-hover);
    outline: none;
}
.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--brand);
    transition: all var(--anim-duration) var(--anim-ease);
    transform: translateX(-50%);
}
.nav__link:hover::after,
.nav__link:focus-visible::after {
    width: 80%;
}
.header__burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}
.burger__line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
.header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
}
.header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
    opacity: 0;
}
.header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg);
}

@media (max-width: 767px) {
    .header__burger {
        display: flex;
    }
    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        transition: right var(--anim-duration) var(--anim-ease);
        padding: 5rem var(--space-x) var(--space-y);
        display: flex;
        align-items: flex-start;
        z-index: 1000;
    }
    .header__nav.active {
        right: 0;
    }
    .nav__list {
        flex-direction: column;
        width: 100%;
        gap: 0.5rem;
    }
    .nav__link {
        display: block;
        padding: 1rem;
        border-radius: var(--radius-md);
        color: var(--fg-on-surface);
    }
    .nav__link:hover,
    .nav__link:focus-visible {
        background-color: var(--btn-ghost-bg-hover);
        color: var(--brand);
    }
    .nav__link::after {
        display: none;
    }
    .header.scrolled .header__nav {
        top: 0;
    }
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    padding: 2.5rem;
    background-color: #f8f9fa;
    color: #333;
    font-family: sans-serif;
    border-top: 1px solid #dee2e6;
  }

  .footer-left, .footer-right {
    flex: 1;
    min-width: 250px;
  }

  .footer-left {
    max-width: 400px;
  }

  .logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #0056b3;
    margin-bottom: 0.5rem;
  }

  .tagline {
    font-style: italic;
    color: #666;
    margin-bottom: 1.5rem;
  }

  .contact-info p {
    margin-bottom: 0.5rem;
    line-height: 1.4;
  }

  .contact-info a {
    color: #0056b3;
    text-decoration: none;
  }

  .contact-info a:hover {
    text-decoration: underline;
  }

  .social-links {
    margin-top: 1.5rem;
  }

  .social-links a {
    color: #555;
    text-decoration: none;
    margin: 0 0.2rem;
  }

  .social-links a:hover {
    color: #0056b3;
    text-decoration: underline;
  }

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

  .footer-nav li {
    margin-bottom: 0.7rem;
  }

  .footer-nav a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
  }

  .footer-nav a:hover {
    color: #0056b3;
    text-decoration: underline;
  }

  .legal-links {
    margin-bottom: 1.2rem;
    font-size: 0.9rem;
  }

  .legal-links a {
    color: #666;
    text-decoration: none;
  }

  .legal-links a:hover {
    color: #0056b3;
    text-decoration: underline;
  }

  .disclaimer {
    font-size: 0.8rem;
    color: #777;
    line-height: 1.4;
    margin-bottom: 1.2rem;
    padding: 0.8rem;
    background-color: #eee;
    border-radius: 4px;
  }

  .copyright {
    font-size: 0.85rem;
    color: #777;
  }

  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      padding: 1.5rem;
    }
    .footer-left, .footer-right {
      max-width: 100%;
    }
  }

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

    .cookie-lv16__shell {
        max-width: 720px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
    }

    .cookie-lv16__meta {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .cookie-lv16__dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--accent);
        box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 20%, transparent);
    }

    .cookie-lv16__shell p {
        margin: 8px 0 0;
        color: var(--fg-muted);
    }

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

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

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

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

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

    .identity-lv2__head {
        text-align: center;
        margin-bottom: 16px;
    }

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

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

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

    .identity-lv2__grid article {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        padding: var(--space-y) var(--space-x);
    }

    .identity-lv2__grid h3 {
        margin: 0;
    }

    .identity-lv2__grid strong {
        display: block;
        margin: 6px 0;
        color: var(--brand);
    }

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

    .identity-lv2__grid blockquote {
        margin: 0;
        padding: 8px 10px;
        border-left: 3px solid var(--brand);
        background: var(--surface-2);
        color: var(--neutral-800);
    }

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

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

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

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

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

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

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

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

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

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

.mission--light-v6 {

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

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

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

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

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

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

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

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

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

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

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

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

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--overlay);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: background-color var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    padding: var(--space-y) 0;
}
.header.scrolled {
    background-color: var(--surface-1);
    box-shadow: var(--shadow-md);
    padding: calc(var(--space-y) / 2) 0;
}
.header__container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header__logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
    z-index: 1001;
}
.header__logo:hover {
    color: var(--accent);
}
.header__nav {
    display: flex;
}
.nav__list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav__link {
    color: var(--fg-on-surface-light);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
}
.nav__link:hover,
.nav__link:focus-visible {
    color: var(--brand);
    background-color: var(--btn-ghost-bg-hover);
    outline: none;
}
.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--brand);
    transition: all var(--anim-duration) var(--anim-ease);
    transform: translateX(-50%);
}
.nav__link:hover::after,
.nav__link:focus-visible::after {
    width: 80%;
}
.header__burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}
.burger__line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
.header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
}
.header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
    opacity: 0;
}
.header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg);
}

@media (max-width: 767px) {
    .header__burger {
        display: flex;
    }
    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        transition: right var(--anim-duration) var(--anim-ease);
        padding: 5rem var(--space-x) var(--space-y);
        display: flex;
        align-items: flex-start;
        z-index: 1000;
    }
    .header__nav.active {
        right: 0;
    }
    .nav__list {
        flex-direction: column;
        width: 100%;
        gap: 0.5rem;
    }
    .nav__link {
        display: block;
        padding: 1rem;
        border-radius: var(--radius-md);
        color: var(--fg-on-surface);
    }
    .nav__link:hover,
    .nav__link:focus-visible {
        background-color: var(--btn-ghost-bg-hover);
        color: var(--brand);
    }
    .nav__link::after {
        display: none;
    }
    .header.scrolled .header__nav {
        top: 0;
    }
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    padding: 2.5rem;
    background-color: #f8f9fa;
    color: #333;
    font-family: sans-serif;
    border-top: 1px solid #dee2e6;
  }

  .footer-left, .footer-right {
    flex: 1;
    min-width: 250px;
  }

  .footer-left {
    max-width: 400px;
  }

  .logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #0056b3;
    margin-bottom: 0.5rem;
  }

  .tagline {
    font-style: italic;
    color: #666;
    margin-bottom: 1.5rem;
  }

  .contact-info p {
    margin-bottom: 0.5rem;
    line-height: 1.4;
  }

  .contact-info a {
    color: #0056b3;
    text-decoration: none;
  }

  .contact-info a:hover {
    text-decoration: underline;
  }

  .social-links {
    margin-top: 1.5rem;
  }

  .social-links a {
    color: #555;
    text-decoration: none;
    margin: 0 0.2rem;
  }

  .social-links a:hover {
    color: #0056b3;
    text-decoration: underline;
  }

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

  .footer-nav li {
    margin-bottom: 0.7rem;
  }

  .footer-nav a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
  }

  .footer-nav a:hover {
    color: #0056b3;
    text-decoration: underline;
  }

  .legal-links {
    margin-bottom: 1.2rem;
    font-size: 0.9rem;
  }

  .legal-links a {
    color: #666;
    text-decoration: none;
  }

  .legal-links a:hover {
    color: #0056b3;
    text-decoration: underline;
  }

  .disclaimer {
    font-size: 0.8rem;
    color: #777;
    line-height: 1.4;
    margin-bottom: 1.2rem;
    padding: 0.8rem;
    background-color: #eee;
    border-radius: 4px;
  }

  .copyright {
    font-size: 0.85rem;
    color: #777;
  }

  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      padding: 1.5rem;
    }
    .footer-left, .footer-right {
      max-width: 100%;
    }
  }

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

    .cookie-lv16__shell {
        max-width: 720px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
    }

    .cookie-lv16__meta {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .cookie-lv16__dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--accent);
        box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 20%, transparent);
    }

    .cookie-lv16__shell p {
        margin: 8px 0 0;
        color: var(--fg-muted);
    }

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

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

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

.index-feedback-slider {
        background: radial-gradient(circle at 15% 25%, rgba(255, 255, 255, 0.65), transparent 60%), linear-gradient(135deg, rgba(212, 165, 165, 0.55), rgba(248, 225, 231, 0.9)), var(--gradient-hero);
        color: var(--fg-on-primary);
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 40px);
        overflow: hidden;
    }

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

    .index-feedback-slider__h {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        gap: 16px;
        margin-bottom: clamp(20px, 5vw, 44px);

        transform: translateY(-18px);
    }

    .index-feedback-slider__eyebrow {
        margin: 0 0 10px;
        text-transform: uppercase;
        letter-spacing: 0.22em;
        font-size: 12px;
        color: rgba(58, 46, 61, 0.72);
    }

    .index-feedback-slider__h h2 {
        margin: 0;
        font-size: clamp(26px, 4.2vw, 42px);
        letter-spacing: -0.02em;
    }

    .index-feedback-slider__controls {
        display: flex;
        gap: 10px;
        flex: 0 0 auto;
    }

    .index-feedback-slider__btn {
        border: 1px solid rgba(58, 46, 61, 0.18);
        background: rgba(255, 255, 255, 0.55);
        color: var(--fg-on-page);
        border-radius: 999px;
        padding: 10px 14px;
        cursor: pointer;
        box-shadow: var(--shadow-sm);
        font-weight: 700;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        font-size: 11px;
        transition: transform var(--anim-duration) var(--anim-ease);
        backdrop-filter: blur(10px);
    }

    .index-feedback-slider__btn:hover {
        transform: translateY(-2px);
    }

    .index-feedback-slider__track {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: minmax(260px, 340px);
        gap: 16px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding: 6px 2px 10px;
        
    }

    .index-feedback-slider__card {
        scroll-snap-align: start;
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, 0.62);
        border: 1px solid rgba(58, 46, 61, 0.12);
        box-shadow: var(--shadow-sm);
        padding: 18px 18px 16px;

        transform: translateY(24px);
        backdrop-filter: blur(10px);
    }

    .index-feedback-slider__bar {
        display: flex;
        align-items: center;
        gap: 10px;
        justify-content: space-between;
        margin-bottom: 12px;
    }

    .index-feedback-slider__stars {
        color: var(--accent);
        letter-spacing: 0.08em;
        font-size: 24px;
        flex: 0 0 auto;
    }

    .index-feedback-slider__score {
        font-size: 12px;
        font-weight: 800;
        color: var(--fg-on-page);
        flex: 0 0 auto;
    }

    .index-feedback-slider__chip {
        margin-left: auto;
        padding: 6px 10px;
        border-radius: 999px;
        background: var(--bg-accent);
        border: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-accent);
        font-size: 10px;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        flex: 0 0 auto;
    }

    .index-feedback-slider__quote {
        margin: 0 0 14px;
        color: rgba(58, 46, 61, 0.88);
        font-size: 14px;
        line-height: 1.65;
    }

    .index-feedback-slider__who {
        display: flex;
        align-items: center;
        gap: 10px;
        padding-top: 10px;
        border-top: 1px solid rgba(58, 46, 61, 0.12);
    }

    .index-feedback-slider__avatar {
        width: 38px;
        height: 38px;
        border-radius: 14px;
        background: var(--bg-page);
        border: 1px solid var(--border-on-surface);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        flex: 0 0 auto;
    }

    .index-feedback-slider__who h3 {
        margin: 0;
        font-size: 14px;
        font-weight: 800;
        color: var(--fg-on-page);
    }

    .index-feedback-slider__who p {
        margin: 2px 0 0;
        font-size: 12px;
        color: rgba(58, 46, 61, 0.7);
    }

    @media (max-width: 560px) {
        .index-feedback-slider__h {
            flex-direction: column;
            align-items: flex-start;
        }
    }

.capabilities-light-alt {

        background: var(--bg-alt);
        color: var(--fg-on-alt);
        padding: clamp(60px, 8vw, 100px) clamp(16px, 3vw, 40px);
    }

    .capabilities-light-alt .capabilities-light-alt__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .capabilities-light-alt .capabilities-light-alt__h {
        text-align: center;
        margin-bottom: clamp(40px, 6vw, 72px);

    }

    .capabilities-light-alt h2 {
        font-size: clamp(32px, 5vw, 48px);
        font-weight: 800;
        margin: 0 0 1rem;
    }

    .capabilities-light-alt .capabilities-light-alt__subtitle {
        font-size: clamp(16px, 2vw, 20px);
        margin: 0;
        color: var(--neutral-600);
    }

    .capabilities-light-alt .capabilities-light-alt__steps {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
        gap: clamp(24px, 4vw, 48px);
        position: relative;
    }

    .capabilities-light-alt .capabilities-light-alt__step {
        position: relative;

        transform: translateY(30px);
    }

    .capabilities-light-alt .capabilities-light-alt__number {
        width: 56px;
        height: 56px;
        background: var(--brand);
        color: var(--fg-on-primary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        font-weight: 900;
        margin: 0 auto 1.5rem;
        box-shadow: var(--shadow-md);
        position: relative;
        z-index: 2;
    }

    .capabilities-light-alt .capabilities-light-alt__number::before {
        content: '';
        position: absolute;
        inset: -6px;
        border-radius: 50%;
        background: var(--brand);
        opacity: 0.2;
        animation: ripple 2s ease-out infinite;
    }

    @keyframes ripple {
        0% {
            transform: scale(1);
            opacity: 0.2;
        }
        100% {
            transform: scale(1.5);

        }
    }

    .capabilities-light-alt .capabilities-light-alt__box {
        background: var(--surface-1);
        border: 2px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        padding: clamp(24px, 3vw, 32px);
        text-align: center;
        position: relative;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .capabilities-light-alt .capabilities-light-alt__step:hover .capabilities-light-alt__box {
        border-color: var(--brand);
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
    }

    .capabilities-light-alt .capabilities-light-alt__box h3 {
        font-size: clamp(20px, 2.5vw, 24px);
        font-weight: 700;
        margin: 0 0 1rem;
        color: var(--fg-on-surface);
    }

    .capabilities-light-alt .capabilities-light-alt__box p {
        margin: 0;
        color: var(--neutral-600);
        line-height: var(--line-height-base);
    }

    .capabilities-light-alt .capabilities-light-alt__arrow {
        position: absolute;
        bottom: -32px;
        left: 50%;
        transform: translateX(-50%) rotate(90deg);
        font-size: 32px;
        color: var(--brand);
        opacity: 0.5;
    }

    .capabilities-light-alt .capabilities-light-alt__step:last-child .capabilities-light-alt__arrow {
        display: none;
    }

    @media (min-width: 768px) {
        .capabilities-light-alt .capabilities-light-alt__arrow {
            bottom: auto;
            top: 50%;
            left: auto;
            right: -40px;
            transform: translateY(-50%) rotate(0deg);
        }
    }

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

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

    .nfsocial-v9__head {
        margin-bottom: 14px;
    }

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

    .nfsocial-v9__head p {
        margin: 10px 0 0;
        opacity: .88;
    }

    .nfsocial-v9__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 12px;
    }

    .nfsocial-v9__grid article {
        border-radius: var(--radius-xl);
        border: 1px solid rgba(255, 255, 255, .18);
        background: rgba(255, 255, 255, .1);
        padding: 14px;
        display: grid;
        gap: 6px;
    }

    .nfsocial-v9__grid span {
        opacity: .9;
        font-size: .85rem;
    }

    .nfsocial-v9__grid strong {
        font-size: clamp(18px, 2.4vw, 28px);
    }

    .nfsocial-v9__grid p {
        margin: 0;
        opacity: .9;
    }

    .nfsocial-v9__grid h3 {
        margin: 6px 0 0;
        font-size: 1rem;
    }

    .nfsocial-v9__grid em {
        font-style: normal;
        opacity: .86;
    }

.hiw-panels-l4 {
        padding: clamp(3.2rem, 7vw, 5.7rem) var(--space-x);
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

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

    .hiw-panels-l4__head {
        margin-bottom: 1.2rem;
        display: flex;
        justify-content: space-between;
        gap: 1rem;
        align-items: end;
        flex-wrap: wrap;
    }

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

    .hiw-panels-l4__head p {
        margin: 0;
        color: var(--neutral-600);
        max-width: 32rem;
    }

    .hiw-panels-l4__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
        gap: var(--gap);
    }

    .hiw-panels-l4__grid article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
        box-shadow: var(--shadow-sm);
    }

    .hiw-panels-l4__badge {
        display: inline-flex;
        padding: .35rem .65rem;
        border-radius: 999px;
        background: var(--surface-2);
        color: var(--brand);
        font-weight: 700;
    }

    .hiw-panels-l4__grid h3 {
        margin: .75rem 0 .35rem;
    }

    .hiw-panels-l4__grid p {
        margin: 0;
        color: var(--neutral-600);
    }

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--overlay);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: background-color var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    padding: var(--space-y) 0;
}
.header.scrolled {
    background-color: var(--surface-1);
    box-shadow: var(--shadow-md);
    padding: calc(var(--space-y) / 2) 0;
}
.header__container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header__logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
    z-index: 1001;
}
.header__logo:hover {
    color: var(--accent);
}
.header__nav {
    display: flex;
}
.nav__list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav__link {
    color: var(--fg-on-surface-light);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
}
.nav__link:hover,
.nav__link:focus-visible {
    color: var(--brand);
    background-color: var(--btn-ghost-bg-hover);
    outline: none;
}
.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--brand);
    transition: all var(--anim-duration) var(--anim-ease);
    transform: translateX(-50%);
}
.nav__link:hover::after,
.nav__link:focus-visible::after {
    width: 80%;
}
.header__burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}
.burger__line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
.header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
}
.header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
    opacity: 0;
}
.header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg);
}

@media (max-width: 767px) {
    .header__burger {
        display: flex;
    }
    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        transition: right var(--anim-duration) var(--anim-ease);
        padding: 5rem var(--space-x) var(--space-y);
        display: flex;
        align-items: flex-start;
        z-index: 1000;
    }
    .header__nav.active {
        right: 0;
    }
    .nav__list {
        flex-direction: column;
        width: 100%;
        gap: 0.5rem;
    }
    .nav__link {
        display: block;
        padding: 1rem;
        border-radius: var(--radius-md);
        color: var(--fg-on-surface);
    }
    .nav__link:hover,
    .nav__link:focus-visible {
        background-color: var(--btn-ghost-bg-hover);
        color: var(--brand);
    }
    .nav__link::after {
        display: none;
    }
    .header.scrolled .header__nav {
        top: 0;
    }
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    padding: 2.5rem;
    background-color: #f8f9fa;
    color: #333;
    font-family: sans-serif;
    border-top: 1px solid #dee2e6;
  }

  .footer-left, .footer-right {
    flex: 1;
    min-width: 250px;
  }

  .footer-left {
    max-width: 400px;
  }

  .logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #0056b3;
    margin-bottom: 0.5rem;
  }

  .tagline {
    font-style: italic;
    color: #666;
    margin-bottom: 1.5rem;
  }

  .contact-info p {
    margin-bottom: 0.5rem;
    line-height: 1.4;
  }

  .contact-info a {
    color: #0056b3;
    text-decoration: none;
  }

  .contact-info a:hover {
    text-decoration: underline;
  }

  .social-links {
    margin-top: 1.5rem;
  }

  .social-links a {
    color: #555;
    text-decoration: none;
    margin: 0 0.2rem;
  }

  .social-links a:hover {
    color: #0056b3;
    text-decoration: underline;
  }

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

  .footer-nav li {
    margin-bottom: 0.7rem;
  }

  .footer-nav a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
  }

  .footer-nav a:hover {
    color: #0056b3;
    text-decoration: underline;
  }

  .legal-links {
    margin-bottom: 1.2rem;
    font-size: 0.9rem;
  }

  .legal-links a {
    color: #666;
    text-decoration: none;
  }

  .legal-links a:hover {
    color: #0056b3;
    text-decoration: underline;
  }

  .disclaimer {
    font-size: 0.8rem;
    color: #777;
    line-height: 1.4;
    margin-bottom: 1.2rem;
    padding: 0.8rem;
    background-color: #eee;
    border-radius: 4px;
  }

  .copyright {
    font-size: 0.85rem;
    color: #777;
  }

  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      padding: 1.5rem;
    }
    .footer-left, .footer-right {
      max-width: 100%;
    }
  }

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

    .cookie-lv16__shell {
        max-width: 720px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
    }

    .cookie-lv16__meta {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .cookie-lv16__dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--accent);
        box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 20%, transparent);
    }

    .cookie-lv16__shell p {
        margin: 8px 0 0;
        color: var(--fg-muted);
    }

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

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

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

.nftouch-v11 {
        padding: clamp(56px, 8vw, 96px) 16px;
        background: linear-gradient(145deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
    }

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

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

    .nftouch-v11__lead {
        margin: 10px 0 14px;
        opacity: .92;
    }

    .nftouch-v11__lane {
        display: flex;
        gap: 10px;
        overflow-x: auto;
        padding-bottom: 6px;
    }

    .nftouch-v11__lane article {
        min-width: 250px;
        border: 1px solid rgba(255, 255, 255, .28);
        border-radius: var(--radius-lg);
        background: rgba(255, 255, 255, .1);
        padding: 12px;
    }

    .nftouch-v11__lane h3 {
        margin: 0 0 8px;
    }

    .nftouch-v11__lane p {
        margin: 0 0 8px;
    }

    .nftouch-v11__lane a {
        color: var(--fg-on-primary);
        text-decoration: underline;
    }

    .nftouch-v11__main {
        display: inline-block;
        text-decoration: none;
        padding: 10px 14px;
        border-radius: 10px;
        background: var(--fg-on-primary);
        color: var(--fg-on-accent);
    }
    .nftouch-v11__form {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: var(--gap);
    }

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

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

    .map-panel-l5__top {
        display: flex;
        justify-content: space-between;
        align-items: end;
        gap: 1rem;
        flex-wrap: wrap;
        margin-bottom: 1rem;
    }

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

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

    .map-panel-l5__tags {
        color: var(--brand);
    }

    .map-panel-l5__grid {
        display: grid;
        grid-template-columns: 1.15fr .85fr;
        gap: 1rem;
    }

    .map-panel-l5__embed {
        overflow: hidden;
        border-radius: var(--radius-xl);
        border: 1px solid var(--border-on-surface-light);
    }

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

    .map-panel-l5__list {
        display: grid;
        gap: .75rem;
    }

    .map-panel-l5__list div {
        padding: .95rem;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
    }

    .map-panel-l5__list span {
        display: block;
        margin-top: .35rem;
        color: var(--neutral-600);
    }

    .map-panel-l5__list a {
        color: var(--link);
        text-decoration: none;
    }
    .map-panel-l5__list a:hover {
        color: var(--link-hover);
        text-decoration: underline;
    }

    @media (max-width: 840px) {
        .map-panel-l5__grid {
            grid-template-columns: 1fr;
        }
    }

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

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

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

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

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

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

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

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

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

.contacts-fresh-v6 {
        padding: calc(var(--space-y) * 2.8) var(--space-x);
        background: var(--surface-2);
        color: var(--fg-on-surface);
    }

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

    .contacts-fresh-v6 h2 {
        margin: 0;
        font-size: clamp(1.8rem, 3vw, 2.5rem);
    }

    .contacts-fresh-v6 .columns {
        display: flex;
        gap: var(--gap);
        overflow: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: .2rem;
    }

    .contacts-fresh-v6 article {
        min-width: 260px;
        scroll-snap-align: start;
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
    }

    .contacts-fresh-v6 h3 {
        margin: 0 0 .5rem;
    }

    .contacts-fresh-v6 p {
        margin: 0;
    }

    .contacts-fresh-v6 .hint {
        margin: .4rem 0 .8rem;
        color: var(--fg-on-surface-light);
    }

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

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--overlay);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: background-color var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    padding: var(--space-y) 0;
}
.header.scrolled {
    background-color: var(--surface-1);
    box-shadow: var(--shadow-md);
    padding: calc(var(--space-y) / 2) 0;
}
.header__container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header__logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
    z-index: 1001;
}
.header__logo:hover {
    color: var(--accent);
}
.header__nav {
    display: flex;
}
.nav__list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav__link {
    color: var(--fg-on-surface-light);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
}
.nav__link:hover,
.nav__link:focus-visible {
    color: var(--brand);
    background-color: var(--btn-ghost-bg-hover);
    outline: none;
}
.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--brand);
    transition: all var(--anim-duration) var(--anim-ease);
    transform: translateX(-50%);
}
.nav__link:hover::after,
.nav__link:focus-visible::after {
    width: 80%;
}
.header__burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}
.burger__line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
.header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
}
.header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
    opacity: 0;
}
.header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg);
}

@media (max-width: 767px) {
    .header__burger {
        display: flex;
    }
    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        transition: right var(--anim-duration) var(--anim-ease);
        padding: 5rem var(--space-x) var(--space-y);
        display: flex;
        align-items: flex-start;
        z-index: 1000;
    }
    .header__nav.active {
        right: 0;
    }
    .nav__list {
        flex-direction: column;
        width: 100%;
        gap: 0.5rem;
    }
    .nav__link {
        display: block;
        padding: 1rem;
        border-radius: var(--radius-md);
        color: var(--fg-on-surface);
    }
    .nav__link:hover,
    .nav__link:focus-visible {
        background-color: var(--btn-ghost-bg-hover);
        color: var(--brand);
    }
    .nav__link::after {
        display: none;
    }
    .header.scrolled .header__nav {
        top: 0;
    }
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    padding: 2.5rem;
    background-color: #f8f9fa;
    color: #333;
    font-family: sans-serif;
    border-top: 1px solid #dee2e6;
  }

  .footer-left, .footer-right {
    flex: 1;
    min-width: 250px;
  }

  .footer-left {
    max-width: 400px;
  }

  .logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #0056b3;
    margin-bottom: 0.5rem;
  }

  .tagline {
    font-style: italic;
    color: #666;
    margin-bottom: 1.5rem;
  }

  .contact-info p {
    margin-bottom: 0.5rem;
    line-height: 1.4;
  }

  .contact-info a {
    color: #0056b3;
    text-decoration: none;
  }

  .contact-info a:hover {
    text-decoration: underline;
  }

  .social-links {
    margin-top: 1.5rem;
  }

  .social-links a {
    color: #555;
    text-decoration: none;
    margin: 0 0.2rem;
  }

  .social-links a:hover {
    color: #0056b3;
    text-decoration: underline;
  }

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

  .footer-nav li {
    margin-bottom: 0.7rem;
  }

  .footer-nav a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
  }

  .footer-nav a:hover {
    color: #0056b3;
    text-decoration: underline;
  }

  .legal-links {
    margin-bottom: 1.2rem;
    font-size: 0.9rem;
  }

  .legal-links a {
    color: #666;
    text-decoration: none;
  }

  .legal-links a:hover {
    color: #0056b3;
    text-decoration: underline;
  }

  .disclaimer {
    font-size: 0.8rem;
    color: #777;
    line-height: 1.4;
    margin-bottom: 1.2rem;
    padding: 0.8rem;
    background-color: #eee;
    border-radius: 4px;
  }

  .copyright {
    font-size: 0.85rem;
    color: #777;
  }

  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      padding: 1.5rem;
    }
    .footer-left, .footer-right {
      max-width: 100%;
    }
  }

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

    .cookie-lv16__shell {
        max-width: 720px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
    }

    .cookie-lv16__meta {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .cookie-lv16__dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--accent);
        box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 20%, transparent);
    }

    .cookie-lv16__shell p {
        margin: 8px 0 0;
        color: var(--fg-muted);
    }

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

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

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

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

    .policy-layout-a .wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

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

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

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

    .policy-layout-a .grid {
        display: grid;
        gap: var(--gap);
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

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

    .policy-layout-a .meta {
        margin: 0;
        color: var(--brand);
        font-weight: 600;
    }

    .policy-layout-a h3 {
        margin: 8px 0;
    }

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

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--overlay);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: background-color var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    padding: var(--space-y) 0;
}
.header.scrolled {
    background-color: var(--surface-1);
    box-shadow: var(--shadow-md);
    padding: calc(var(--space-y) / 2) 0;
}
.header__container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header__logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
    z-index: 1001;
}
.header__logo:hover {
    color: var(--accent);
}
.header__nav {
    display: flex;
}
.nav__list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav__link {
    color: var(--fg-on-surface-light);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
}
.nav__link:hover,
.nav__link:focus-visible {
    color: var(--brand);
    background-color: var(--btn-ghost-bg-hover);
    outline: none;
}
.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--brand);
    transition: all var(--anim-duration) var(--anim-ease);
    transform: translateX(-50%);
}
.nav__link:hover::after,
.nav__link:focus-visible::after {
    width: 80%;
}
.header__burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}
.burger__line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
.header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
}
.header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
    opacity: 0;
}
.header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg);
}

@media (max-width: 767px) {
    .header__burger {
        display: flex;
    }
    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        transition: right var(--anim-duration) var(--anim-ease);
        padding: 5rem var(--space-x) var(--space-y);
        display: flex;
        align-items: flex-start;
        z-index: 1000;
    }
    .header__nav.active {
        right: 0;
    }
    .nav__list {
        flex-direction: column;
        width: 100%;
        gap: 0.5rem;
    }
    .nav__link {
        display: block;
        padding: 1rem;
        border-radius: var(--radius-md);
        color: var(--fg-on-surface);
    }
    .nav__link:hover,
    .nav__link:focus-visible {
        background-color: var(--btn-ghost-bg-hover);
        color: var(--brand);
    }
    .nav__link::after {
        display: none;
    }
    .header.scrolled .header__nav {
        top: 0;
    }
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    padding: 2.5rem;
    background-color: #f8f9fa;
    color: #333;
    font-family: sans-serif;
    border-top: 1px solid #dee2e6;
  }

  .footer-left, .footer-right {
    flex: 1;
    min-width: 250px;
  }

  .footer-left {
    max-width: 400px;
  }

  .logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #0056b3;
    margin-bottom: 0.5rem;
  }

  .tagline {
    font-style: italic;
    color: #666;
    margin-bottom: 1.5rem;
  }

  .contact-info p {
    margin-bottom: 0.5rem;
    line-height: 1.4;
  }

  .contact-info a {
    color: #0056b3;
    text-decoration: none;
  }

  .contact-info a:hover {
    text-decoration: underline;
  }

  .social-links {
    margin-top: 1.5rem;
  }

  .social-links a {
    color: #555;
    text-decoration: none;
    margin: 0 0.2rem;
  }

  .social-links a:hover {
    color: #0056b3;
    text-decoration: underline;
  }

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

  .footer-nav li {
    margin-bottom: 0.7rem;
  }

  .footer-nav a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
  }

  .footer-nav a:hover {
    color: #0056b3;
    text-decoration: underline;
  }

  .legal-links {
    margin-bottom: 1.2rem;
    font-size: 0.9rem;
  }

  .legal-links a {
    color: #666;
    text-decoration: none;
  }

  .legal-links a:hover {
    color: #0056b3;
    text-decoration: underline;
  }

  .disclaimer {
    font-size: 0.8rem;
    color: #777;
    line-height: 1.4;
    margin-bottom: 1.2rem;
    padding: 0.8rem;
    background-color: #eee;
    border-radius: 4px;
  }

  .copyright {
    font-size: 0.85rem;
    color: #777;
  }

  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      padding: 1.5rem;
    }
    .footer-left, .footer-right {
      max-width: 100%;
    }
  }

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

    .cookie-lv16__shell {
        max-width: 720px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
    }

    .cookie-lv16__meta {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .cookie-lv16__dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--accent);
        box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 20%, transparent);
    }

    .cookie-lv16__shell p {
        margin: 8px 0 0;
        color: var(--fg-muted);
    }

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

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

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

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

    .terms-layout-e .wrap {
        max-width: 900px;
        margin: 0 auto;
    }

    .terms-layout-e .section-head {
        margin-bottom: 14px;
        text-align: center;
    }

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

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

    .terms-layout-e .rows {
        display: grid;
        gap: 10px;
    }

    .terms-layout-e article {
        border-left: 4px solid var(--brand);
        background: var(--surface-1);
        border-radius: var(--radius-sm);
        padding: 12px 12px 12px 14px;
        box-shadow: var(--shadow-sm);
    }

    .terms-layout-e .head h3 {
        margin: 0 0 8px;
    }

    .terms-layout-e h4 {
        margin: 10px 0 6px;
    }

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

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--overlay);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: background-color var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    padding: var(--space-y) 0;
}
.header.scrolled {
    background-color: var(--surface-1);
    box-shadow: var(--shadow-md);
    padding: calc(var(--space-y) / 2) 0;
}
.header__container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header__logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
    z-index: 1001;
}
.header__logo:hover {
    color: var(--accent);
}
.header__nav {
    display: flex;
}
.nav__list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav__link {
    color: var(--fg-on-surface-light);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
}
.nav__link:hover,
.nav__link:focus-visible {
    color: var(--brand);
    background-color: var(--btn-ghost-bg-hover);
    outline: none;
}
.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--brand);
    transition: all var(--anim-duration) var(--anim-ease);
    transform: translateX(-50%);
}
.nav__link:hover::after,
.nav__link:focus-visible::after {
    width: 80%;
}
.header__burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}
.burger__line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
.header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
}
.header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
    opacity: 0;
}
.header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg);
}

@media (max-width: 767px) {
    .header__burger {
        display: flex;
    }
    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        transition: right var(--anim-duration) var(--anim-ease);
        padding: 5rem var(--space-x) var(--space-y);
        display: flex;
        align-items: flex-start;
        z-index: 1000;
    }
    .header__nav.active {
        right: 0;
    }
    .nav__list {
        flex-direction: column;
        width: 100%;
        gap: 0.5rem;
    }
    .nav__link {
        display: block;
        padding: 1rem;
        border-radius: var(--radius-md);
        color: var(--fg-on-surface);
    }
    .nav__link:hover,
    .nav__link:focus-visible {
        background-color: var(--btn-ghost-bg-hover);
        color: var(--brand);
    }
    .nav__link::after {
        display: none;
    }
    .header.scrolled .header__nav {
        top: 0;
    }
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    padding: 2.5rem;
    background-color: #f8f9fa;
    color: #333;
    font-family: sans-serif;
    border-top: 1px solid #dee2e6;
  }

  .footer-left, .footer-right {
    flex: 1;
    min-width: 250px;
  }

  .footer-left {
    max-width: 400px;
  }

  .logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #0056b3;
    margin-bottom: 0.5rem;
  }

  .tagline {
    font-style: italic;
    color: #666;
    margin-bottom: 1.5rem;
  }

  .contact-info p {
    margin-bottom: 0.5rem;
    line-height: 1.4;
  }

  .contact-info a {
    color: #0056b3;
    text-decoration: none;
  }

  .contact-info a:hover {
    text-decoration: underline;
  }

  .social-links {
    margin-top: 1.5rem;
  }

  .social-links a {
    color: #555;
    text-decoration: none;
    margin: 0 0.2rem;
  }

  .social-links a:hover {
    color: #0056b3;
    text-decoration: underline;
  }

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

  .footer-nav li {
    margin-bottom: 0.7rem;
  }

  .footer-nav a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
  }

  .footer-nav a:hover {
    color: #0056b3;
    text-decoration: underline;
  }

  .legal-links {
    margin-bottom: 1.2rem;
    font-size: 0.9rem;
  }

  .legal-links a {
    color: #666;
    text-decoration: none;
  }

  .legal-links a:hover {
    color: #0056b3;
    text-decoration: underline;
  }

  .disclaimer {
    font-size: 0.8rem;
    color: #777;
    line-height: 1.4;
    margin-bottom: 1.2rem;
    padding: 0.8rem;
    background-color: #eee;
    border-radius: 4px;
  }

  .copyright {
    font-size: 0.85rem;
    color: #777;
  }

  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      padding: 1.5rem;
    }
    .footer-left, .footer-right {
      max-width: 100%;
    }
  }

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

    .cookie-lv16__shell {
        max-width: 720px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
    }

    .cookie-lv16__meta {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .cookie-lv16__dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--accent);
        box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 20%, transparent);
    }

    .cookie-lv16__shell p {
        margin: 8px 0 0;
        color: var(--fg-muted);
    }

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

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

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

.thank-mode-e {
        padding: clamp(58px, 10vw, 114px) 18px;
        background: repeating-linear-gradient(135deg, var(--bg-alt), var(--bg-alt) 16px, var(--neutral-0) 16px, var(--neutral-0) 32px);
        color: var(--fg-on-page);
    }

    .thank-mode-e .wrap {
        max-width: 720px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(28px, 4vw, 42px);
        background: var(--surface-1);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-md);
    }

    .thank-mode-e h1 {
        margin: 0;
        font-size: clamp(32px, 5vw, 52px);
    }

    .thank-mode-e p {
        margin: 10px 0 0;
        color: var(--neutral-600);
    }

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

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--overlay);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: background-color var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    padding: var(--space-y) 0;
}
.header.scrolled {
    background-color: var(--surface-1);
    box-shadow: var(--shadow-md);
    padding: calc(var(--space-y) / 2) 0;
}
.header__container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header__logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
    z-index: 1001;
}
.header__logo:hover {
    color: var(--accent);
}
.header__nav {
    display: flex;
}
.nav__list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}
.nav__link {
    color: var(--fg-on-surface-light);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    position: relative;
}
.nav__link:hover,
.nav__link:focus-visible {
    color: var(--brand);
    background-color: var(--btn-ghost-bg-hover);
    outline: none;
}
.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--brand);
    transition: all var(--anim-duration) var(--anim-ease);
    transform: translateX(-50%);
}
.nav__link:hover::after,
.nav__link:focus-visible::after {
    width: 80%;
}
.header__burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}
.burger__line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
.header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
}
.header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
    opacity: 0;
}
.header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg);
}

@media (max-width: 767px) {
    .header__burger {
        display: flex;
    }
    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        transition: right var(--anim-duration) var(--anim-ease);
        padding: 5rem var(--space-x) var(--space-y);
        display: flex;
        align-items: flex-start;
        z-index: 1000;
    }
    .header__nav.active {
        right: 0;
    }
    .nav__list {
        flex-direction: column;
        width: 100%;
        gap: 0.5rem;
    }
    .nav__link {
        display: block;
        padding: 1rem;
        border-radius: var(--radius-md);
        color: var(--fg-on-surface);
    }
    .nav__link:hover,
    .nav__link:focus-visible {
        background-color: var(--btn-ghost-bg-hover);
        color: var(--brand);
    }
    .nav__link::after {
        display: none;
    }
    .header.scrolled .header__nav {
        top: 0;
    }
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    padding: 2.5rem;
    background-color: #f8f9fa;
    color: #333;
    font-family: sans-serif;
    border-top: 1px solid #dee2e6;
  }

  .footer-left, .footer-right {
    flex: 1;
    min-width: 250px;
  }

  .footer-left {
    max-width: 400px;
  }

  .logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #0056b3;
    margin-bottom: 0.5rem;
  }

  .tagline {
    font-style: italic;
    color: #666;
    margin-bottom: 1.5rem;
  }

  .contact-info p {
    margin-bottom: 0.5rem;
    line-height: 1.4;
  }

  .contact-info a {
    color: #0056b3;
    text-decoration: none;
  }

  .contact-info a:hover {
    text-decoration: underline;
  }

  .social-links {
    margin-top: 1.5rem;
  }

  .social-links a {
    color: #555;
    text-decoration: none;
    margin: 0 0.2rem;
  }

  .social-links a:hover {
    color: #0056b3;
    text-decoration: underline;
  }

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

  .footer-nav li {
    margin-bottom: 0.7rem;
  }

  .footer-nav a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
  }

  .footer-nav a:hover {
    color: #0056b3;
    text-decoration: underline;
  }

  .legal-links {
    margin-bottom: 1.2rem;
    font-size: 0.9rem;
  }

  .legal-links a {
    color: #666;
    text-decoration: none;
  }

  .legal-links a:hover {
    color: #0056b3;
    text-decoration: underline;
  }

  .disclaimer {
    font-size: 0.8rem;
    color: #777;
    line-height: 1.4;
    margin-bottom: 1.2rem;
    padding: 0.8rem;
    background-color: #eee;
    border-radius: 4px;
  }

  .copyright {
    font-size: 0.85rem;
    color: #777;
  }

  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      padding: 1.5rem;
    }
    .footer-left, .footer-right {
      max-width: 100%;
    }
  }

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

    .cookie-lv16__shell {
        max-width: 720px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
    }

    .cookie-lv16__meta {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .cookie-lv16__dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--accent);
        box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 20%, transparent);
    }

    .cookie-lv16__shell p {
        margin: 8px 0 0;
        color: var(--fg-muted);
    }

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

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

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

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

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

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

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

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