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

  --max-w: 1040px;
  --space-x: 1.22rem;
  --space-y: 1.5rem;
  --gap: 1.09rem;

  --radius-xl: 0.84rem;
  --radius-lg: 0.51rem;
  --radius-md: 0.43rem;
  --radius-sm: 0.28rem;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 26px rgba(0,0,0,0.08);

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

  --brand: #2A6EBB;
  --brand-contrast: #FFFFFF;
  --accent: #E63946;
  --accent-contrast: #FFFFFF;

  --neutral-0: #FFFFFF;
  --neutral-100: #F8F9FA;
  --neutral-300: #DEE2E6;
  --neutral-600: #6C757D;
  --neutral-800: #343A40;
  --neutral-900: #212529;

  --bg-page: #FFFFFF;
  --fg-on-page: #212529;

  --bg-alt: #F8F9FA;
  --fg-on-alt: #343A40;

  --surface-1: #FFFFFF;
  --surface-2: #F8F9FA;
  --fg-on-surface: #212529;
  --border-on-surface: #DEE2E6;

  --surface-light: rgba(255, 255, 255, 0.85);
  --fg-on-surface-light: #212529;
  --border-on-surface-light: rgba(222, 226, 230, 0.7);

  --bg-primary: #2A6EBB;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #1E5CA3;
  --ring: rgba(42, 110, 187, 0.4);

  --bg-accent: #FFE5E7;
  --fg-on-accent: #A11C28;
  --bg-accent-hover: #FFB3B8;

  --link: #2A6EBB;
  --link-hover: #1E5CA3;

  --gradient-hero: linear-gradient(135deg, #2A6EBB 0%, #3A8AE8 100%);
  --gradient-accent: linear-gradient(135deg, #E63946 0%, #FF6B6B 100%);

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

.site-header {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  background-color: var(--surface-1);
  color: var(--fg-on-surface);
  box-shadow: var(--shadow-sm);
}
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-x);
}
.header-top {
  background-color: var(--brand);
  color: var(--fg-on-primary);
}
.header-top__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-y);
  padding-bottom: var(--space-y);
}
.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--fg-on-primary);
  text-decoration: none;
}
.contact-cta {
  background-color: var(--bg-accent);
  color: var(--fg-on-accent);
  padding: calc(var(--space-y) / 2) var(--space-x);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  transition: background-color var(--anim-duration) var(--anim-ease);
}
.contact-cta:hover {
  background-color: var(--bg-accent-hover);
}
.header-bottom {
  border-top: 1px solid var(--border-on-surface-light);
}
.header-bottom__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: calc(var(--space-y) / 1.5);
  padding-bottom: calc(var(--space-y) / 1.5);
  position: relative;
}
.main-nav {
  flex-grow: 1;
}
.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: var(--gap);
}
.nav-link {
  color: var(--link);
  text-decoration: none;
  padding: calc(var(--space-y) / 4) calc(var(--space-x) / 2);
  border-radius: var(--radius-sm);
  transition: color var(--anim-duration) var(--anim-ease), background-color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
  color: var(--link-hover);
  background-color: var(--btn-ghost-bg-hover);
}
.burger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: calc(var(--space-y) / 4);
  flex-direction: column;
  gap: 4px;
}
.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--fg-on-surface);
  border-radius: 1px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
  .burger-btn {
    display: flex;
  }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--surface-1);
    box-shadow: var(--shadow-md);
    border-top: 1px solid var(--border-on-surface-light);
    padding: var(--space-y) var(--space-x);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
    z-index: 1000;
  }
  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .nav-list {
    flex-direction: column;
    gap: calc(var(--gap) / 2);
  }
  .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger-btn[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #dee2e6;
        color: #333;
        padding: 2.5rem 1rem;
        font-family: system-ui, -apple-system, sans-serif;
        margin-top: auto;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 2.5rem;
        margin-bottom: 2.5rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #eaeaea;
    }

    .footer-brand .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }

    .footer-brand .tagline {
        color: #7b8a8b;
        font-size: 0.95rem;
        line-height: 1.4;
    }

    .footer-nav h3,
    .footer-legal h3,
    .footer-contact h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #2c3e50;
    }

    .footer-nav ul,
    .footer-legal ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li,
    .footer-legal li {
        margin-bottom: 0.6rem;
    }

    .footer-nav a,
    .footer-legal a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #2980b9;
        text-decoration: underline;
    }

    .footer-contact address p {
        margin-bottom: 0.7rem;
        line-height: 1.5;
        font-style: normal;
    }

    .footer-contact a {
        color: #2980b9;
        text-decoration: none;
    }

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

    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        font-size: 0.85rem;
        color: #666;
    }

    .footer-disclaimer {
        flex: 1;
        min-width: 300px;
        line-height: 1.5;
    }

    .footer-disclaimer a {
        color: #2980b9;
        text-decoration: none;
    }

    .footer-disclaimer a:hover {
        text-decoration: underline;
    }

    .footer-copyright {
        text-align: right;
        flex-shrink: 0;
    }

    @media (max-width: 768px) {
        .footer-grid {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .footer-bottom {
            flex-direction: column;
            text-align: center;
            gap: 1rem;
        }
        .footer-copyright {
            text-align: center;
        }
        .footer-disclaimer {
            min-width: auto;
        }
    }

.cookie-lv8 {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1200;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 12px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

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

    .cookie-lv8__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

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

    .cookie-lv8__actions button {
        border: 0;
        border-radius: 999px;
        background: var(--neutral-100);
        color: var(--fg-on-page);
        padding: 7px 11px;
        cursor: pointer;
    }

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

    @media (max-width: 760px) {
        .cookie-lv8 {
            border-radius: var(--radius-lg);
        }
    }

.wp-lang-switcher-v5 {
        position: fixed;
        right: clamp(16px, 2vw, var(--space-x, 24px));
        bottom: clamp(16px, 2vw, var(--space-y, 20px));
        z-index: 99999;

        --local-random: var(--random-number, 1);
    }

    .wp-lang-switcher-v5__btn {
        background: var(--surface-1, #fff);
        color: var(--fg-on-surface, #111827);
        padding: calc(8px + var(--local-random) * 1px) calc(12px + var(--local-random) * 2px);
        border: 1px solid var(--border-on-surface, #e5e7eb);
        border-radius: calc(var(--radius-md, 12px) - var(--local-random) * 1px);
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 8px;
        box-shadow: var(--shadow-sm, 0 2px 4px rgba(0, 0, 0, 0.05));
        transition: all var(--anim-duration, 0.3s) var(--anim-ease, ease-in-out);

        font-size: 14px;
        font-weight: 500;
    }

    .wp-lang-switcher-v5__btn:hover {
        background: var(--bg-alt, #f9fafb);
        border-color: var(--neutral-300, #d1d5db);
        box-shadow: var(--shadow-md, 0 4px 12px rgba(0, 0, 0, 0.08));
    }

    .wp-lang-switcher-v5__current {
        color: var(--fg-on-surface, #111827);
        font-weight: 600;
        letter-spacing: calc(0.3px + var(--local-random) * 0.1px);
    }

    .wp-lang-switcher-v5__arrow {
        transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease-in-out);
        color: var(--neutral-600, #4b5563);
    }

    .wp-lang-switcher-v5__panel.open ~ .wp-lang-switcher-v5__btn .wp-lang-switcher-v5__arrow,
    .wp-lang-switcher-v5__btn:has(~ .wp-lang-switcher-v5__panel.open) .wp-lang-switcher-v5__arrow {
        transform: rotate(180deg);
    }

    .wp-lang-switcher-v5__panel {
        display: none;
        position: absolute;
        right: 0;
        bottom: calc(100% + 6px);
        background: var(--surface-1, #fff);
        border: 1px solid var(--border-on-surface, #e5e7eb);
        border-radius: calc(var(--radius-md, 12px) + var(--local-random) * 1px);
        box-shadow: var(--shadow-lg, 0 8px 24px rgba(0, 0, 0, 0.12));
        min-width: calc(160px + var(--local-random) * 10px);
        overflow: hidden;

        transform: translateY(4px);
        transition: all var(--anim-duration, 0.3s) var(--anim-ease, ease-in-out);
    }

    .wp-lang-switcher-v5__panel.open {
        display: block;
        opacity: 1;
        transform: translateY(0);
    }

    .wp-lang-switcher-v5__panel button,
    .wp-lang-switcher-v5__panel a {
        width: 100%;
        text-align: left;
        padding: calc(10px + var(--local-random) * 1px) calc(14px + var(--local-random) * 2px);
        border: 0;
        background: var(--surface-1, #fff);
        color: var(--fg-on-surface, #111827);
        cursor: pointer;

        font-size: 14px;
        transition: background var(--anim-duration, 0.3s) var(--anim-ease, ease-in-out);
        border-bottom: 1px solid var(--neutral-100, #f9fafb);
        text-decoration: none;
        display: block;
    }

    .wp-lang-switcher-v5__panel button:last-child,
    .wp-lang-switcher-v5__panel a:last-child {
        border-bottom: none;
    }

    .wp-lang-switcher-v5__panel button:hover,
    .wp-lang-switcher-v5__panel a:hover {
        background: var(--bg-alt, #f9fafb);
        color: var(--bg-primary, #3b82f6);
    }

.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-fan-c5 {
        padding: clamp(3.6rem, 8vw, 6.2rem) var(--space-x);
        background: var(--gradient-accent);
        color: var(--accent-contrast);
    }

    .next-fan-c5__wrap {
        max-width: 58rem;
        margin: 0 auto;
        text-align: center;
    }

    .next-fan-c5__banner p {
        margin: 0;
    }

    .next-fan-c5__banner h2 {
        margin: .5rem 0 0;
        font-size: clamp(2.1rem, 4vw, 3.1rem);
    }

    .next-fan-c5__fan {
        margin-top: 1.15rem;
        display: flex;
        gap: .75rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .next-fan-c5__fan a {
        display: block;
        padding: .9rem 1rem;
        min-width: 10rem;
        border-radius: var(--radius-lg);
        background: var(--accent);
        border: 1px solid rgba(255, 255, 255, .18);
        color: var(--accent-contrast);
        text-decoration: none;
    }

    .next-fan-c5__fan span {
        display: block;
        margin-top: .3rem;
    }

    .next-fan-c5__tail {
        margin-top: 1rem;

    }

    .next-fan-c5__wrap > a {
        display: inline-flex;
        margin-top: 1rem;
        min-height: 2.85rem;
        align-items: center;
        justify-content: center;
        padding: 0 1rem;
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        text-decoration: none;
    }

.education-struct-v1 {
        padding: calc(var(--space-y) * 2) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-surface)
    }

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

    .education-struct-v1 h2, .education-struct-v1 h3, .education-struct-v1 p {
        margin: 0
    }

    .education-struct-v1 a {
        text-decoration: none
    }

    .education-struct-v1 article, .education-struct-v1 .row, .education-struct-v1 details, .education-struct-v1 .program {
        background: var(--surface-2);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        padding: .85rem
    }

    .education-struct-v1 .grid, .education-struct-v1 .tiers {
        display: grid;
        grid-template-columns:repeat(3, minmax(0, 1fr));
        gap: var(--gap)
    }

    .education-struct-v1 .grid a, .education-struct-v1 .tiers a, .education-struct-v1 .cta a {
        display: inline-flex;
        min-height: 2.3rem;
        padding: 0 .8rem;
        align-items: center;
        border-radius: var(--radius-sm);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border: 1px solid var(--ring)
    }

    .education-struct-v1 .path {
        display: grid;
        gap: .65rem
    }

    .education-struct-v1 .path article {
        position: relative;
        padding-left: 1.25rem
    }

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

    .education-struct-v1 .table {
        display: grid;
        gap: .45rem
    }

    .education-struct-v1 .row {
        display: grid;
        grid-template-columns:1fr 1fr 1fr;
        gap: .6rem
    }

    .education-struct-v1 .combo {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: var(--gap)
    }

    .education-struct-v1 .mentors {
        display: grid;
        gap: .6rem
    }

    .education-struct-v1 .mentors article {
        display: grid;
        grid-template-columns:3rem 1fr;
        gap: .6rem;
        align-items: center
    }

    .education-struct-v1 .mentors img {
        display: block;
        width: 3rem;
        height: 3rem;
        border-radius: 50%;
        object-fit: cover
    }

    .education-struct-v1 .program {
        display: grid;
        gap: .45rem
    }

    .education-struct-v1 .modules {
        display: grid;
        gap: .6rem
    }

    .education-struct-v1 .cta {
        display: flex
    }

    @media (max-width: 900px) {
        .education-struct-v1 .grid, .education-struct-v1 .tiers, .education-struct-v1 .combo {
            grid-template-columns:1fr 1fr
        }
    }

    @media (max-width: 680px) {
        .education-struct-v1 .grid, .education-struct-v1 .tiers, .education-struct-v1 .combo, .education-struct-v1 .row {
            grid-template-columns:1fr
        }
    }

.why-choose {

        padding: clamp(16px, 3vw, 44px);
    }

    .why-choose--colored.why-choose--v2 {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

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

    .why-choose__top {
        display: grid;
        grid-template-columns:1.35fr 0.65fr;
        gap: clamp(14px, 2vw, 20px);
        align-items: start;
        margin-bottom: clamp(14px, 2.4vw, 26px);
    }

    .why-choose__title {
        margin: 0;
        font-size: clamp(26px, 4.6vw, 42px);
        line-height: 1.1;
        color: var(--fg-on-primary);
        letter-spacing: -0.02em;
    }

    .why-choose__subtitle {
        margin: 10px 0 0;
        color: rgba(255, 255, 255, 0.8);
        max-width: 68ch;
    }

    .why-choose__stats {
        display: grid;
        gap: 12px;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.16);
        box-shadow: var(--shadow-md);
    }

    .why-choose__statValue {
        font-size: clamp(20px, 2.8vw, 28px);
        font-weight: 700;
        color: var(--fg-on-primary);
    }

    .why-choose__statLabel {
        margin-top: 4px;
        color: rgba(255, 255, 255, 0.78);
        font-size: 0.9rem;
    }

    .why-choose__list {
        display: grid;
        gap: 12px;
    }

    .why-choose__row {
        position: relative;
        display: grid;
        grid-template-columns:18px 1fr;
        gap: 12px;
        padding: clamp(14px, 2vw, 18px);
        border-radius: var(--radius-xl);
        background: rgba(0, 0, 0, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.14);
        box-shadow: var(--shadow-sm);
        overflow: hidden;
        transition: transform var(--anim-duration) var(--anim-ease);
        will-change: transform;
    }

    .why-choose__row:hover {
        transform: translateY(-3px);
    }

    /* SHIMMER SWEEP */
    .why-choose__row::after {
        content: '';
        position: absolute;
        inset: -40px -60px;
        transform: translateX(-120%) rotate(12deg);
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);

        pointer-events: none;
    }

    .why-choose__row:hover::after {
        opacity: 1;
        animation: whyChooseShimmer 900ms var(--anim-ease) 1;
    }

    @keyframes whyChooseShimmer {
        0% {
            transform: translateX(-120%) rotate(12deg);
        }
        100% {
            transform: translateX(120%) rotate(12deg);
        }
    }

    .why-choose__bullet {
        width: 12px;
        height: 12px;
        border-radius: 999px;
        margin-top: 6px;
        background: var(--accent);
        box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.12);
    }

    .why-choose__rowTitle {
        font-weight: 700;
        color: var(--fg-on-primary);
        margin-bottom: 6px;
    }

    .why-choose__rowText {
        color: rgba(255, 255, 255, 0.78);
        line-height: var(--line-height-base);
    }

    @media (max-width: 920px) {
        .why-choose__top {
            grid-template-columns:1fr;
        }
    }

    @media (prefers-reduced-motion: reduce) {
        .why-choose__row {
            transition: none;
        }

        .why-choose__row::after {
            display: none;
        }
    }

.visual-board-l4 {
        padding: clamp(3.1rem, 7vw, 5.7rem) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

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

    .visual-board-l4__head {
        margin-bottom: 1rem;
        text-align: center;
    }

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

    .visual-board-l4__head p {
        margin: .6rem 0 0;
        color: var(--neutral-600);
    }

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

    .visual-board-l4__grid figure {
        margin: 0;
        padding: .9rem;
        border-radius: var(--radius-xl);
        background: var(--bg-alt);
        border: 1px solid var(--border-on-surface-light);
    }

    .visual-board-l4__grid figcaption strong {
        color: var(--brand);
    }

    .visual-board-l4__grid h3 {
        margin: .45rem 0 .35rem;
    }

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

    .visual-board-l4__grid img {
        display: block;
        width: 100%;
        height: 12rem;
        object-fit: cover;
        border-radius: var(--radius-md);
        margin-top: .85rem;
    }

.site-header {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  background-color: var(--surface-1);
  color: var(--fg-on-surface);
  box-shadow: var(--shadow-sm);
}
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-x);
}
.header-top {
  background-color: var(--brand);
  color: var(--fg-on-primary);
}
.header-top__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-y);
  padding-bottom: var(--space-y);
}
.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--fg-on-primary);
  text-decoration: none;
}
.contact-cta {
  background-color: var(--bg-accent);
  color: var(--fg-on-accent);
  padding: calc(var(--space-y) / 2) var(--space-x);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  transition: background-color var(--anim-duration) var(--anim-ease);
}
.contact-cta:hover {
  background-color: var(--bg-accent-hover);
}
.header-bottom {
  border-top: 1px solid var(--border-on-surface-light);
}
.header-bottom__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: calc(var(--space-y) / 1.5);
  padding-bottom: calc(var(--space-y) / 1.5);
  position: relative;
}
.main-nav {
  flex-grow: 1;
}
.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: var(--gap);
}
.nav-link {
  color: var(--link);
  text-decoration: none;
  padding: calc(var(--space-y) / 4) calc(var(--space-x) / 2);
  border-radius: var(--radius-sm);
  transition: color var(--anim-duration) var(--anim-ease), background-color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
  color: var(--link-hover);
  background-color: var(--btn-ghost-bg-hover);
}
.burger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: calc(var(--space-y) / 4);
  flex-direction: column;
  gap: 4px;
}
.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--fg-on-surface);
  border-radius: 1px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
  .burger-btn {
    display: flex;
  }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--surface-1);
    box-shadow: var(--shadow-md);
    border-top: 1px solid var(--border-on-surface-light);
    padding: var(--space-y) var(--space-x);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
    z-index: 1000;
  }
  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .nav-list {
    flex-direction: column;
    gap: calc(var(--gap) / 2);
  }
  .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger-btn[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #dee2e6;
        color: #333;
        padding: 2.5rem 1rem;
        font-family: system-ui, -apple-system, sans-serif;
        margin-top: auto;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 2.5rem;
        margin-bottom: 2.5rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #eaeaea;
    }

    .footer-brand .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }

    .footer-brand .tagline {
        color: #7b8a8b;
        font-size: 0.95rem;
        line-height: 1.4;
    }

    .footer-nav h3,
    .footer-legal h3,
    .footer-contact h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #2c3e50;
    }

    .footer-nav ul,
    .footer-legal ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li,
    .footer-legal li {
        margin-bottom: 0.6rem;
    }

    .footer-nav a,
    .footer-legal a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #2980b9;
        text-decoration: underline;
    }

    .footer-contact address p {
        margin-bottom: 0.7rem;
        line-height: 1.5;
        font-style: normal;
    }

    .footer-contact a {
        color: #2980b9;
        text-decoration: none;
    }

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

    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        font-size: 0.85rem;
        color: #666;
    }

    .footer-disclaimer {
        flex: 1;
        min-width: 300px;
        line-height: 1.5;
    }

    .footer-disclaimer a {
        color: #2980b9;
        text-decoration: none;
    }

    .footer-disclaimer a:hover {
        text-decoration: underline;
    }

    .footer-copyright {
        text-align: right;
        flex-shrink: 0;
    }

    @media (max-width: 768px) {
        .footer-grid {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .footer-bottom {
            flex-direction: column;
            text-align: center;
            gap: 1rem;
        }
        .footer-copyright {
            text-align: center;
        }
        .footer-disclaimer {
            min-width: auto;
        }
    }

.cookie-lv8 {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1200;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 12px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

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

    .cookie-lv8__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

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

    .cookie-lv8__actions button {
        border: 0;
        border-radius: 999px;
        background: var(--neutral-100);
        color: var(--fg-on-page);
        padding: 7px 11px;
        cursor: pointer;
    }

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

    @media (max-width: 760px) {
        .cookie-lv8 {
            border-radius: var(--radius-lg);
        }
    }

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

.gallery--colored-v5 {
    padding: 60px 20px;
    background: var(--neutral-900);
    color: var(--neutral-0);
}

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

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

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

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

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

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

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

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

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

.mission--light-v6 {

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

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

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

    .mission__headline p {
        margin: 0;
        color: var(--neutral-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);
        }
    }

.site-header {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  background-color: var(--surface-1);
  color: var(--fg-on-surface);
  box-shadow: var(--shadow-sm);
}
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-x);
}
.header-top {
  background-color: var(--brand);
  color: var(--fg-on-primary);
}
.header-top__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-y);
  padding-bottom: var(--space-y);
}
.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--fg-on-primary);
  text-decoration: none;
}
.contact-cta {
  background-color: var(--bg-accent);
  color: var(--fg-on-accent);
  padding: calc(var(--space-y) / 2) var(--space-x);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  transition: background-color var(--anim-duration) var(--anim-ease);
}
.contact-cta:hover {
  background-color: var(--bg-accent-hover);
}
.header-bottom {
  border-top: 1px solid var(--border-on-surface-light);
}
.header-bottom__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: calc(var(--space-y) / 1.5);
  padding-bottom: calc(var(--space-y) / 1.5);
  position: relative;
}
.main-nav {
  flex-grow: 1;
}
.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: var(--gap);
}
.nav-link {
  color: var(--link);
  text-decoration: none;
  padding: calc(var(--space-y) / 4) calc(var(--space-x) / 2);
  border-radius: var(--radius-sm);
  transition: color var(--anim-duration) var(--anim-ease), background-color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
  color: var(--link-hover);
  background-color: var(--btn-ghost-bg-hover);
}
.burger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: calc(var(--space-y) / 4);
  flex-direction: column;
  gap: 4px;
}
.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--fg-on-surface);
  border-radius: 1px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
  .burger-btn {
    display: flex;
  }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--surface-1);
    box-shadow: var(--shadow-md);
    border-top: 1px solid var(--border-on-surface-light);
    padding: var(--space-y) var(--space-x);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
    z-index: 1000;
  }
  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .nav-list {
    flex-direction: column;
    gap: calc(var(--gap) / 2);
  }
  .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger-btn[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #dee2e6;
        color: #333;
        padding: 2.5rem 1rem;
        font-family: system-ui, -apple-system, sans-serif;
        margin-top: auto;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 2.5rem;
        margin-bottom: 2.5rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #eaeaea;
    }

    .footer-brand .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }

    .footer-brand .tagline {
        color: #7b8a8b;
        font-size: 0.95rem;
        line-height: 1.4;
    }

    .footer-nav h3,
    .footer-legal h3,
    .footer-contact h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #2c3e50;
    }

    .footer-nav ul,
    .footer-legal ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li,
    .footer-legal li {
        margin-bottom: 0.6rem;
    }

    .footer-nav a,
    .footer-legal a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #2980b9;
        text-decoration: underline;
    }

    .footer-contact address p {
        margin-bottom: 0.7rem;
        line-height: 1.5;
        font-style: normal;
    }

    .footer-contact a {
        color: #2980b9;
        text-decoration: none;
    }

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

    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        font-size: 0.85rem;
        color: #666;
    }

    .footer-disclaimer {
        flex: 1;
        min-width: 300px;
        line-height: 1.5;
    }

    .footer-disclaimer a {
        color: #2980b9;
        text-decoration: none;
    }

    .footer-disclaimer a:hover {
        text-decoration: underline;
    }

    .footer-copyright {
        text-align: right;
        flex-shrink: 0;
    }

    @media (max-width: 768px) {
        .footer-grid {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .footer-bottom {
            flex-direction: column;
            text-align: center;
            gap: 1rem;
        }
        .footer-copyright {
            text-align: center;
        }
        .footer-disclaimer {
            min-width: auto;
        }
    }

.cookie-lv8 {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1200;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 12px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

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

    .cookie-lv8__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

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

    .cookie-lv8__actions button {
        border: 0;
        border-radius: 999px;
        background: var(--neutral-100);
        color: var(--fg-on-page);
        padding: 7px 11px;
        cursor: pointer;
    }

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

    @media (max-width: 760px) {
        .cookie-lv8 {
            border-radius: var(--radius-lg);
        }
    }

.capabilities-alt {

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

    .capabilities-alt::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 200px;
        background: linear-gradient(180deg, var(--accent) 0%, transparent 100%);
        opacity: 0.1;
    }

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

    .capabilities-alt .capabilities-alt__h {
        text-align: center;
        margin-bottom: clamp(48px, 7vw, 80px);

    }

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

    .capabilities-alt .capabilities-alt__subtitle {
        font-size: clamp(16px, 2vw, 20px);
        margin: 0;
        opacity: 0.9;
    }

    .capabilities-alt .capabilities-alt__flow {
        display: flex;
        flex-direction: column;
        gap: clamp(40px, 5vw, 64px);
        position: relative;
    }

    .capabilities-alt .capabilities-alt__item {
        display: flex;
        align-items: center;
        gap: clamp(24px, 4vw, 48px);

        transform: translateX(-50px);
    }

    .capabilities-alt .capabilities-alt__item:nth-child(even) {
        flex-direction: row-reverse;
        transform: translateX(50px);
    }

    .capabilities-alt .capabilities-alt__connector {
        flex-shrink: 0;
        width: 60px;
        height: 60px;
        background: var(--accent);
        border-radius: 50%;
        position: relative;
        box-shadow: 0 0 0 8px rgba(255, 107, 53, 0.2);
        animation: pulse 2s ease-in-out infinite;
    }

    @keyframes pulse {
        0%, 100% {
            box-shadow: 0 0 0 8px rgba(255, 107, 53, 0.2);
        }
        50% {
            box-shadow: 0 0 0 16px rgba(255, 107, 53, 0.1);
        }
    }

    .capabilities-alt .capabilities-alt__connector::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 24px;
        height: 24px;
        background: var(--fg-on-primary);
        border-radius: 50%;
    }

    .capabilities-alt .capabilities-alt__bubble {
        flex: 1;
        background: var(--surface-light);
        padding: clamp(24px, 3vw, 36px);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        position: relative;
    }

    .capabilities-alt .capabilities-alt__bubble::before {
        content: '';
        position: absolute;
        top: 50%;
        width: 20px;
        height: 20px;
        background: var(--surface-light);
        transform: translateY(-50%) rotate(45deg);
    }

    .capabilities-alt .capabilities-alt__item:nth-child(odd) .capabilities-alt__bubble::before {
        left: -10px;
    }

    .capabilities-alt .capabilities-alt__item:nth-child(even) .capabilities-alt__bubble::before {
        right: -10px;
    }

    .capabilities-alt .capabilities-alt__icon {
        color: var(--fg-on-surface-light);
        font-size: 36px;
        margin-bottom: 1rem;
    }

    .capabilities-alt .capabilities-alt__bubble h3 {
        font-size: clamp(20px, 2.5vw, 26px);
        font-weight: 700;
        margin: 0 0 0.75rem;
        color: var(--brand);
    }

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

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

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

    .plans-lv4__head {
        text-align: center;
        margin-bottom: 14px;
    }

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

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

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

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

    .plans-lv4__line {
        display: flex;
        justify-content: space-between;
        align-items: baseline;
        gap: 8px;
    }

    .plans-lv4__line h3 {
        margin: 0;
    }

    .plans-lv4__line p {
        margin: 0;
        color: var(--brand);
        font-weight: 700;
    }

    .plans-lv4__chips {
        margin-top: 8px;
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
    }

    .plans-lv4__chips span {
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        padding: 5px 9px;
        font-size: .88rem;
    }

    .plans-lv4__stack button {
        margin-top: 10px;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 8px 11px;
    }

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

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

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

    .hiw-orbit-c7__head p {
        margin: 0;
        color: var(--surface-light);
    }

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

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

    .hiw-orbit-c7__ring article {
        padding: 1rem;
        background: var(--surface-light);
        border: 1px solid var(--border-on-surface-light);
        text-align: center;
        border-radius: var(--radius-lg);
        color: var(--fg-on-surface-light);
    }

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

    .hiw-orbit-c7__ring h3 {
        margin: .75rem 0 .35rem;
        color: var(--fg-on-surface-light);
    }

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

.site-header {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  background-color: var(--surface-1);
  color: var(--fg-on-surface);
  box-shadow: var(--shadow-sm);
}
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-x);
}
.header-top {
  background-color: var(--brand);
  color: var(--fg-on-primary);
}
.header-top__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-y);
  padding-bottom: var(--space-y);
}
.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--fg-on-primary);
  text-decoration: none;
}
.contact-cta {
  background-color: var(--bg-accent);
  color: var(--fg-on-accent);
  padding: calc(var(--space-y) / 2) var(--space-x);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  transition: background-color var(--anim-duration) var(--anim-ease);
}
.contact-cta:hover {
  background-color: var(--bg-accent-hover);
}
.header-bottom {
  border-top: 1px solid var(--border-on-surface-light);
}
.header-bottom__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: calc(var(--space-y) / 1.5);
  padding-bottom: calc(var(--space-y) / 1.5);
  position: relative;
}
.main-nav {
  flex-grow: 1;
}
.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: var(--gap);
}
.nav-link {
  color: var(--link);
  text-decoration: none;
  padding: calc(var(--space-y) / 4) calc(var(--space-x) / 2);
  border-radius: var(--radius-sm);
  transition: color var(--anim-duration) var(--anim-ease), background-color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
  color: var(--link-hover);
  background-color: var(--btn-ghost-bg-hover);
}
.burger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: calc(var(--space-y) / 4);
  flex-direction: column;
  gap: 4px;
}
.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--fg-on-surface);
  border-radius: 1px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
  .burger-btn {
    display: flex;
  }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--surface-1);
    box-shadow: var(--shadow-md);
    border-top: 1px solid var(--border-on-surface-light);
    padding: var(--space-y) var(--space-x);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
    z-index: 1000;
  }
  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .nav-list {
    flex-direction: column;
    gap: calc(var(--gap) / 2);
  }
  .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger-btn[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #dee2e6;
        color: #333;
        padding: 2.5rem 1rem;
        font-family: system-ui, -apple-system, sans-serif;
        margin-top: auto;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 2.5rem;
        margin-bottom: 2.5rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #eaeaea;
    }

    .footer-brand .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }

    .footer-brand .tagline {
        color: #7b8a8b;
        font-size: 0.95rem;
        line-height: 1.4;
    }

    .footer-nav h3,
    .footer-legal h3,
    .footer-contact h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #2c3e50;
    }

    .footer-nav ul,
    .footer-legal ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li,
    .footer-legal li {
        margin-bottom: 0.6rem;
    }

    .footer-nav a,
    .footer-legal a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #2980b9;
        text-decoration: underline;
    }

    .footer-contact address p {
        margin-bottom: 0.7rem;
        line-height: 1.5;
        font-style: normal;
    }

    .footer-contact a {
        color: #2980b9;
        text-decoration: none;
    }

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

    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        font-size: 0.85rem;
        color: #666;
    }

    .footer-disclaimer {
        flex: 1;
        min-width: 300px;
        line-height: 1.5;
    }

    .footer-disclaimer a {
        color: #2980b9;
        text-decoration: none;
    }

    .footer-disclaimer a:hover {
        text-decoration: underline;
    }

    .footer-copyright {
        text-align: right;
        flex-shrink: 0;
    }

    @media (max-width: 768px) {
        .footer-grid {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .footer-bottom {
            flex-direction: column;
            text-align: center;
            gap: 1rem;
        }
        .footer-copyright {
            text-align: center;
        }
        .footer-disclaimer {
            min-width: auto;
        }
    }

.cookie-lv8 {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1200;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 12px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

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

    .cookie-lv8__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

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

    .cookie-lv8__actions button {
        border: 0;
        border-radius: 999px;
        background: var(--neutral-100);
        color: var(--fg-on-page);
        padding: 7px 11px;
        cursor: pointer;
    }

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

    @media (max-width: 760px) {
        .cookie-lv8 {
            border-radius: var(--radius-lg);
        }
    }

.clarifications-l2 {

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

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

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

    .clarifications-l2__title {
        margin: 0;
        font-size: clamp(24px, 4.2vw, 40px);
        letter-spacing: -.02em;
        line-height: 1.1;
        color: var(--fg-on-alt);
    }

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

    .clarifications-l2__panel {
        position: relative;
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-lg);
        overflow: hidden;
    }

    /* постоянный скан */
    .clarifications-l2__scan {
        position: absolute;
        left: 0;
        top: -40%;
        width: 100%;
        height: 42%;
        background: linear-gradient(180deg, transparent, rgba(0, 86, 179, 0.08), transparent);
        animation: l2Scan 4.8s linear infinite;
        pointer-events: none;
    }

    @keyframes l2Scan {
        0% {
            transform: translateY(0%)
        }
        100% {
            transform: translateY(240%)
        }
    }

    .clarifications-l2__list {
        display: grid;
        gap: 10px;
        padding: 12px;
    }

    .clarifications-l2__row {
        display: grid;
        grid-template-columns: 110px 1fr;
        gap: 12px;
        padding: 12px 14px;
        text-align: left;
        border-radius: var(--radius-lg);
        background: var(--surface-2);
        border: 1px solid var(--border-on-surface);
        cursor: pointer;
        transition: transform var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
    }

    .clarifications-l2__row:hover {
        transform: translateY(-2px);
        border-color: rgba(0, 86, 179, 0.35);
    }

    .clarifications-l2__k {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        height: 34px;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border: 1px solid rgba(0, 0, 0, 0.06);
        font-weight: 900;
    }

    .clarifications-l2__q {
        display: block;
        font-weight: 900;
        color: var(--fg-on-page);
        letter-spacing: -.01em;
        margin-bottom: 6px;
    }

    .clarifications-l2__a {
        display: block;
        color: var(--neutral-600);
        line-height: var(--line-height-base);
    }

    /* JS добавит “плавающее” выделение активного ряда */
    .clarifications-l2__row.is-focus {
        border-color: rgba(255, 107, 53, 0.45);
        box-shadow: 0 0 0 6px rgba(255, 107, 53, 0.08);
    }

    @media (max-width: 720px) {
        .clarifications-l2__row {
            grid-template-columns:1fr
        }

        .clarifications-l2__k {
            justify-self: start;
            padding: 0 12px
        }
    }

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

.nfcontacts-v11 {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    .nfcontacts-v11__shell {
        max-width: 860px;
        margin: 0 auto;
        display: grid;
        gap: 12px;
    }

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

    .nfcontacts-v11__head p {
        margin: 8px 0 0;
        opacity: .85;
    }

    .nfcontacts-v11__stack {
        display: grid;
        gap: 8px;
    }

    .nfcontacts-v11 details {
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .08);
        border: 1px solid rgba(255, 255, 255, .2);
        padding: 10px 12px;
    }

    .nfcontacts-v11 summary {
        cursor: pointer;
        font-weight: 700;
    }

    .nfcontacts-v11 details div {
        margin-top: 8px;
        display: grid;
        gap: 6px;
    }

    .nfcontacts-v11 details p {
        margin: 0;
    }

    .nfcontacts-v11 details a {
        color: var(--neutral-0);
        text-decoration: underline;
    }

.form-fresh-v3 {
        padding: calc(var(--space-y) * 2.6) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-surface);
    }

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

    .form-fresh-v3 .band {
        padding: 1rem;
        border-radius: var(--radius-md);
        background: var(--surface-2);
        border: 1px solid var(--border-on-surface);
    }

    .form-fresh-v3 .band h2 {
        margin: 0 0 .35rem;
    }

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

    .form-fresh-v3 .row {
        display: flex;
        flex-wrap: wrap;
        gap: .7rem;
    }

    .form-fresh-v3 label {
        display: grid;
        gap: .3rem;
        min-width: 190px;
        flex: 1 1 220px;
    }

    .form-fresh-v3 span {
        font-size: .84rem;
        color: var(--fg-on-surface-light);
    }

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

    .form-fresh-v3 button {
        padding: .7rem 1rem;
        border: 0;
        border-radius: var(--radius-sm);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 700;
        cursor: pointer;
        align-self: end;
    }

.site-header {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  background-color: var(--surface-1);
  color: var(--fg-on-surface);
  box-shadow: var(--shadow-sm);
}
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-x);
}
.header-top {
  background-color: var(--brand);
  color: var(--fg-on-primary);
}
.header-top__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-y);
  padding-bottom: var(--space-y);
}
.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--fg-on-primary);
  text-decoration: none;
}
.contact-cta {
  background-color: var(--bg-accent);
  color: var(--fg-on-accent);
  padding: calc(var(--space-y) / 2) var(--space-x);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  transition: background-color var(--anim-duration) var(--anim-ease);
}
.contact-cta:hover {
  background-color: var(--bg-accent-hover);
}
.header-bottom {
  border-top: 1px solid var(--border-on-surface-light);
}
.header-bottom__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: calc(var(--space-y) / 1.5);
  padding-bottom: calc(var(--space-y) / 1.5);
  position: relative;
}
.main-nav {
  flex-grow: 1;
}
.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: var(--gap);
}
.nav-link {
  color: var(--link);
  text-decoration: none;
  padding: calc(var(--space-y) / 4) calc(var(--space-x) / 2);
  border-radius: var(--radius-sm);
  transition: color var(--anim-duration) var(--anim-ease), background-color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
  color: var(--link-hover);
  background-color: var(--btn-ghost-bg-hover);
}
.burger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: calc(var(--space-y) / 4);
  flex-direction: column;
  gap: 4px;
}
.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--fg-on-surface);
  border-radius: 1px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
  .burger-btn {
    display: flex;
  }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--surface-1);
    box-shadow: var(--shadow-md);
    border-top: 1px solid var(--border-on-surface-light);
    padding: var(--space-y) var(--space-x);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
    z-index: 1000;
  }
  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .nav-list {
    flex-direction: column;
    gap: calc(var(--gap) / 2);
  }
  .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger-btn[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #dee2e6;
        color: #333;
        padding: 2.5rem 1rem;
        font-family: system-ui, -apple-system, sans-serif;
        margin-top: auto;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 2.5rem;
        margin-bottom: 2.5rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #eaeaea;
    }

    .footer-brand .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }

    .footer-brand .tagline {
        color: #7b8a8b;
        font-size: 0.95rem;
        line-height: 1.4;
    }

    .footer-nav h3,
    .footer-legal h3,
    .footer-contact h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #2c3e50;
    }

    .footer-nav ul,
    .footer-legal ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li,
    .footer-legal li {
        margin-bottom: 0.6rem;
    }

    .footer-nav a,
    .footer-legal a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #2980b9;
        text-decoration: underline;
    }

    .footer-contact address p {
        margin-bottom: 0.7rem;
        line-height: 1.5;
        font-style: normal;
    }

    .footer-contact a {
        color: #2980b9;
        text-decoration: none;
    }

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

    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        font-size: 0.85rem;
        color: #666;
    }

    .footer-disclaimer {
        flex: 1;
        min-width: 300px;
        line-height: 1.5;
    }

    .footer-disclaimer a {
        color: #2980b9;
        text-decoration: none;
    }

    .footer-disclaimer a:hover {
        text-decoration: underline;
    }

    .footer-copyright {
        text-align: right;
        flex-shrink: 0;
    }

    @media (max-width: 768px) {
        .footer-grid {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .footer-bottom {
            flex-direction: column;
            text-align: center;
            gap: 1rem;
        }
        .footer-copyright {
            text-align: center;
        }
        .footer-disclaimer {
            min-width: auto;
        }
    }

.cookie-lv8 {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1200;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 12px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

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

    .cookie-lv8__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

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

    .cookie-lv8__actions button {
        border: 0;
        border-radius: 999px;
        background: var(--neutral-100);
        color: var(--fg-on-page);
        padding: 7px 11px;
        cursor: pointer;
    }

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

    @media (max-width: 760px) {
        .cookie-lv8 {
            border-radius: var(--radius-lg);
        }
    }

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

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

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

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

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

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

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

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

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

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

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

.site-header {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  background-color: var(--surface-1);
  color: var(--fg-on-surface);
  box-shadow: var(--shadow-sm);
}
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-x);
}
.header-top {
  background-color: var(--brand);
  color: var(--fg-on-primary);
}
.header-top__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-y);
  padding-bottom: var(--space-y);
}
.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--fg-on-primary);
  text-decoration: none;
}
.contact-cta {
  background-color: var(--bg-accent);
  color: var(--fg-on-accent);
  padding: calc(var(--space-y) / 2) var(--space-x);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  transition: background-color var(--anim-duration) var(--anim-ease);
}
.contact-cta:hover {
  background-color: var(--bg-accent-hover);
}
.header-bottom {
  border-top: 1px solid var(--border-on-surface-light);
}
.header-bottom__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: calc(var(--space-y) / 1.5);
  padding-bottom: calc(var(--space-y) / 1.5);
  position: relative;
}
.main-nav {
  flex-grow: 1;
}
.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: var(--gap);
}
.nav-link {
  color: var(--link);
  text-decoration: none;
  padding: calc(var(--space-y) / 4) calc(var(--space-x) / 2);
  border-radius: var(--radius-sm);
  transition: color var(--anim-duration) var(--anim-ease), background-color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
  color: var(--link-hover);
  background-color: var(--btn-ghost-bg-hover);
}
.burger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: calc(var(--space-y) / 4);
  flex-direction: column;
  gap: 4px;
}
.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--fg-on-surface);
  border-radius: 1px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
  .burger-btn {
    display: flex;
  }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--surface-1);
    box-shadow: var(--shadow-md);
    border-top: 1px solid var(--border-on-surface-light);
    padding: var(--space-y) var(--space-x);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
    z-index: 1000;
  }
  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .nav-list {
    flex-direction: column;
    gap: calc(var(--gap) / 2);
  }
  .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger-btn[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #dee2e6;
        color: #333;
        padding: 2.5rem 1rem;
        font-family: system-ui, -apple-system, sans-serif;
        margin-top: auto;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 2.5rem;
        margin-bottom: 2.5rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #eaeaea;
    }

    .footer-brand .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }

    .footer-brand .tagline {
        color: #7b8a8b;
        font-size: 0.95rem;
        line-height: 1.4;
    }

    .footer-nav h3,
    .footer-legal h3,
    .footer-contact h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #2c3e50;
    }

    .footer-nav ul,
    .footer-legal ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li,
    .footer-legal li {
        margin-bottom: 0.6rem;
    }

    .footer-nav a,
    .footer-legal a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #2980b9;
        text-decoration: underline;
    }

    .footer-contact address p {
        margin-bottom: 0.7rem;
        line-height: 1.5;
        font-style: normal;
    }

    .footer-contact a {
        color: #2980b9;
        text-decoration: none;
    }

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

    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        font-size: 0.85rem;
        color: #666;
    }

    .footer-disclaimer {
        flex: 1;
        min-width: 300px;
        line-height: 1.5;
    }

    .footer-disclaimer a {
        color: #2980b9;
        text-decoration: none;
    }

    .footer-disclaimer a:hover {
        text-decoration: underline;
    }

    .footer-copyright {
        text-align: right;
        flex-shrink: 0;
    }

    @media (max-width: 768px) {
        .footer-grid {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .footer-bottom {
            flex-direction: column;
            text-align: center;
            gap: 1rem;
        }
        .footer-copyright {
            text-align: center;
        }
        .footer-disclaimer {
            min-width: auto;
        }
    }

.cookie-lv8 {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1200;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 12px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

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

    .cookie-lv8__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

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

    .cookie-lv8__actions button {
        border: 0;
        border-radius: 999px;
        background: var(--neutral-100);
        color: var(--fg-on-page);
        padding: 7px 11px;
        cursor: pointer;
    }

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

    @media (max-width: 760px) {
        .cookie-lv8 {
            border-radius: var(--radius-lg);
        }
    }

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

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

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

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

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

    .policy-layout-e .columns {
        columns: 2 260px;
        column-gap: 14px;
    }

    .policy-layout-e article {
        break-inside: avoid;
        margin-bottom: 12px;
        border-radius: var(--radius-md);
        border: 1px solid rgba(255, 255, 255, .22);
        padding: 12px;
        background: rgba(255, 255, 255, .05);
    }

    .policy-layout-e h3 {
        margin: 0;
    }

    .policy-layout-e .meta {
        margin: 7px 0 0;
        color: var(--neutral-100);
    }

    .policy-layout-e article p:last-child {
        margin: 7px 0 0;
        color: var(--neutral-100);
    }

.site-header {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  background-color: var(--surface-1);
  color: var(--fg-on-surface);
  box-shadow: var(--shadow-sm);
}
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-x);
}
.header-top {
  background-color: var(--brand);
  color: var(--fg-on-primary);
}
.header-top__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-y);
  padding-bottom: var(--space-y);
}
.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--fg-on-primary);
  text-decoration: none;
}
.contact-cta {
  background-color: var(--bg-accent);
  color: var(--fg-on-accent);
  padding: calc(var(--space-y) / 2) var(--space-x);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  transition: background-color var(--anim-duration) var(--anim-ease);
}
.contact-cta:hover {
  background-color: var(--bg-accent-hover);
}
.header-bottom {
  border-top: 1px solid var(--border-on-surface-light);
}
.header-bottom__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: calc(var(--space-y) / 1.5);
  padding-bottom: calc(var(--space-y) / 1.5);
  position: relative;
}
.main-nav {
  flex-grow: 1;
}
.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: var(--gap);
}
.nav-link {
  color: var(--link);
  text-decoration: none;
  padding: calc(var(--space-y) / 4) calc(var(--space-x) / 2);
  border-radius: var(--radius-sm);
  transition: color var(--anim-duration) var(--anim-ease), background-color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
  color: var(--link-hover);
  background-color: var(--btn-ghost-bg-hover);
}
.burger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: calc(var(--space-y) / 4);
  flex-direction: column;
  gap: 4px;
}
.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--fg-on-surface);
  border-radius: 1px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
  .burger-btn {
    display: flex;
  }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--surface-1);
    box-shadow: var(--shadow-md);
    border-top: 1px solid var(--border-on-surface-light);
    padding: var(--space-y) var(--space-x);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
    z-index: 1000;
  }
  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .nav-list {
    flex-direction: column;
    gap: calc(var(--gap) / 2);
  }
  .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger-btn[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #dee2e6;
        color: #333;
        padding: 2.5rem 1rem;
        font-family: system-ui, -apple-system, sans-serif;
        margin-top: auto;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 2.5rem;
        margin-bottom: 2.5rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #eaeaea;
    }

    .footer-brand .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }

    .footer-brand .tagline {
        color: #7b8a8b;
        font-size: 0.95rem;
        line-height: 1.4;
    }

    .footer-nav h3,
    .footer-legal h3,
    .footer-contact h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #2c3e50;
    }

    .footer-nav ul,
    .footer-legal ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li,
    .footer-legal li {
        margin-bottom: 0.6rem;
    }

    .footer-nav a,
    .footer-legal a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #2980b9;
        text-decoration: underline;
    }

    .footer-contact address p {
        margin-bottom: 0.7rem;
        line-height: 1.5;
        font-style: normal;
    }

    .footer-contact a {
        color: #2980b9;
        text-decoration: none;
    }

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

    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        font-size: 0.85rem;
        color: #666;
    }

    .footer-disclaimer {
        flex: 1;
        min-width: 300px;
        line-height: 1.5;
    }

    .footer-disclaimer a {
        color: #2980b9;
        text-decoration: none;
    }

    .footer-disclaimer a:hover {
        text-decoration: underline;
    }

    .footer-copyright {
        text-align: right;
        flex-shrink: 0;
    }

    @media (max-width: 768px) {
        .footer-grid {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .footer-bottom {
            flex-direction: column;
            text-align: center;
            gap: 1rem;
        }
        .footer-copyright {
            text-align: center;
        }
        .footer-disclaimer {
            min-width: auto;
        }
    }

.cookie-lv8 {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1200;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 12px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

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

    .cookie-lv8__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

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

    .cookie-lv8__actions button {
        border: 0;
        border-radius: 999px;
        background: var(--neutral-100);
        color: var(--fg-on-page);
        padding: 7px 11px;
        cursor: pointer;
    }

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

    @media (max-width: 760px) {
        .cookie-lv8 {
            border-radius: var(--radius-lg);
        }
    }

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

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

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

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

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

.site-header {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  background-color: var(--surface-1);
  color: var(--fg-on-surface);
  box-shadow: var(--shadow-sm);
}
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-x);
}
.header-top {
  background-color: var(--brand);
  color: var(--fg-on-primary);
}
.header-top__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-y);
  padding-bottom: var(--space-y);
}
.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--fg-on-primary);
  text-decoration: none;
}
.contact-cta {
  background-color: var(--bg-accent);
  color: var(--fg-on-accent);
  padding: calc(var(--space-y) / 2) var(--space-x);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  transition: background-color var(--anim-duration) var(--anim-ease);
}
.contact-cta:hover {
  background-color: var(--bg-accent-hover);
}
.header-bottom {
  border-top: 1px solid var(--border-on-surface-light);
}
.header-bottom__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: calc(var(--space-y) / 1.5);
  padding-bottom: calc(var(--space-y) / 1.5);
  position: relative;
}
.main-nav {
  flex-grow: 1;
}
.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: var(--gap);
}
.nav-link {
  color: var(--link);
  text-decoration: none;
  padding: calc(var(--space-y) / 4) calc(var(--space-x) / 2);
  border-radius: var(--radius-sm);
  transition: color var(--anim-duration) var(--anim-ease), background-color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
  color: var(--link-hover);
  background-color: var(--btn-ghost-bg-hover);
}
.burger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: calc(var(--space-y) / 4);
  flex-direction: column;
  gap: 4px;
}
.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--fg-on-surface);
  border-radius: 1px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
  .burger-btn {
    display: flex;
  }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--surface-1);
    box-shadow: var(--shadow-md);
    border-top: 1px solid var(--border-on-surface-light);
    padding: var(--space-y) var(--space-x);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
    z-index: 1000;
  }
  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .nav-list {
    flex-direction: column;
    gap: calc(var(--gap) / 2);
  }
  .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger-btn[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #dee2e6;
        color: #333;
        padding: 2.5rem 1rem;
        font-family: system-ui, -apple-system, sans-serif;
        margin-top: auto;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 2.5rem;
        margin-bottom: 2.5rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #eaeaea;
    }

    .footer-brand .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }

    .footer-brand .tagline {
        color: #7b8a8b;
        font-size: 0.95rem;
        line-height: 1.4;
    }

    .footer-nav h3,
    .footer-legal h3,
    .footer-contact h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #2c3e50;
    }

    .footer-nav ul,
    .footer-legal ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li,
    .footer-legal li {
        margin-bottom: 0.6rem;
    }

    .footer-nav a,
    .footer-legal a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #2980b9;
        text-decoration: underline;
    }

    .footer-contact address p {
        margin-bottom: 0.7rem;
        line-height: 1.5;
        font-style: normal;
    }

    .footer-contact a {
        color: #2980b9;
        text-decoration: none;
    }

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

    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        font-size: 0.85rem;
        color: #666;
    }

    .footer-disclaimer {
        flex: 1;
        min-width: 300px;
        line-height: 1.5;
    }

    .footer-disclaimer a {
        color: #2980b9;
        text-decoration: none;
    }

    .footer-disclaimer a:hover {
        text-decoration: underline;
    }

    .footer-copyright {
        text-align: right;
        flex-shrink: 0;
    }

    @media (max-width: 768px) {
        .footer-grid {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .footer-bottom {
            flex-direction: column;
            text-align: center;
            gap: 1rem;
        }
        .footer-copyright {
            text-align: center;
        }
        .footer-disclaimer {
            min-width: auto;
        }
    }

.cookie-lv8 {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1200;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 12px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

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

    .cookie-lv8__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

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

    .cookie-lv8__actions button {
        border: 0;
        border-radius: 999px;
        background: var(--neutral-100);
        color: var(--fg-on-page);
        padding: 7px 11px;
        cursor: pointer;
    }

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

    @media (max-width: 760px) {
        .cookie-lv8 {
            border-radius: var(--radius-lg);
        }
    }

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

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

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

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

    .nf404-v10 a {
        display: inline-block;
        margin-top: 18px;
        color: var(--link);
        text-decoration: none;
        border-bottom: 2px solid var(--link);
        padding-bottom: 2px;
    }