:root {
  --font-family: "Noto Sans", sans-serif;
  --font-size-base: 16px;
  --line-height-base: 1.5;

  --max-w: 1120px;
  --space-x: 0.85rem;
  --space-y: 1.01rem;
  --gap: 0.86rem;

  --radius-xl: 0.97rem;
  --radius-lg: 0.69rem;
  --radius-md: 0.48rem;
  --radius-sm: 0.29rem;

  --shadow-sm: 0 2px 6px rgba(0,0,0,0.11);
  --shadow-md: 0 5px 18px rgba(0,0,0,0.14);
  --shadow-lg: 0 10px 32px rgba(0,0,0,0.17);

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

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

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

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

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

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

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

  --bg-primary: #2C6E49;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #1F4D33;
  --ring: #2C6E49;

  --bg-accent: #F39C12;
  --fg-on-accent: #FFFFFF;
  --bg-accent-hover: #D35400;

  --link: #2C6E49;
  --link-hover: #1F4D33;

  --gradient-hero: linear-gradient(135deg, #2C6E49 0%, #1F4D33 100%);
  --gradient-accent: linear-gradient(135deg, #E67E22 0%, #D35400 100%);

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

header {
        background: var(--surface-1);
        border-bottom: 1px solid var(--border-on-surface);
        padding: var(--space-y) var(--space-x);
        position: sticky;
        top: 0;
        z-index: 100;
        box-shadow: var(--shadow-sm);
    }
    .header-inner {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
    }
    .header-left {
        display: flex;
        align-items: center;
        gap: calc(var(--gap) * 2);
    }
    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        line-height: 1;
        letter-spacing: -0.02em;
    }
    .nav-menu ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: var(--gap);
    }
    .nav-menu a {
        text-decoration: none;
        color: var(--fg-on-surface);
        font-size: var(--font-size-base);
        padding: 0.25rem 0;
        border-bottom: 2px solid transparent;
        transition: border-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }
    .nav-menu a:hover {
        color: var(--brand);
        border-bottom-color: var(--brand);
    }
    .header-right {
        display: flex;
        align-items: center;
        gap: var(--gap);
    }
    .contact-link {
        text-decoration: none;
        color: var(--fg-on-surface);
        font-size: var(--font-size-base);
        transition: color var(--anim-duration) var(--anim-ease);
    }
    .contact-link:hover {
        color: var(--brand);
    }
    .btn-action {
        display: inline-block;
        background: var(--brand);
        color: var(--brand-contrast);
        padding: 0.5rem 1.25rem;
        border-radius: var(--radius-md);
        text-decoration: none;
        font-size: var(--font-size-base);
        font-weight: 600;
        transition: background var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-sm);
    }
    .btn-action:hover {
        background: var(--bg-primary-hover);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }
    .burger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 2.5rem;
        height: 2.5rem;
        background: none;
        border: none;
        cursor: pointer;
        gap: 5px;
        padding: 0;
        z-index: 110;
    }
    .burger span {
        display: block;
        width: 24px;
        height: 3px;
        background: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }
    .burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    .burger.active span:nth-child(2) {
        opacity: 0;
    }
    .burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    @media (max-width: 767px) {
        .header-left {
            gap: var(--gap);
        }
        .nav-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: var(--surface-1);
            display: flex;
            align-items: center;
            justify-content: center;
            transform: translateX(100%);
            transition: transform var(--anim-duration) var(--anim-ease);
            z-index: 105;
        }
        .nav-menu.open {
            transform: translateX(0);
        }
        .nav-menu ul {
            flex-direction: column;
            align-items: center;
            gap: calc(var(--gap) * 2);
        }
        .nav-menu a {
            font-size: calc(var(--font-size-base) * 1.25);
        }
        .header-right {
            display: none;
        }
        .burger {
            display: flex;
        }
    }

footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 40px 20px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 30px;
}
.footer-column {
  flex: 1 1 250px;
  min-width: 200px;
}
.logo {
  font-size: 2rem;
  font-weight: 700;
  color: #f5a623;
  margin-bottom: 10px;
}
.footer-tagline {
  font-size: 0.95rem;
  color: #b0b0b0;
}
.footer-nav nav ul {
  list-style: none;
  padding: 0;
  margin: 0 0 15px;
}
.footer-nav nav ul li {
  margin-bottom: 8px;
}
.footer-nav nav ul li a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-nav nav ul li a:hover {
  color: #f5a623;
}
.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-legal a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}
.footer-legal a:hover {
  color: #f5a623;
}
.contact-info p {
  margin: 5px 0;
  font-size: 0.95rem;
}
.contact-info a {
  color: #f5a623;
  text-decoration: none;
}
.contact-info a:hover {
  text-decoration: underline;
}
.footer-social {
  margin-top: 15px;
  display: flex;
  gap: 15px;
}
.footer-social a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}
.footer-social a:hover {
  color: #f5a623;
}
.footer-disclaimer {
  max-width: 1200px;
  margin: 30px auto 10px;
  padding-top: 15px;
  border-top: 1px solid #333;
  font-size: 0.85rem;
  color: #999;
  text-align: center;
}
.footer-copyright {
  text-align: center;
  font-size: 0.85rem;
  color: #777;
  margin-top: 10px;
}
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-column {
    flex: 1 1 100%;
  }
  .footer-social {
    justify-content: center;
  }
}

.cookie-lv14 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .cookie-lv14__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * 0.8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .cookie-lv14__text {
        flex: 1 1 420px;
    }

    .cookie-lv14__badge {
        display: inline-flex;
        align-items: center;
        padding: 3px 8px;
        border-radius: 999px;
        font-size: 12px;
        font-weight: 700;
        margin-bottom: 6px;
        background: var(--surface-2);
        color: var(--fg-muted);
    }

    .cookie-lv14__text strong {
        display: block;
        margin-bottom: 4px;
        color: var(--fg-on-surface);
    }

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

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

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

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

.wp-lang-switcher-v7 {
        position: fixed;
        left: clamp(14px, 2vw, 24px);
        bottom: clamp(14px, 2vw, 24px);
        z-index: 99999;
        font-family: inherit;
    }

    .wp-lang-switcher-v7__trigger {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        border: 1px solid var(--border-on-surface);
        border-radius: 999px;
        padding: 10px 14px;
        background: var(--surface-1);
        color: var(--fg-on-surface);
        box-shadow: var(--shadow-md);
        cursor: pointer;
        transition: transform var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    }

    .wp-lang-switcher-v7__trigger:hover {
        transform: translateY(-1px);
        box-shadow: var(--shadow-lg);
    }

    .wp-lang-switcher-v7__icon {
        font-size: 15px;
        line-height: 1;
    }

    .wp-lang-switcher-v7__current {
        font-weight: 700;
        font-size: 12px;
        letter-spacing: 0.06em;
    }

    .wp-lang-switcher-v7__panel {
        margin-top: 10px;
        display: grid;
        gap: 6px;
        opacity: 0;
        pointer-events: none;
        transform: translateY(8px);
        transition: opacity var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
    }

    .wp-lang-switcher-v7__panel.open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .wp-lang-switcher-v7__panel button,
    .wp-lang-switcher-v7__panel a {
        min-width: 48px;
        border-radius: var(--radius-md);
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        padding: 8px 10px;
        text-decoration: none;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.04em;
        text-align: center;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .wp-lang-switcher-v7__panel button:hover,
    .wp-lang-switcher-v7__panel a:hover {
        background: var(--accent);
        border-color: transparent;
        color: var(--accent-contrast);
    }

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

    .nfintro-v10__shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: var(--gap);
    }

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

    .nfintro-v10__subtitle {
        margin: 0;
        max-width: 58ch;
        color: var(--fg-on-surface-light);
    }

    .nfintro-v10__split {
        display: grid;
        grid-template-columns: 1.1fr .9fr;
        gap: calc(var(--gap) * 1.4);
        align-items: start;
    }

    .nfintro-v10__desc {margin: 0; max-width: 60ch;}

    .nfintro-v10__actions {
        display: grid;
        gap: .7rem;
        justify-items: start;
    }

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

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

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

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

    .nfintro-v10__rail div {
        padding: 1rem var(--space-x);
        background: var(--surface-1);
        display: grid;
        gap: .3rem;
    }

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

    .nfintro-v10__rail strong {font-size: 1.05rem;}

    @media (max-width: 900px) {
        .nfintro-v10__split {grid-template-columns: 1fr;}
        .nfintro-v10__rail {grid-template-columns: repeat(2, minmax(0, 1fr));}
    }

.next-ux19 {
        padding: calc(var(--space-y) * 1.9) var(--space-x);
        background: var(--gradient-hero);
        color: var(--brand-contrast)
    }

    .next-ux19 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: var(--gap)
    }

    .next-ux19 h2, .next-ux19 h3, .next-ux19 p {
        margin: 0
    }

    .next-ux19 a {
        text-decoration: none
    }

    .next-ux19 .center, .next-ux19 .banner, .next-ux19 .stack, .next-ux19 .bar, .next-ux19 .split, .next-ux19 .duo article {
        padding: .9rem;
        border-radius: var(--radius-xl);
        background: var(--chip-bg);
        border: 1px solid var(--border-on-surface)
    }

    .next-ux19 .center {
        display: grid;
        gap: .5rem;
        justify-items: center;
        text-align: center
    }

    .next-ux19 .split {
        display: grid;
        grid-template-columns:1fr auto;
        gap: var(--gap);
        align-items: center
    }

    .next-ux19 .actions {
        display: flex;
        gap: .45rem;
        flex-wrap: wrap
    }

    .next-ux19 .actions a, .next-ux19 .center a, .next-ux19 .banner > a, .next-ux19 .duo a {
        display: inline-flex;
        min-height: 2.35rem;
        padding: 0 .85rem;
        align-items: center;
        border-radius: var(--radius-sm);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border: 1px solid var(--ring)
    }

    .next-ux19 .banner {
        display: grid;
        gap: .6rem
    }

    .next-ux19 .numbers {
        display: grid;
        grid-template-columns:repeat(3, minmax(0, 1fr));
        gap: .5rem
    }

    .next-ux19 .numbers div {
        padding: .6rem;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light)
    }

    .next-ux19 .duo {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: var(--gap)
    }

    .next-ux19 .duo article {
        display: grid;
        gap: .45rem
    }

    .next-ux19 .stack {
        display: grid;
        gap: .6rem;
        justify-items: start
    }

    .next-ux19 .chips {
        display: flex;
        gap: .35rem;
        flex-wrap: wrap
    }

    .next-ux19 .chips span {
        padding: .28rem .5rem;
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light)
    }

    .next-ux19 .bar {
        display: grid;
        grid-template-columns:1fr auto;
        gap: var(--gap);
        align-items: center
    }

    @media (max-width: 820px) {
        .next-ux19 .split, .next-ux19 .bar, .next-ux19 .duo {
            grid-template-columns:1fr
        }

        .next-ux19 .numbers {
            grid-template-columns:1fr 1fr
        }
    }

    @media (max-width: 620px) {
        .next-ux19 .numbers {
            grid-template-columns:1fr
        }
    }

body{margin:0;padding:0;font-family:var(--font-family);font-size:var(--font-size-base);line-height:var(--line-height-base);box-sizing:border-box;background:var(--bg-page);color:var(--fg-on-page)}
*{box-sizing:border-box;}
.rec-lx6{padding:calc(var(--space-y)*2.65) var(--space-x)}
.rec-lx6 .rec-grid{max-width:var(--max-w);margin:0 auto;display:grid;grid-template-columns:repeat(12,minmax(0,1fr));gap:.6rem}
.rec-lx6 .rec-main{grid-column:span 12;padding:1rem;border-radius:var(--radius-xl);border:1px solid var(--border-on-surface);background:var(--surface-1)}
.rec-lx6 .rec-main h2{margin:0;font-size:clamp(1.75rem,3.1vw,2.45rem)}
.rec-lx6 .rec-main p{margin:.38rem 0 0;color:var(--fg-on-surface-light)}
.rec-lx6 .rec-item{grid-column:span 4;padding:.9rem;border-radius:var(--radius-md);border:1px solid var(--border-on-surface);background:var(--surface-2)}
.rec-lx6 .rec-item:nth-child(odd){background:var(--surface-1)}
.rec-lx6 h3{margin:0 0 .22rem;font-size:1rem}
.rec-lx6 .rec-item p{margin:0 0 .55rem;color:var(--fg-on-surface-light)}
.rec-lx6 a{text-decoration:none;color:var(--link);font-weight:700}
@media (max-width:920px){.rec-lx6 .rec-item{grid-column:span 6}}@media (max-width:620px){.rec-lx6 .rec-item{grid-column:1/-1}}

.why-choose {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: clamp(40px, 6vw, 80px) clamp(16px, 3vw, 40px);
    }

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

    .why-choose .why-choose__h {
        text-align: center;
        margin-bottom: clamp(32px, 5vw, 64px);

        transform: translateY(20px);
    }

    .why-choose h2 {
        font-size: clamp(32px, 5vw, 48px);
        margin: 0 0 1rem;
        color: var(--fg-on-primary);
    }

    .why-choose .why-choose__subtitle {
        font-size: clamp(16px, 2vw, 20px);
        margin: 0;
        opacity: 0.9;
    }

    .why-choose .why-choose__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: var(--gap);
    }

    .why-choose .why-choose__item {
        background: var(--fg-on-primary);
        padding: clamp(20px, 3vw, 32px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface-light);
        transition: transform var(--anim-duration) var(--anim-ease);

        transform: translateY(30px);
    }

    .why-choose .why-choose__item:hover {
        transform: translateY(-4px);
    }

    .why-choose .why-choose__number {
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-radius: var(--radius-md);
        margin-bottom: 1rem;
        font-size: 24px;
    }

    .why-choose .why-choose__item h3 {
        font-size: clamp(18px, 2.2vw, 22px);
        margin: 0 0 0.75rem;
        color: var(--fg-on-surface-light);
    }

    .why-choose .why-choose__item p {
        margin: 0;
        color: var(--fg-on-surface-light);
        opacity: 0.85;
        line-height: var(--line-height-base);
    }

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

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

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

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

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

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

    .nfsocial-v8__quotes article {
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        padding: 14px;
    }

    .nfsocial-v8__quotes p {
        margin: 0;
        color: var(--fg-on-page);
    }

    .nfsocial-v8__quotes strong {
        display: block;
        margin-top: 10px;
        color: var(--neutral-900);
    }

    .nfsocial-v8__quotes span {
        display: block;
        margin-top: 4px;
        color: var(--neutral-600);
    }

header {
        background: var(--surface-1);
        border-bottom: 1px solid var(--border-on-surface);
        padding: var(--space-y) var(--space-x);
        position: sticky;
        top: 0;
        z-index: 100;
        box-shadow: var(--shadow-sm);
    }
    .header-inner {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
    }
    .header-left {
        display: flex;
        align-items: center;
        gap: calc(var(--gap) * 2);
    }
    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        line-height: 1;
        letter-spacing: -0.02em;
    }
    .nav-menu ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: var(--gap);
    }
    .nav-menu a {
        text-decoration: none;
        color: var(--fg-on-surface);
        font-size: var(--font-size-base);
        padding: 0.25rem 0;
        border-bottom: 2px solid transparent;
        transition: border-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }
    .nav-menu a:hover {
        color: var(--brand);
        border-bottom-color: var(--brand);
    }
    .header-right {
        display: flex;
        align-items: center;
        gap: var(--gap);
    }
    .contact-link {
        text-decoration: none;
        color: var(--fg-on-surface);
        font-size: var(--font-size-base);
        transition: color var(--anim-duration) var(--anim-ease);
    }
    .contact-link:hover {
        color: var(--brand);
    }
    .btn-action {
        display: inline-block;
        background: var(--brand);
        color: var(--brand-contrast);
        padding: 0.5rem 1.25rem;
        border-radius: var(--radius-md);
        text-decoration: none;
        font-size: var(--font-size-base);
        font-weight: 600;
        transition: background var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-sm);
    }
    .btn-action:hover {
        background: var(--bg-primary-hover);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }
    .burger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 2.5rem;
        height: 2.5rem;
        background: none;
        border: none;
        cursor: pointer;
        gap: 5px;
        padding: 0;
        z-index: 110;
    }
    .burger span {
        display: block;
        width: 24px;
        height: 3px;
        background: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }
    .burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    .burger.active span:nth-child(2) {
        opacity: 0;
    }
    .burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    @media (max-width: 767px) {
        .header-left {
            gap: var(--gap);
        }
        .nav-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: var(--surface-1);
            display: flex;
            align-items: center;
            justify-content: center;
            transform: translateX(100%);
            transition: transform var(--anim-duration) var(--anim-ease);
            z-index: 105;
        }
        .nav-menu.open {
            transform: translateX(0);
        }
        .nav-menu ul {
            flex-direction: column;
            align-items: center;
            gap: calc(var(--gap) * 2);
        }
        .nav-menu a {
            font-size: calc(var(--font-size-base) * 1.25);
        }
        .header-right {
            display: none;
        }
        .burger {
            display: flex;
        }
    }

footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 40px 20px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 30px;
}
.footer-column {
  flex: 1 1 250px;
  min-width: 200px;
}
.logo {
  font-size: 2rem;
  font-weight: 700;
  color: #f5a623;
  margin-bottom: 10px;
}
.footer-tagline {
  font-size: 0.95rem;
  color: #b0b0b0;
}
.footer-nav nav ul {
  list-style: none;
  padding: 0;
  margin: 0 0 15px;
}
.footer-nav nav ul li {
  margin-bottom: 8px;
}
.footer-nav nav ul li a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-nav nav ul li a:hover {
  color: #f5a623;
}
.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-legal a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}
.footer-legal a:hover {
  color: #f5a623;
}
.contact-info p {
  margin: 5px 0;
  font-size: 0.95rem;
}
.contact-info a {
  color: #f5a623;
  text-decoration: none;
}
.contact-info a:hover {
  text-decoration: underline;
}
.footer-social {
  margin-top: 15px;
  display: flex;
  gap: 15px;
}
.footer-social a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}
.footer-social a:hover {
  color: #f5a623;
}
.footer-disclaimer {
  max-width: 1200px;
  margin: 30px auto 10px;
  padding-top: 15px;
  border-top: 1px solid #333;
  font-size: 0.85rem;
  color: #999;
  text-align: center;
}
.footer-copyright {
  text-align: center;
  font-size: 0.85rem;
  color: #777;
  margin-top: 10px;
}
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-column {
    flex: 1 1 100%;
  }
  .footer-social {
    justify-content: center;
  }
}

.cookie-lv14 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .cookie-lv14__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * 0.8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .cookie-lv14__text {
        flex: 1 1 420px;
    }

    .cookie-lv14__badge {
        display: inline-flex;
        align-items: center;
        padding: 3px 8px;
        border-radius: 999px;
        font-size: 12px;
        font-weight: 700;
        margin-bottom: 6px;
        background: var(--surface-2);
        color: var(--fg-muted);
    }

    .cookie-lv14__text strong {
        display: block;
        margin-bottom: 4px;
        color: var(--fg-on-surface);
    }

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

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

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

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

.identity-ux18 {
        padding: clamp(50px, 7vw, 90px) clamp(16px, 4vw, 36px);
        background: var(--neutral-100);
        color: var(--neutral-900);
    }

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

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

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

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

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

    .identity-ux18__grid article {
        border: 1px solid var(--neutral-300);
        border-radius: var(--radius-lg);
        background: var(--neutral-100);
        padding: var(--space-y) var(--space-x);
    }

    .identity-ux18__grid h3 {
        margin: 0;
    }

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

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

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

.partners--colored-v5 {

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

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

.partners__header {
    text-align: center;
    margin-bottom: 20px;
}

.partners__header h2 {
    margin: 0 0 4px;
    font-size: clamp(22px,3.5vw,28px);
    color: var(--brand-contrast);
}

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

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

.partners__logo {
    border-radius: var(--radius-xl);
    padding: 10px 12px;
    background: rgba(15,23,42,0.96);
    border: 1px solid rgba(148,163,184,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
}

.partners__logo--gold {
    border-color: var(--accent);
}
.partners__logo--prime {
    border-color: var(--bg-primary);
}
.partners__logo--trusted {
    border-color: var(--accent);
}

.partners__logo-text {
    font-size: 0.9rem;
    color: var(--neutral-0);
}

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

header {
        background: var(--surface-1);
        border-bottom: 1px solid var(--border-on-surface);
        padding: var(--space-y) var(--space-x);
        position: sticky;
        top: 0;
        z-index: 100;
        box-shadow: var(--shadow-sm);
    }
    .header-inner {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
    }
    .header-left {
        display: flex;
        align-items: center;
        gap: calc(var(--gap) * 2);
    }
    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        line-height: 1;
        letter-spacing: -0.02em;
    }
    .nav-menu ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: var(--gap);
    }
    .nav-menu a {
        text-decoration: none;
        color: var(--fg-on-surface);
        font-size: var(--font-size-base);
        padding: 0.25rem 0;
        border-bottom: 2px solid transparent;
        transition: border-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }
    .nav-menu a:hover {
        color: var(--brand);
        border-bottom-color: var(--brand);
    }
    .header-right {
        display: flex;
        align-items: center;
        gap: var(--gap);
    }
    .contact-link {
        text-decoration: none;
        color: var(--fg-on-surface);
        font-size: var(--font-size-base);
        transition: color var(--anim-duration) var(--anim-ease);
    }
    .contact-link:hover {
        color: var(--brand);
    }
    .btn-action {
        display: inline-block;
        background: var(--brand);
        color: var(--brand-contrast);
        padding: 0.5rem 1.25rem;
        border-radius: var(--radius-md);
        text-decoration: none;
        font-size: var(--font-size-base);
        font-weight: 600;
        transition: background var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-sm);
    }
    .btn-action:hover {
        background: var(--bg-primary-hover);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }
    .burger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 2.5rem;
        height: 2.5rem;
        background: none;
        border: none;
        cursor: pointer;
        gap: 5px;
        padding: 0;
        z-index: 110;
    }
    .burger span {
        display: block;
        width: 24px;
        height: 3px;
        background: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }
    .burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    .burger.active span:nth-child(2) {
        opacity: 0;
    }
    .burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    @media (max-width: 767px) {
        .header-left {
            gap: var(--gap);
        }
        .nav-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: var(--surface-1);
            display: flex;
            align-items: center;
            justify-content: center;
            transform: translateX(100%);
            transition: transform var(--anim-duration) var(--anim-ease);
            z-index: 105;
        }
        .nav-menu.open {
            transform: translateX(0);
        }
        .nav-menu ul {
            flex-direction: column;
            align-items: center;
            gap: calc(var(--gap) * 2);
        }
        .nav-menu a {
            font-size: calc(var(--font-size-base) * 1.25);
        }
        .header-right {
            display: none;
        }
        .burger {
            display: flex;
        }
    }

footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 40px 20px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 30px;
}
.footer-column {
  flex: 1 1 250px;
  min-width: 200px;
}
.logo {
  font-size: 2rem;
  font-weight: 700;
  color: #f5a623;
  margin-bottom: 10px;
}
.footer-tagline {
  font-size: 0.95rem;
  color: #b0b0b0;
}
.footer-nav nav ul {
  list-style: none;
  padding: 0;
  margin: 0 0 15px;
}
.footer-nav nav ul li {
  margin-bottom: 8px;
}
.footer-nav nav ul li a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-nav nav ul li a:hover {
  color: #f5a623;
}
.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-legal a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}
.footer-legal a:hover {
  color: #f5a623;
}
.contact-info p {
  margin: 5px 0;
  font-size: 0.95rem;
}
.contact-info a {
  color: #f5a623;
  text-decoration: none;
}
.contact-info a:hover {
  text-decoration: underline;
}
.footer-social {
  margin-top: 15px;
  display: flex;
  gap: 15px;
}
.footer-social a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}
.footer-social a:hover {
  color: #f5a623;
}
.footer-disclaimer {
  max-width: 1200px;
  margin: 30px auto 10px;
  padding-top: 15px;
  border-top: 1px solid #333;
  font-size: 0.85rem;
  color: #999;
  text-align: center;
}
.footer-copyright {
  text-align: center;
  font-size: 0.85rem;
  color: #777;
  margin-top: 10px;
}
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-column {
    flex: 1 1 100%;
  }
  .footer-social {
    justify-content: center;
  }
}

.cookie-lv14 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .cookie-lv14__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * 0.8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .cookie-lv14__text {
        flex: 1 1 420px;
    }

    .cookie-lv14__badge {
        display: inline-flex;
        align-items: center;
        padding: 3px 8px;
        border-radius: 999px;
        font-size: 12px;
        font-weight: 700;
        margin-bottom: 6px;
        background: var(--surface-2);
        color: var(--fg-muted);
    }

    .cookie-lv14__text strong {
        display: block;
        margin-bottom: 4px;
        color: var(--fg-on-surface);
    }

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

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

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

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

.about-struct-v2 {
        padding: calc(var(--space-y) * 2) var(--space-x);
        background: var(--bg-alt);
        color: var(--fg-on-alt)
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.hiw-ribbon-c1 {
        padding: clamp(3.5rem, 7vw, 6rem) var(--space-x);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

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

    .hiw-ribbon-c1__head {
        margin-bottom: 1.25rem;
    }

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

    .hiw-ribbon-c1__head h2 {
        margin: .5rem 0 0;
        font-size: clamp(2rem, 4vw, 3.2rem);
    }

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

    .hiw-ribbon-c1__track article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--fg-on-primary);
        color:  var(--bg-primary);
        border: 1px solid rgba(255, 255, 255, .18);
        box-shadow: var(--shadow-md);
        position: relative;
    }

    .hiw-ribbon-c1__track article::after {
        content: '';
        position: absolute;
        inset: auto 1rem 0.7rem 1rem;
        height: 2px;
        background: linear-gradient(90deg, rgba(255, 255, 255, .45), transparent);
    }

    .hiw-ribbon-c1__track span {
        display: inline-flex;
        width: 2.4rem;
        height: 2.4rem;
        align-items: center;
        justify-content: center;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-weight: 700;
    }

    .hiw-ribbon-c1__track h3 {
        margin: .8rem 0 .35rem;
    }

    .hiw-ribbon-c1__track p {
        margin: 0;
    }

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

.plans-ux6{padding:clamp(50px,7vw,92px) clamp(16px,4vw,36px);background:var(--gradient-hero);color:var(--fg-on-primary)}.plans-ux6__wrap{max-width:var(--max-w);margin:0 auto}.plans-ux6__top p{margin:8px 0 12px;color:rgba(255,255,255,.88)}.plans-ux6__matrix{display:grid;grid-template-columns:repeat(12,1fr);gap:10px}.plans-ux6__matrix article{grid-column:span 4;border:1px solid rgba(255,255,255,.28);border-radius:var(--radius-md);background:rgba(255,255,255,.1);padding:12px}.plans-ux6__matrix article:nth-child(1){grid-column:span 6}.plans-ux6__matrix article:nth-child(2){grid-column:span 6}.plans-ux6 h3{margin:0}.plans-ux6 p{margin:7px 0}.plans-ux6 span{display:inline-flex;margin:0 6px 6px 0;padding:4px 8px;border-radius:999px;border:1px solid rgba(255,255,255,.3)}.plans-ux6 button{width:100%;margin-top:8px;border:0;border-radius:var(--radius-sm);padding:8px 10px;background:var(--bg-accent);color:var(--fg-on-accent)}@media(max-width:900px){.plans-ux6__matrix article{grid-column:span 6}}@media(max-width:640px){.plans-ux6__matrix article{grid-column:span 12}}

header {
        background: var(--surface-1);
        border-bottom: 1px solid var(--border-on-surface);
        padding: var(--space-y) var(--space-x);
        position: sticky;
        top: 0;
        z-index: 100;
        box-shadow: var(--shadow-sm);
    }
    .header-inner {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
    }
    .header-left {
        display: flex;
        align-items: center;
        gap: calc(var(--gap) * 2);
    }
    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        line-height: 1;
        letter-spacing: -0.02em;
    }
    .nav-menu ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: var(--gap);
    }
    .nav-menu a {
        text-decoration: none;
        color: var(--fg-on-surface);
        font-size: var(--font-size-base);
        padding: 0.25rem 0;
        border-bottom: 2px solid transparent;
        transition: border-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }
    .nav-menu a:hover {
        color: var(--brand);
        border-bottom-color: var(--brand);
    }
    .header-right {
        display: flex;
        align-items: center;
        gap: var(--gap);
    }
    .contact-link {
        text-decoration: none;
        color: var(--fg-on-surface);
        font-size: var(--font-size-base);
        transition: color var(--anim-duration) var(--anim-ease);
    }
    .contact-link:hover {
        color: var(--brand);
    }
    .btn-action {
        display: inline-block;
        background: var(--brand);
        color: var(--brand-contrast);
        padding: 0.5rem 1.25rem;
        border-radius: var(--radius-md);
        text-decoration: none;
        font-size: var(--font-size-base);
        font-weight: 600;
        transition: background var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-sm);
    }
    .btn-action:hover {
        background: var(--bg-primary-hover);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }
    .burger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 2.5rem;
        height: 2.5rem;
        background: none;
        border: none;
        cursor: pointer;
        gap: 5px;
        padding: 0;
        z-index: 110;
    }
    .burger span {
        display: block;
        width: 24px;
        height: 3px;
        background: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }
    .burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    .burger.active span:nth-child(2) {
        opacity: 0;
    }
    .burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    @media (max-width: 767px) {
        .header-left {
            gap: var(--gap);
        }
        .nav-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: var(--surface-1);
            display: flex;
            align-items: center;
            justify-content: center;
            transform: translateX(100%);
            transition: transform var(--anim-duration) var(--anim-ease);
            z-index: 105;
        }
        .nav-menu.open {
            transform: translateX(0);
        }
        .nav-menu ul {
            flex-direction: column;
            align-items: center;
            gap: calc(var(--gap) * 2);
        }
        .nav-menu a {
            font-size: calc(var(--font-size-base) * 1.25);
        }
        .header-right {
            display: none;
        }
        .burger {
            display: flex;
        }
    }

footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 40px 20px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 30px;
}
.footer-column {
  flex: 1 1 250px;
  min-width: 200px;
}
.logo {
  font-size: 2rem;
  font-weight: 700;
  color: #f5a623;
  margin-bottom: 10px;
}
.footer-tagline {
  font-size: 0.95rem;
  color: #b0b0b0;
}
.footer-nav nav ul {
  list-style: none;
  padding: 0;
  margin: 0 0 15px;
}
.footer-nav nav ul li {
  margin-bottom: 8px;
}
.footer-nav nav ul li a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-nav nav ul li a:hover {
  color: #f5a623;
}
.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-legal a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}
.footer-legal a:hover {
  color: #f5a623;
}
.contact-info p {
  margin: 5px 0;
  font-size: 0.95rem;
}
.contact-info a {
  color: #f5a623;
  text-decoration: none;
}
.contact-info a:hover {
  text-decoration: underline;
}
.footer-social {
  margin-top: 15px;
  display: flex;
  gap: 15px;
}
.footer-social a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}
.footer-social a:hover {
  color: #f5a623;
}
.footer-disclaimer {
  max-width: 1200px;
  margin: 30px auto 10px;
  padding-top: 15px;
  border-top: 1px solid #333;
  font-size: 0.85rem;
  color: #999;
  text-align: center;
}
.footer-copyright {
  text-align: center;
  font-size: 0.85rem;
  color: #777;
  margin-top: 10px;
}
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-column {
    flex: 1 1 100%;
  }
  .footer-social {
    justify-content: center;
  }
}

.cookie-lv14 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .cookie-lv14__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * 0.8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .cookie-lv14__text {
        flex: 1 1 420px;
    }

    .cookie-lv14__badge {
        display: inline-flex;
        align-items: center;
        padding: 3px 8px;
        border-radius: 999px;
        font-size: 12px;
        font-weight: 700;
        margin-bottom: 6px;
        background: var(--surface-2);
        color: var(--fg-muted);
    }

    .cookie-lv14__text strong {
        display: block;
        margin-bottom: 4px;
        color: var(--fg-on-surface);
    }

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

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

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

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

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

body{margin:0;padding:0;font-family:var(--font-family);font-size:var(--font-size-base);line-height:var(--line-height-base);box-sizing:border-box;background:var(--bg-page);color:var(--fg-on-page)}
*{box-sizing:border-box;}
.frm-lx6{padding:calc(var(--space-y)*2.85) var(--space-x)}
.frm-lx6 .frm-max{max-width:var(--max-w);margin:0 auto}
.frm-lx6 .frm-head{margin-bottom:.9rem}
.frm-lx6 h2{margin:0;font-size:clamp(1.78rem,3.3vw,2.5rem)}
.frm-lx6 .frm-head p{margin:.4rem 0 0;color:var(--fg-on-surface-light)}
.frm-lx6 .frm-columns{display:grid;grid-template-columns:1fr 1fr;gap:.7rem;padding:.7rem;background:var(--surface-2);border-radius:var(--radius-xl);border:1px solid var(--border-on-surface)}
.frm-lx6 .frm-col{padding:.8rem;border-radius:var(--radius-lg);background:var(--surface-1);display:grid;gap:.62rem}
.frm-lx6 label{display:grid;gap:.25rem}
.frm-lx6 span{font-size:.82rem;font-weight:700;color:var(--fg-on-surface-light)}
.frm-lx6 input,.frm-lx6 textarea{width:100%;padding:.76rem .8rem;border-radius:var(--radius-sm);border:1px solid var(--border-on-surface-light);font:inherit;color:var(--fg-on-surface);background:var(--surface-1)}
.frm-lx6 textarea{min-height:170px;resize:vertical}
.frm-lx6 button{padding:.82rem 1rem;border:0;border-radius:var(--radius-md);background:var(--gradient-hero);color:var(--brand-contrast);font-weight:700;cursor:pointer;transition:transform var(--anim-duration) var(--anim-ease)}
.frm-lx6 button:hover{transform:translateY(-2px)}
@media (max-width:860px){.frm-lx6 .frm-columns{grid-template-columns:1fr}}

.connect {
        color: var(--accent-contrast);
        background: var(--accent);
        padding: clamp(32px, 5vw, 64px) clamp(16px, 4vw, 40px);
    }

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

    .connect .connect__header {
        text-align: center;
        margin-bottom: clamp(40px, 6vw, 56px);
    }

    .connect .connect__header h2 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 0.5rem;
    }

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

    .connect .connect__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
        gap: clamp(20px, 3vw, 28px);
    }

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

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

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

header {
        background: var(--surface-1);
        border-bottom: 1px solid var(--border-on-surface);
        padding: var(--space-y) var(--space-x);
        position: sticky;
        top: 0;
        z-index: 100;
        box-shadow: var(--shadow-sm);
    }
    .header-inner {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
    }
    .header-left {
        display: flex;
        align-items: center;
        gap: calc(var(--gap) * 2);
    }
    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        line-height: 1;
        letter-spacing: -0.02em;
    }
    .nav-menu ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: var(--gap);
    }
    .nav-menu a {
        text-decoration: none;
        color: var(--fg-on-surface);
        font-size: var(--font-size-base);
        padding: 0.25rem 0;
        border-bottom: 2px solid transparent;
        transition: border-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }
    .nav-menu a:hover {
        color: var(--brand);
        border-bottom-color: var(--brand);
    }
    .header-right {
        display: flex;
        align-items: center;
        gap: var(--gap);
    }
    .contact-link {
        text-decoration: none;
        color: var(--fg-on-surface);
        font-size: var(--font-size-base);
        transition: color var(--anim-duration) var(--anim-ease);
    }
    .contact-link:hover {
        color: var(--brand);
    }
    .btn-action {
        display: inline-block;
        background: var(--brand);
        color: var(--brand-contrast);
        padding: 0.5rem 1.25rem;
        border-radius: var(--radius-md);
        text-decoration: none;
        font-size: var(--font-size-base);
        font-weight: 600;
        transition: background var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-sm);
    }
    .btn-action:hover {
        background: var(--bg-primary-hover);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }
    .burger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 2.5rem;
        height: 2.5rem;
        background: none;
        border: none;
        cursor: pointer;
        gap: 5px;
        padding: 0;
        z-index: 110;
    }
    .burger span {
        display: block;
        width: 24px;
        height: 3px;
        background: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }
    .burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    .burger.active span:nth-child(2) {
        opacity: 0;
    }
    .burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    @media (max-width: 767px) {
        .header-left {
            gap: var(--gap);
        }
        .nav-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: var(--surface-1);
            display: flex;
            align-items: center;
            justify-content: center;
            transform: translateX(100%);
            transition: transform var(--anim-duration) var(--anim-ease);
            z-index: 105;
        }
        .nav-menu.open {
            transform: translateX(0);
        }
        .nav-menu ul {
            flex-direction: column;
            align-items: center;
            gap: calc(var(--gap) * 2);
        }
        .nav-menu a {
            font-size: calc(var(--font-size-base) * 1.25);
        }
        .header-right {
            display: none;
        }
        .burger {
            display: flex;
        }
    }

footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 40px 20px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 30px;
}
.footer-column {
  flex: 1 1 250px;
  min-width: 200px;
}
.logo {
  font-size: 2rem;
  font-weight: 700;
  color: #f5a623;
  margin-bottom: 10px;
}
.footer-tagline {
  font-size: 0.95rem;
  color: #b0b0b0;
}
.footer-nav nav ul {
  list-style: none;
  padding: 0;
  margin: 0 0 15px;
}
.footer-nav nav ul li {
  margin-bottom: 8px;
}
.footer-nav nav ul li a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-nav nav ul li a:hover {
  color: #f5a623;
}
.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-legal a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}
.footer-legal a:hover {
  color: #f5a623;
}
.contact-info p {
  margin: 5px 0;
  font-size: 0.95rem;
}
.contact-info a {
  color: #f5a623;
  text-decoration: none;
}
.contact-info a:hover {
  text-decoration: underline;
}
.footer-social {
  margin-top: 15px;
  display: flex;
  gap: 15px;
}
.footer-social a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}
.footer-social a:hover {
  color: #f5a623;
}
.footer-disclaimer {
  max-width: 1200px;
  margin: 30px auto 10px;
  padding-top: 15px;
  border-top: 1px solid #333;
  font-size: 0.85rem;
  color: #999;
  text-align: center;
}
.footer-copyright {
  text-align: center;
  font-size: 0.85rem;
  color: #777;
  margin-top: 10px;
}
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-column {
    flex: 1 1 100%;
  }
  .footer-social {
    justify-content: center;
  }
}

.cookie-lv14 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .cookie-lv14__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * 0.8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .cookie-lv14__text {
        flex: 1 1 420px;
    }

    .cookie-lv14__badge {
        display: inline-flex;
        align-items: center;
        padding: 3px 8px;
        border-radius: 999px;
        font-size: 12px;
        font-weight: 700;
        margin-bottom: 6px;
        background: var(--surface-2);
        color: var(--fg-muted);
    }

    .cookie-lv14__text strong {
        display: block;
        margin-bottom: 4px;
        color: var(--fg-on-surface);
    }

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

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

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

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

body{margin:0;padding:0;font-family:var(--font-family);font-size:var(--font-size-base);line-height:var(--line-height-base);box-sizing:border-box;background:var(--bg-page);color:var(--fg-on-page)}
*{box-sizing:border-box;}
.pol-lx10{padding:calc(var(--space-y)*2.7) var(--space-x)}
.pol-lx10 .pol-shell{max-width:var(--max-w);margin:0 auto;display:grid;gap:.72rem}
.pol-lx10 .pol-banner{padding:1rem;border-radius:var(--radius-xl);border:1px solid var(--border-on-surface);background:var(--surface-1)}
.pol-lx10 h2{margin:0;font-size:clamp(1.74rem,3vw,2.42rem)}
.pol-lx10 .pol-banner p{margin:.38rem 0 0;color:var(--fg-on-surface-light)}
.pol-lx10 .pol-matrix{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.6rem}
.pol-lx10 .pol-matrix article{padding:.85rem;border:1px solid var(--border-on-surface);border-radius:var(--radius-md);background:var(--surface-1)}
.pol-lx10 .pol-matrix h3{margin:0 0 .2rem;font-size:1rem}
.pol-lx10 .pol-matrix p{margin:0;color:var(--fg-on-surface-light)}
.pol-lx10 .pol-end{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.6rem}
.pol-lx10 .pol-end p{margin:0;padding:.75rem;border-radius:var(--radius-md);background:var(--surface-2)}
@media (max-width:760px){.pol-lx10 .pol-matrix,.pol-lx10 .pol-end{grid-template-columns:1fr}}

header {
        background: var(--surface-1);
        border-bottom: 1px solid var(--border-on-surface);
        padding: var(--space-y) var(--space-x);
        position: sticky;
        top: 0;
        z-index: 100;
        box-shadow: var(--shadow-sm);
    }
    .header-inner {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
    }
    .header-left {
        display: flex;
        align-items: center;
        gap: calc(var(--gap) * 2);
    }
    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        line-height: 1;
        letter-spacing: -0.02em;
    }
    .nav-menu ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: var(--gap);
    }
    .nav-menu a {
        text-decoration: none;
        color: var(--fg-on-surface);
        font-size: var(--font-size-base);
        padding: 0.25rem 0;
        border-bottom: 2px solid transparent;
        transition: border-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }
    .nav-menu a:hover {
        color: var(--brand);
        border-bottom-color: var(--brand);
    }
    .header-right {
        display: flex;
        align-items: center;
        gap: var(--gap);
    }
    .contact-link {
        text-decoration: none;
        color: var(--fg-on-surface);
        font-size: var(--font-size-base);
        transition: color var(--anim-duration) var(--anim-ease);
    }
    .contact-link:hover {
        color: var(--brand);
    }
    .btn-action {
        display: inline-block;
        background: var(--brand);
        color: var(--brand-contrast);
        padding: 0.5rem 1.25rem;
        border-radius: var(--radius-md);
        text-decoration: none;
        font-size: var(--font-size-base);
        font-weight: 600;
        transition: background var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-sm);
    }
    .btn-action:hover {
        background: var(--bg-primary-hover);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }
    .burger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 2.5rem;
        height: 2.5rem;
        background: none;
        border: none;
        cursor: pointer;
        gap: 5px;
        padding: 0;
        z-index: 110;
    }
    .burger span {
        display: block;
        width: 24px;
        height: 3px;
        background: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }
    .burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    .burger.active span:nth-child(2) {
        opacity: 0;
    }
    .burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    @media (max-width: 767px) {
        .header-left {
            gap: var(--gap);
        }
        .nav-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: var(--surface-1);
            display: flex;
            align-items: center;
            justify-content: center;
            transform: translateX(100%);
            transition: transform var(--anim-duration) var(--anim-ease);
            z-index: 105;
        }
        .nav-menu.open {
            transform: translateX(0);
        }
        .nav-menu ul {
            flex-direction: column;
            align-items: center;
            gap: calc(var(--gap) * 2);
        }
        .nav-menu a {
            font-size: calc(var(--font-size-base) * 1.25);
        }
        .header-right {
            display: none;
        }
        .burger {
            display: flex;
        }
    }

footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 40px 20px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 30px;
}
.footer-column {
  flex: 1 1 250px;
  min-width: 200px;
}
.logo {
  font-size: 2rem;
  font-weight: 700;
  color: #f5a623;
  margin-bottom: 10px;
}
.footer-tagline {
  font-size: 0.95rem;
  color: #b0b0b0;
}
.footer-nav nav ul {
  list-style: none;
  padding: 0;
  margin: 0 0 15px;
}
.footer-nav nav ul li {
  margin-bottom: 8px;
}
.footer-nav nav ul li a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-nav nav ul li a:hover {
  color: #f5a623;
}
.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-legal a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}
.footer-legal a:hover {
  color: #f5a623;
}
.contact-info p {
  margin: 5px 0;
  font-size: 0.95rem;
}
.contact-info a {
  color: #f5a623;
  text-decoration: none;
}
.contact-info a:hover {
  text-decoration: underline;
}
.footer-social {
  margin-top: 15px;
  display: flex;
  gap: 15px;
}
.footer-social a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}
.footer-social a:hover {
  color: #f5a623;
}
.footer-disclaimer {
  max-width: 1200px;
  margin: 30px auto 10px;
  padding-top: 15px;
  border-top: 1px solid #333;
  font-size: 0.85rem;
  color: #999;
  text-align: center;
}
.footer-copyright {
  text-align: center;
  font-size: 0.85rem;
  color: #777;
  margin-top: 10px;
}
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-column {
    flex: 1 1 100%;
  }
  .footer-social {
    justify-content: center;
  }
}

.cookie-lv14 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .cookie-lv14__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * 0.8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .cookie-lv14__text {
        flex: 1 1 420px;
    }

    .cookie-lv14__badge {
        display: inline-flex;
        align-items: center;
        padding: 3px 8px;
        border-radius: 999px;
        font-size: 12px;
        font-weight: 700;
        margin-bottom: 6px;
        background: var(--surface-2);
        color: var(--fg-muted);
    }

    .cookie-lv14__text strong {
        display: block;
        margin-bottom: 4px;
        color: var(--fg-on-surface);
    }

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

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

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

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

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

    .policy-layout-d .wrap {
        max-width: 900px;
        margin: 0 auto;
    }

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

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

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

    .policy-layout-d .timeline {
        border-left: 3px solid var(--brand);
        padding-left: 14px;
        display: grid;
        gap: 12px;
    }

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

    .policy-layout-d .meta {
        margin: 0;
        color: var(--brand);
        font-size: .9rem;
        font-weight: 600;
    }

    .policy-layout-d h3 {
        margin: 7px 0;
    }

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

header {
        background: var(--surface-1);
        border-bottom: 1px solid var(--border-on-surface);
        padding: var(--space-y) var(--space-x);
        position: sticky;
        top: 0;
        z-index: 100;
        box-shadow: var(--shadow-sm);
    }
    .header-inner {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
    }
    .header-left {
        display: flex;
        align-items: center;
        gap: calc(var(--gap) * 2);
    }
    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        line-height: 1;
        letter-spacing: -0.02em;
    }
    .nav-menu ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: var(--gap);
    }
    .nav-menu a {
        text-decoration: none;
        color: var(--fg-on-surface);
        font-size: var(--font-size-base);
        padding: 0.25rem 0;
        border-bottom: 2px solid transparent;
        transition: border-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }
    .nav-menu a:hover {
        color: var(--brand);
        border-bottom-color: var(--brand);
    }
    .header-right {
        display: flex;
        align-items: center;
        gap: var(--gap);
    }
    .contact-link {
        text-decoration: none;
        color: var(--fg-on-surface);
        font-size: var(--font-size-base);
        transition: color var(--anim-duration) var(--anim-ease);
    }
    .contact-link:hover {
        color: var(--brand);
    }
    .btn-action {
        display: inline-block;
        background: var(--brand);
        color: var(--brand-contrast);
        padding: 0.5rem 1.25rem;
        border-radius: var(--radius-md);
        text-decoration: none;
        font-size: var(--font-size-base);
        font-weight: 600;
        transition: background var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-sm);
    }
    .btn-action:hover {
        background: var(--bg-primary-hover);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }
    .burger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 2.5rem;
        height: 2.5rem;
        background: none;
        border: none;
        cursor: pointer;
        gap: 5px;
        padding: 0;
        z-index: 110;
    }
    .burger span {
        display: block;
        width: 24px;
        height: 3px;
        background: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }
    .burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    .burger.active span:nth-child(2) {
        opacity: 0;
    }
    .burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    @media (max-width: 767px) {
        .header-left {
            gap: var(--gap);
        }
        .nav-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: var(--surface-1);
            display: flex;
            align-items: center;
            justify-content: center;
            transform: translateX(100%);
            transition: transform var(--anim-duration) var(--anim-ease);
            z-index: 105;
        }
        .nav-menu.open {
            transform: translateX(0);
        }
        .nav-menu ul {
            flex-direction: column;
            align-items: center;
            gap: calc(var(--gap) * 2);
        }
        .nav-menu a {
            font-size: calc(var(--font-size-base) * 1.25);
        }
        .header-right {
            display: none;
        }
        .burger {
            display: flex;
        }
    }

footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 40px 20px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 30px;
}
.footer-column {
  flex: 1 1 250px;
  min-width: 200px;
}
.logo {
  font-size: 2rem;
  font-weight: 700;
  color: #f5a623;
  margin-bottom: 10px;
}
.footer-tagline {
  font-size: 0.95rem;
  color: #b0b0b0;
}
.footer-nav nav ul {
  list-style: none;
  padding: 0;
  margin: 0 0 15px;
}
.footer-nav nav ul li {
  margin-bottom: 8px;
}
.footer-nav nav ul li a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-nav nav ul li a:hover {
  color: #f5a623;
}
.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-legal a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}
.footer-legal a:hover {
  color: #f5a623;
}
.contact-info p {
  margin: 5px 0;
  font-size: 0.95rem;
}
.contact-info a {
  color: #f5a623;
  text-decoration: none;
}
.contact-info a:hover {
  text-decoration: underline;
}
.footer-social {
  margin-top: 15px;
  display: flex;
  gap: 15px;
}
.footer-social a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}
.footer-social a:hover {
  color: #f5a623;
}
.footer-disclaimer {
  max-width: 1200px;
  margin: 30px auto 10px;
  padding-top: 15px;
  border-top: 1px solid #333;
  font-size: 0.85rem;
  color: #999;
  text-align: center;
}
.footer-copyright {
  text-align: center;
  font-size: 0.85rem;
  color: #777;
  margin-top: 10px;
}
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-column {
    flex: 1 1 100%;
  }
  .footer-social {
    justify-content: center;
  }
}

.cookie-lv14 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .cookie-lv14__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * 0.8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .cookie-lv14__text {
        flex: 1 1 420px;
    }

    .cookie-lv14__badge {
        display: inline-flex;
        align-items: center;
        padding: 3px 8px;
        border-radius: 999px;
        font-size: 12px;
        font-weight: 700;
        margin-bottom: 6px;
        background: var(--surface-2);
        color: var(--fg-muted);
    }

    .cookie-lv14__text strong {
        display: block;
        margin-bottom: 4px;
        color: var(--fg-on-surface);
    }

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

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

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

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

body{margin:0;padding:0;font-family:var(--font-family);font-size:var(--font-size-base);line-height:var(--line-height-base);box-sizing:border-box;background:var(--bg-page);color:var(--fg-on-page)}
*{box-sizing:border-box;}
.thx-lx10{padding:calc(var(--space-y)*2.7) var(--space-x)}
.thx-lx10 .thx-wrap{max-width:820px;margin:0 auto;display:grid;gap:.58rem}
.thx-lx10 .thx-note{padding:1rem;border-radius:var(--radius-xl);background:linear-gradient(180deg,var(--surface-1),var(--surface-2));border:1px solid var(--border-on-surface);text-align:center}
.thx-lx10 h2{margin:0;font-size:clamp(1.72rem,3vw,2.4rem)}
.thx-lx10 .thx-note p{margin:.38rem 0 0;color:var(--fg-on-surface-light)}
.thx-lx10 .thx-inline{margin:0;padding:.72rem .8rem;border-radius:var(--radius-md);background:var(--surface-1);border:1px solid var(--border-on-surface)}

header {
        background: var(--surface-1);
        border-bottom: 1px solid var(--border-on-surface);
        padding: var(--space-y) var(--space-x);
        position: sticky;
        top: 0;
        z-index: 100;
        box-shadow: var(--shadow-sm);
    }
    .header-inner {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
    }
    .header-left {
        display: flex;
        align-items: center;
        gap: calc(var(--gap) * 2);
    }
    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        line-height: 1;
        letter-spacing: -0.02em;
    }
    .nav-menu ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: var(--gap);
    }
    .nav-menu a {
        text-decoration: none;
        color: var(--fg-on-surface);
        font-size: var(--font-size-base);
        padding: 0.25rem 0;
        border-bottom: 2px solid transparent;
        transition: border-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }
    .nav-menu a:hover {
        color: var(--brand);
        border-bottom-color: var(--brand);
    }
    .header-right {
        display: flex;
        align-items: center;
        gap: var(--gap);
    }
    .contact-link {
        text-decoration: none;
        color: var(--fg-on-surface);
        font-size: var(--font-size-base);
        transition: color var(--anim-duration) var(--anim-ease);
    }
    .contact-link:hover {
        color: var(--brand);
    }
    .btn-action {
        display: inline-block;
        background: var(--brand);
        color: var(--brand-contrast);
        padding: 0.5rem 1.25rem;
        border-radius: var(--radius-md);
        text-decoration: none;
        font-size: var(--font-size-base);
        font-weight: 600;
        transition: background var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
        box-shadow: var(--shadow-sm);
    }
    .btn-action:hover {
        background: var(--bg-primary-hover);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }
    .burger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 2.5rem;
        height: 2.5rem;
        background: none;
        border: none;
        cursor: pointer;
        gap: 5px;
        padding: 0;
        z-index: 110;
    }
    .burger span {
        display: block;
        width: 24px;
        height: 3px;
        background: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }
    .burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    .burger.active span:nth-child(2) {
        opacity: 0;
    }
    .burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    @media (max-width: 767px) {
        .header-left {
            gap: var(--gap);
        }
        .nav-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: var(--surface-1);
            display: flex;
            align-items: center;
            justify-content: center;
            transform: translateX(100%);
            transition: transform var(--anim-duration) var(--anim-ease);
            z-index: 105;
        }
        .nav-menu.open {
            transform: translateX(0);
        }
        .nav-menu ul {
            flex-direction: column;
            align-items: center;
            gap: calc(var(--gap) * 2);
        }
        .nav-menu a {
            font-size: calc(var(--font-size-base) * 1.25);
        }
        .header-right {
            display: none;
        }
        .burger {
            display: flex;
        }
    }

footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 40px 20px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 30px;
}
.footer-column {
  flex: 1 1 250px;
  min-width: 200px;
}
.logo {
  font-size: 2rem;
  font-weight: 700;
  color: #f5a623;
  margin-bottom: 10px;
}
.footer-tagline {
  font-size: 0.95rem;
  color: #b0b0b0;
}
.footer-nav nav ul {
  list-style: none;
  padding: 0;
  margin: 0 0 15px;
}
.footer-nav nav ul li {
  margin-bottom: 8px;
}
.footer-nav nav ul li a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-nav nav ul li a:hover {
  color: #f5a623;
}
.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-legal a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}
.footer-legal a:hover {
  color: #f5a623;
}
.contact-info p {
  margin: 5px 0;
  font-size: 0.95rem;
}
.contact-info a {
  color: #f5a623;
  text-decoration: none;
}
.contact-info a:hover {
  text-decoration: underline;
}
.footer-social {
  margin-top: 15px;
  display: flex;
  gap: 15px;
}
.footer-social a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}
.footer-social a:hover {
  color: #f5a623;
}
.footer-disclaimer {
  max-width: 1200px;
  margin: 30px auto 10px;
  padding-top: 15px;
  border-top: 1px solid #333;
  font-size: 0.85rem;
  color: #999;
  text-align: center;
}
.footer-copyright {
  text-align: center;
  font-size: 0.85rem;
  color: #777;
  margin-top: 10px;
}
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-column {
    flex: 1 1 100%;
  }
  .footer-social {
    justify-content: center;
  }
}

.cookie-lv14 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .cookie-lv14__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * 0.8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .cookie-lv14__text {
        flex: 1 1 420px;
    }

    .cookie-lv14__badge {
        display: inline-flex;
        align-items: center;
        padding: 3px 8px;
        border-radius: 999px;
        font-size: 12px;
        font-weight: 700;
        margin-bottom: 6px;
        background: var(--surface-2);
        color: var(--fg-muted);
    }

    .cookie-lv14__text strong {
        display: block;
        margin-bottom: 4px;
        color: var(--fg-on-surface);
    }

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

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

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

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

.err-slab-a {
    padding: clamp(56px, 10vw, 110px) 20px;
    background: var(--gradient-hero);
    color: var(--fg-on-primary);
}

.err-slab-a .box {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

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

.err-slab-a p {
    margin: 12px 0 0;
    opacity: .92;
}

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