:root {
  --font-family: "Epilogue", sans-serif;
  --font-size-base: 16.2px;
  --line-height-base: 1.56;

  --max-w: 1060px;
  --space-x: 1.09rem;
  --space-y: 1.44rem;
  --gap: 0.78rem;

  --radius-xl: 1.07rem;
  --radius-lg: 0.59rem;
  --radius-md: 0.49rem;
  --radius-sm: 0.21rem;

  --shadow-sm: 0 2px 3px rgba(0,0,0,0.13);
  --shadow-md: 0 7px 14px rgba(0,0,0,0.17);
  --shadow-lg: 0 16px 36px rgba(0,0,0,0.21);

  --overlay: rgba(0,0,0,0.5);
  --anim-duration: 200ms;
  --anim-ease: ease;
  --random-number: 2;

  --brand: #1A5C8A;
  --brand-contrast: #FFFFFF;
  --accent: #E67E22;
  --accent-contrast: #FFFFFF;

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

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

  --bg-alt: #F0F4F8;
  --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: #1A5C8A;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #144A6E;
  --ring: #1A5C8A;

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

  --link: #1A5C8A;
  --link-hover: #144A6E;

  --gradient-hero: linear-gradient(135deg, #1A5C8A 0%, #2E86AB 100%);
  --gradient-accent: linear-gradient(135deg, #E67E22 0%, #F39C12 100%);

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

header {
    position: relative;
    background: var(--surface-1);
    box-shadow: var(--shadow-sm);
    padding: var(--space-y) var(--space-x);
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    letter-spacing: 0.02em;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .nav-left,
  .nav-right {
    display: flex;
    gap: var(--gap);
  }
  .nav-link {
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.25rem 0;
    transition: color var(--anim-duration) var(--anim-ease);
    position: relative;
  }
  .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--brand);
    transition: width var(--anim-duration) var(--anim-ease);
  }
  .nav-link:hover {
    color: var(--brand);
  }
  .nav-link:hover::after {
    width: 100%;
  }
  .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: 2.5px;
    background: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
  }
  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay);
    backdrop-filter: blur(4px);
    z-index: 105;
    align-items: center;
    justify-content: center;
  }
  .mobile-menu.open {
    display: flex;
  }
  .mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: calc(var(--gap) * 2);
    background: var(--surface-1);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
  }
  .mobile-nav .nav-link {
    font-size: calc(var(--font-size-base) * 1.25);
    font-weight: 500;
  }
  @media (max-width: 767px) {
    .nav-left,
    .nav-right {
      display: none;
    }
    .burger {
      display: flex;
    }
    .header-inner {
      justify-content: space-between;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
  }
  .footer-left {
    flex: 1 1 300px;
    min-width: 250px;
  }
  .footer-right {
    flex: 2 1 400px;
    min-width: 280px;
  }
  .footer-logo {
    font-size: 2rem;
    font-weight: 700;
    color: #f5a623;
    letter-spacing: 1px;
  }
  .footer-brand {
    margin-bottom: 20px;
  }
  .footer-contact p {
    margin: 8px 0;
    font-size: 0.95rem;
    line-height: 1.5;
  }
  .footer-contact a {
    color: #f5a623;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  .footer-nav li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav li a:hover {
    color: #f5a623;
  }
  .footer-policy {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
  }
  .footer-policy a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-policy a:hover {
    color: #f5a623;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #999;
    line-height: 1.4;
    margin-bottom: 15px;
    font-style: italic;
  }
  .footer-copyright {
    font-size: 0.85rem;
    color: #888;
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      gap: 30px;
    }
    .footer-left, .footer-right {
      flex: 1 1 100%;
      min-width: auto;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 10px;
    }
    .footer-policy {
      flex-direction: column;
      gap: 10px;
    }
  }

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

    .nfcookie-v11__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, .45), rgba(17, 24, 39, .95));
        color: var(--neutral-100);
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, .35);
    }

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

    .nfcookie-v11__top strong {font-size: 16px;}

    .nfcookie-v11__top button {
        border: 0;
        background: transparent;
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
        cursor: pointer;
    }

    .nfcookie-v11 p {margin: 10px 0 0; color: #d1d5db;}

    .nfcookie-v11__actions {margin-top: 14px; display: flex; gap: 8px;}

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

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

    @media (max-width: 760px) {
        .nfcookie-v11__card {max-width: none;}
    }

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

    .wp-lang-switcher-v8__toggle {
        width: 58px;
        height: 58px;
        border-radius: 12px;
        border: 0;
        background: var(--gradient-accent);
        color: var(--fg-on-primary);
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 0.08em;
        cursor: pointer;
        display: grid;
        place-items: center;
        box-shadow: var(--shadow-lg);
        position: relative;
    }

    .wp-lang-switcher-v8__dot {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: color-mix(in srgb, var(--fg-on-primary) 78%, transparent);
        position: absolute;
        right: 13px;
        top: 13px;
    }

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

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

    .wp-lang-switcher-v8__list button,
    .wp-lang-switcher-v8__list a {
        min-width: 56px;
        height: 38px;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        text-decoration: none;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.06em;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        box-shadow: var(--shadow-sm);
        transition: transform var(--anim-duration) var(--anim-ease), background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .wp-lang-switcher-v8__list button:hover,
    .wp-lang-switcher-v8__list a:hover {
        transform: translateX(-2px);
        background: var(--accent);
        border-color: transparent;
        color: var(--accent-contrast);
    }

.intro-block-l10 {
        padding: clamp(3.5rem, 8vw, 6.4rem) var(--space-x);
        background: linear-gradient(180deg, var(--surface-1), var(--surface-2));
        color: var(--fg-on-page);
    }

    .intro-block-l10__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .intro-block-l10__eyebrow {
        color: var(--brand);
        font-size: .82rem;
        letter-spacing: .1em;
        text-transform: uppercase;
    }

    .intro-block-l10__wrap h1 {
        margin: .6rem 0 0;
        font-size: clamp(2.4rem, 5vw, 4rem);
        line-height: 1.04;
    }

    .intro-block-l10__cols {
        margin-top: 1.15rem;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .intro-block-l10__cols strong {
        display: block;
        color: var(--fg-on-page);
    }

    .intro-block-l10__cols p {
        margin: .7rem 0 0;
        color: var(--neutral-600);
    }

    .intro-block-l10__actions {
        margin-top: 1rem;
        display: flex;
        gap: .75rem;
        flex-wrap: wrap;
    }

    .intro-block-l10__actions a {
        display: inline-flex;
        min-height: 2.8rem;
        align-items: center;
        justify-content: center;
        padding: 0 1rem;
        border-radius: var(--radius-md);
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    .intro-block-l10__actions a:first-child {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-color: var(--bg-primary);
    }

    @media (max-width: 760px) {
        .intro-block-l10__cols {
            grid-template-columns: 1fr;
        }
    }

    .intro-block-l10 {
        overflow: hidden;
    }

    .intro-block-l10__wrap {
        background-image: linear-gradient(rgba(255, 255, 255, .86), rgba(255, 255, 255, .86)), url('https://images.pexels.com/photos/3184291/pexels-photo-3184291.jpeg?auto=compress&cs=tinysrgb&w=800');
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        border-radius: var(--radius-xl);
        overflow: hidden;
        padding: var(--space-x)
    }

.next-signal-c7 {
        padding: clamp(3.7rem, 8vw, 6.3rem) var(--space-x);
        background: linear-gradient(145deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
    }

    .next-signal-c7__wrap {
        max-width: 60rem;
        margin: 0 auto;
        display: grid;
        grid-template-columns: .95fr 1.05fr;
        gap: 1rem;
        align-items: center;
    }

    .next-signal-c7__copy p {
        margin: 0;
        color: rgba(255, 255, 255, .78);
    }

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

    .next-signal-c7__copy span {
        display: block;
        margin-top: .85rem;

    }

    .next-signal-c7__stack {
        display: grid;
        gap: .7rem;
    }

    .next-signal-c7__stack a {
        display: flex;
        justify-content: space-between;
        gap: .75rem;
        align-items: center;
        padding: .9rem 1rem;
        border-radius: var(--radius-lg);
        text-decoration: none;
        color: var(--fg-on-primary);
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .next-signal-c7__stack span {
        color: rgba(255, 255, 255, .8);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .about-struct-v5 .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-v5 .split, .about-struct-v5 .duo, .about-struct-v5 .cards, .about-struct-v5 .gallery {
            grid-template-columns:1fr 1fr
        }
    }

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

.why-choose-light-alt {

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

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

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

    }

    .why-choose-light-alt h2 {
        font-size: clamp(32px, 5vw, 48px);
        margin: 0 0 1rem;
        color: var(--fg-on-alt);
        position: relative;
        display: inline-block;
    }

    .why-choose-light-alt h2::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 0;
        width: 100%;
        height: 4px;
        background: var(--bg-primary);
        border-radius: var(--radius-sm);
        animation: shimmer 3s ease-in-out infinite;
    }

    @keyframes shimmer {
        0%, 100% {
            opacity: 1;
            transform: scaleX(1);
        }
        50% {
            opacity: 0.4;
            transform: scaleX(0.8);
        }
    }

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

    .why-choose-light-alt .why-choose-light-alt__list {
        display: flex;
        flex-direction: column;
        gap: clamp(16px, 2vw, 24px);
    }

    .why-choose-light-alt .why-choose-light-alt__item {
        display: flex;
        gap: clamp(16px, 2vw, 24px);
        background: var(--surface-1);
        padding: clamp(20px, 3vw, 32px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-sm);
        align-items: flex-start;

        position: relative;
        overflow: hidden;
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .why-choose-light-alt .why-choose-light-alt__wave {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg,
        var(--bg-primary) 0%,
        var(--accent) 50%,
        var(--bg-primary) 100%);
        background-size: 200% 100%;
        animation: wave 3s linear infinite;

        transition: opacity var(--anim-duration) var(--anim-ease);
    }

    @keyframes wave {
        0% {
            background-position: 0% 0%;
        }
        100% {
            background-position: 200% 0%;
        }
    }

    .why-choose-light-alt .why-choose-light-alt__item:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-lg);
    }

    .why-choose-light-alt .why-choose-light-alt__item:hover .why-choose-light-alt__wave {
        opacity: 1;
    }

    .why-choose-light-alt .why-choose-light-alt__number {
        flex-shrink: 0;
        width: 56px;
        height: 56px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-radius: var(--radius-md);
        font-size: clamp(20px, 2.5vw, 28px);
        font-weight: 700;
        position: relative;
        animation: sparkle 4s ease-in-out infinite;
    }

    @keyframes sparkle {
        0%, 100% {
            box-shadow: 0 0 0 rgba(0, 85, 183, 0);
        }
        10% {
            box-shadow: 0 0 20px rgba(0, 85, 183, 0.6);
        }
        20%, 80% {
            box-shadow: 0 0 0 rgba(0, 85, 183, 0);
        }
        90% {
            box-shadow: 0 0 20px rgba(0, 85, 183, 0.6);
        }
    }

    .why-choose-light-alt .why-choose-light-alt__content {
        flex: 1;
    }

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

    .why-choose-light-alt .why-choose-light-alt__item h3::before {
        content: '';
        position: absolute;
        left: -12px;
        top: 50%;
        transform: translateY(-50%);
        width: 4px;
        height: 0;
        background: var(--bg-primary);
        border-radius: var(--radius-sm);
        transition: height var(--anim-duration) var(--anim-ease);
    }

    .why-choose-light-alt .why-choose-light-alt__item:hover h3::before {
        height: 100%;
    }

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

header {
    position: relative;
    background: var(--surface-1);
    box-shadow: var(--shadow-sm);
    padding: var(--space-y) var(--space-x);
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    letter-spacing: 0.02em;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .nav-left,
  .nav-right {
    display: flex;
    gap: var(--gap);
  }
  .nav-link {
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.25rem 0;
    transition: color var(--anim-duration) var(--anim-ease);
    position: relative;
  }
  .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--brand);
    transition: width var(--anim-duration) var(--anim-ease);
  }
  .nav-link:hover {
    color: var(--brand);
  }
  .nav-link:hover::after {
    width: 100%;
  }
  .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: 2.5px;
    background: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
  }
  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay);
    backdrop-filter: blur(4px);
    z-index: 105;
    align-items: center;
    justify-content: center;
  }
  .mobile-menu.open {
    display: flex;
  }
  .mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: calc(var(--gap) * 2);
    background: var(--surface-1);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
  }
  .mobile-nav .nav-link {
    font-size: calc(var(--font-size-base) * 1.25);
    font-weight: 500;
  }
  @media (max-width: 767px) {
    .nav-left,
    .nav-right {
      display: none;
    }
    .burger {
      display: flex;
    }
    .header-inner {
      justify-content: space-between;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
  }
  .footer-left {
    flex: 1 1 300px;
    min-width: 250px;
  }
  .footer-right {
    flex: 2 1 400px;
    min-width: 280px;
  }
  .footer-logo {
    font-size: 2rem;
    font-weight: 700;
    color: #f5a623;
    letter-spacing: 1px;
  }
  .footer-brand {
    margin-bottom: 20px;
  }
  .footer-contact p {
    margin: 8px 0;
    font-size: 0.95rem;
    line-height: 1.5;
  }
  .footer-contact a {
    color: #f5a623;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  .footer-nav li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav li a:hover {
    color: #f5a623;
  }
  .footer-policy {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
  }
  .footer-policy a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-policy a:hover {
    color: #f5a623;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #999;
    line-height: 1.4;
    margin-bottom: 15px;
    font-style: italic;
  }
  .footer-copyright {
    font-size: 0.85rem;
    color: #888;
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      gap: 30px;
    }
    .footer-left, .footer-right {
      flex: 1 1 100%;
      min-width: auto;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 10px;
    }
    .footer-policy {
      flex-direction: column;
      gap: 10px;
    }
  }

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

    .nfcookie-v11__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, .45), rgba(17, 24, 39, .95));
        color: var(--neutral-100);
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, .35);
    }

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

    .nfcookie-v11__top strong {font-size: 16px;}

    .nfcookie-v11__top button {
        border: 0;
        background: transparent;
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
        cursor: pointer;
    }

    .nfcookie-v11 p {margin: 10px 0 0; color: #d1d5db;}

    .nfcookie-v11__actions {margin-top: 14px; display: flex; gap: 8px;}

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

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

    @media (max-width: 760px) {
        .nfcookie-v11__card {max-width: none;}
    }

.gallery--colored-v7 {
    padding: 58px 20px;
    background: var(--gradient-hero);
    color: var(--gradien-contrast);
}

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

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

.gallery-v7__head h2 {
    margin: 0 0 8px;
    font-size: clamp(24px, 4vw, 34px);
    color: #ffffff;
}

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

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

.gallery-v7__item {
    margin: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.08);
}

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

.gallery-v7__item figcaption {
    padding: 10px 12px;
    font-size: 0.92rem;
    color: var(--neutral-100);
}

@media (max-width: 640px) {
    .gallery--colored-v7 {
        padding: 46px 14px;
    }

    .gallery-v7__item img {
        height: 160px;
    }
}

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

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

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

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

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

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

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

    .identity-lv2__grid h3 {
        margin: 0;
    }

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

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

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

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

.partners--light-v6 {

    padding: 40px 20px;
    background: var(--surface-light);
    color: var(--fg-on-surface-light);
}

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

.partners__inner h2 {
    margin: 0 0 10px;
    font-size: clamp(22px,3.5vw,28px);
}

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

.partners__chip {
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--bg-page);
    border: 1px solid var(--border-on-surface-light);
    font-size: 0.85rem;
    color: var(--neutral-800);
}

header {
    position: relative;
    background: var(--surface-1);
    box-shadow: var(--shadow-sm);
    padding: var(--space-y) var(--space-x);
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    letter-spacing: 0.02em;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .nav-left,
  .nav-right {
    display: flex;
    gap: var(--gap);
  }
  .nav-link {
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.25rem 0;
    transition: color var(--anim-duration) var(--anim-ease);
    position: relative;
  }
  .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--brand);
    transition: width var(--anim-duration) var(--anim-ease);
  }
  .nav-link:hover {
    color: var(--brand);
  }
  .nav-link:hover::after {
    width: 100%;
  }
  .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: 2.5px;
    background: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
  }
  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay);
    backdrop-filter: blur(4px);
    z-index: 105;
    align-items: center;
    justify-content: center;
  }
  .mobile-menu.open {
    display: flex;
  }
  .mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: calc(var(--gap) * 2);
    background: var(--surface-1);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
  }
  .mobile-nav .nav-link {
    font-size: calc(var(--font-size-base) * 1.25);
    font-weight: 500;
  }
  @media (max-width: 767px) {
    .nav-left,
    .nav-right {
      display: none;
    }
    .burger {
      display: flex;
    }
    .header-inner {
      justify-content: space-between;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
  }
  .footer-left {
    flex: 1 1 300px;
    min-width: 250px;
  }
  .footer-right {
    flex: 2 1 400px;
    min-width: 280px;
  }
  .footer-logo {
    font-size: 2rem;
    font-weight: 700;
    color: #f5a623;
    letter-spacing: 1px;
  }
  .footer-brand {
    margin-bottom: 20px;
  }
  .footer-contact p {
    margin: 8px 0;
    font-size: 0.95rem;
    line-height: 1.5;
  }
  .footer-contact a {
    color: #f5a623;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  .footer-nav li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav li a:hover {
    color: #f5a623;
  }
  .footer-policy {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
  }
  .footer-policy a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-policy a:hover {
    color: #f5a623;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #999;
    line-height: 1.4;
    margin-bottom: 15px;
    font-style: italic;
  }
  .footer-copyright {
    font-size: 0.85rem;
    color: #888;
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      gap: 30px;
    }
    .footer-left, .footer-right {
      flex: 1 1 100%;
      min-width: auto;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 10px;
    }
    .footer-policy {
      flex-direction: column;
      gap: 10px;
    }
  }

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

    .nfcookie-v11__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, .45), rgba(17, 24, 39, .95));
        color: var(--neutral-100);
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, .35);
    }

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

    .nfcookie-v11__top strong {font-size: 16px;}

    .nfcookie-v11__top button {
        border: 0;
        background: transparent;
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
        cursor: pointer;
    }

    .nfcookie-v11 p {margin: 10px 0 0; color: #d1d5db;}

    .nfcookie-v11__actions {margin-top: 14px; display: flex; gap: 8px;}

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

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

    @media (max-width: 760px) {
        .nfcookie-v11__card {max-width: none;}
    }

.hiw-ux10 {
        padding: clamp(3.2rem, 7vw, 5.8rem) var(--space-x);
        background: var(--neutral-100);
        color: var(--neutral-900);
    }

    .hiw-ux10__wrap {
        max-width: 60rem;
        margin: 0 auto;
    }

    .hiw-ux10__head {
        text-align: center;
        margin-bottom: 1.2rem;
    }

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

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

    .hiw-ux10__rows {
        display: grid;
        gap: .8rem;
    }

    .hiw-ux10__rows article {
        display: grid;
        grid-template-columns: 3rem 1fr;
        gap: .9rem;
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--neutral-100);
        border: 1px solid var(--neutral-300);
    }

    .hiw-ux10__rows strong {
        display: grid;
        place-items: center;
        width: 3rem;
        height: 3rem;
        border-radius: var(--radius-md);
        background: var(--neutral-100);
        color: var(--brand);
        box-shadow: var(--shadow-sm);
    }

    .hiw-ux10__rows h3 {
        margin: 0;
    }

    .hiw-ux10__rows p {
        margin: .35rem 0 0;
        color: var(--neutral-600);
    }

body{margin:0;padding:0;font-family:var(--font-family);box-sizing:border-box;}
*{box-sizing:border-box;}

.cap-prism-v5{padding:calc(var(--space-y)*3) var(--space-x);background:var(--neutral-800);color:var(--neutral-0)}
.cap-prism-v5 .shell{max-width:var(--max-w);margin:0 auto;display:grid;gap:var(--gap)}
.cap-prism-v5 .banner{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:var(--gap);padding:1rem;border-radius:var(--radius-lg);background:var(--gradient-hero)}
.cap-prism-v5 h2{margin:0;font-size:clamp(1.7rem,3.3vw,2.5rem)}
.cap-prism-v5 .banner a{padding:.56rem .82rem;border-radius:var(--radius-sm);text-decoration:none;background:var(--surface-1);color:var(--fg-on-surface);font-weight:700}
.cap-prism-v5 .cards{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:var(--gap);padding:0;margin:0;list-style:none}
.cap-prism-v5 li{padding:1rem;border-radius:var(--radius-md);background:var(--chip-bg)}
.cap-prism-v5 h3{margin:0 0 .45rem}
.cap-prism-v5 p{margin:0;opacity:.9}
.cap-prism-v5 small{display:block;margin-top:.5rem;font-weight:700}
@media (max-width:980px){.cap-prism-v5 .cards{grid-template-columns:repeat(2,minmax(0,1fr))}}@media (max-width:640px){.cap-prism-v5 .cards{grid-template-columns:1fr}}

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

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

    .plans-lv2__head {
        margin-bottom: 14px;
    }

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

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

    .plans-lv2__range {
        margin-bottom: 12px;
        border: 1px solid var(--neutral-300);
        border-radius: var(--radius-md);
        background: var(--neutral-100);
        padding: 12px;
        display: grid;
        gap: 8px;
    }

    .plans-lv2__range label {
        font-weight: 700;
    }

    .plans-lv2__range input {
        width: 100%;
        accent-color: var(--bg-primary);
    }

    .plans-lv2__range span {
        color: var(--neutral-600);
    }

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

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

    .plans-lv2__grid h3 {
        margin: 0;
    }

    .plans-lv2__tier {
        margin: 5px 0 7px;
        color: var(--brand);
        font-weight: 700;
    }

    .plans-lv2__desc {
        margin: 0 0 6px;
        color: var(--neutral-600);
    }

    .plans-lv2__grid ul {
        margin: 10px 0 0;
        padding-left: 18px;
        display: grid;
        gap: 5px;
        color: var(--neutral-800);
    }

    .plans-lv2__grid button {
        width: 100%;
        margin-top: 10px;
        border: 1px solid var(--bg-primary);
        border-radius: var(--radius-sm);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: 9px 12px;
    }

header {
    position: relative;
    background: var(--surface-1);
    box-shadow: var(--shadow-sm);
    padding: var(--space-y) var(--space-x);
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    letter-spacing: 0.02em;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .nav-left,
  .nav-right {
    display: flex;
    gap: var(--gap);
  }
  .nav-link {
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.25rem 0;
    transition: color var(--anim-duration) var(--anim-ease);
    position: relative;
  }
  .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--brand);
    transition: width var(--anim-duration) var(--anim-ease);
  }
  .nav-link:hover {
    color: var(--brand);
  }
  .nav-link:hover::after {
    width: 100%;
  }
  .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: 2.5px;
    background: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
  }
  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay);
    backdrop-filter: blur(4px);
    z-index: 105;
    align-items: center;
    justify-content: center;
  }
  .mobile-menu.open {
    display: flex;
  }
  .mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: calc(var(--gap) * 2);
    background: var(--surface-1);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
  }
  .mobile-nav .nav-link {
    font-size: calc(var(--font-size-base) * 1.25);
    font-weight: 500;
  }
  @media (max-width: 767px) {
    .nav-left,
    .nav-right {
      display: none;
    }
    .burger {
      display: flex;
    }
    .header-inner {
      justify-content: space-between;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
  }
  .footer-left {
    flex: 1 1 300px;
    min-width: 250px;
  }
  .footer-right {
    flex: 2 1 400px;
    min-width: 280px;
  }
  .footer-logo {
    font-size: 2rem;
    font-weight: 700;
    color: #f5a623;
    letter-spacing: 1px;
  }
  .footer-brand {
    margin-bottom: 20px;
  }
  .footer-contact p {
    margin: 8px 0;
    font-size: 0.95rem;
    line-height: 1.5;
  }
  .footer-contact a {
    color: #f5a623;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  .footer-nav li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav li a:hover {
    color: #f5a623;
  }
  .footer-policy {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
  }
  .footer-policy a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-policy a:hover {
    color: #f5a623;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #999;
    line-height: 1.4;
    margin-bottom: 15px;
    font-style: italic;
  }
  .footer-copyright {
    font-size: 0.85rem;
    color: #888;
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      gap: 30px;
    }
    .footer-left, .footer-right {
      flex: 1 1 100%;
      min-width: auto;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 10px;
    }
    .footer-policy {
      flex-direction: column;
      gap: 10px;
    }
  }

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

    .nfcookie-v11__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, .45), rgba(17, 24, 39, .95));
        color: var(--neutral-100);
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, .35);
    }

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

    .nfcookie-v11__top strong {font-size: 16px;}

    .nfcookie-v11__top button {
        border: 0;
        background: transparent;
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
        cursor: pointer;
    }

    .nfcookie-v11 p {margin: 10px 0 0; color: #d1d5db;}

    .nfcookie-v11__actions {margin-top: 14px; display: flex; gap: 8px;}

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

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

    @media (max-width: 760px) {
        .nfcookie-v11__card {max-width: none;}
    }

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

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

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

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

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

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

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

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

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

header {
    position: relative;
    background: var(--surface-1);
    box-shadow: var(--shadow-sm);
    padding: var(--space-y) var(--space-x);
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    letter-spacing: 0.02em;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .nav-left,
  .nav-right {
    display: flex;
    gap: var(--gap);
  }
  .nav-link {
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.25rem 0;
    transition: color var(--anim-duration) var(--anim-ease);
    position: relative;
  }
  .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--brand);
    transition: width var(--anim-duration) var(--anim-ease);
  }
  .nav-link:hover {
    color: var(--brand);
  }
  .nav-link:hover::after {
    width: 100%;
  }
  .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: 2.5px;
    background: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
  }
  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay);
    backdrop-filter: blur(4px);
    z-index: 105;
    align-items: center;
    justify-content: center;
  }
  .mobile-menu.open {
    display: flex;
  }
  .mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: calc(var(--gap) * 2);
    background: var(--surface-1);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
  }
  .mobile-nav .nav-link {
    font-size: calc(var(--font-size-base) * 1.25);
    font-weight: 500;
  }
  @media (max-width: 767px) {
    .nav-left,
    .nav-right {
      display: none;
    }
    .burger {
      display: flex;
    }
    .header-inner {
      justify-content: space-between;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
  }
  .footer-left {
    flex: 1 1 300px;
    min-width: 250px;
  }
  .footer-right {
    flex: 2 1 400px;
    min-width: 280px;
  }
  .footer-logo {
    font-size: 2rem;
    font-weight: 700;
    color: #f5a623;
    letter-spacing: 1px;
  }
  .footer-brand {
    margin-bottom: 20px;
  }
  .footer-contact p {
    margin: 8px 0;
    font-size: 0.95rem;
    line-height: 1.5;
  }
  .footer-contact a {
    color: #f5a623;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  .footer-nav li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav li a:hover {
    color: #f5a623;
  }
  .footer-policy {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
  }
  .footer-policy a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-policy a:hover {
    color: #f5a623;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #999;
    line-height: 1.4;
    margin-bottom: 15px;
    font-style: italic;
  }
  .footer-copyright {
    font-size: 0.85rem;
    color: #888;
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      gap: 30px;
    }
    .footer-left, .footer-right {
      flex: 1 1 100%;
      min-width: auto;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 10px;
    }
    .footer-policy {
      flex-direction: column;
      gap: 10px;
    }
  }

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

    .nfcookie-v11__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, .45), rgba(17, 24, 39, .95));
        color: var(--neutral-100);
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, .35);
    }

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

    .nfcookie-v11__top strong {font-size: 16px;}

    .nfcookie-v11__top button {
        border: 0;
        background: transparent;
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
        cursor: pointer;
    }

    .nfcookie-v11 p {margin: 10px 0 0; color: #d1d5db;}

    .nfcookie-v11__actions {margin-top: 14px; display: flex; gap: 8px;}

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

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

    @media (max-width: 760px) {
        .nfcookie-v11__card {max-width: none;}
    }

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

header {
    position: relative;
    background: var(--surface-1);
    box-shadow: var(--shadow-sm);
    padding: var(--space-y) var(--space-x);
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    letter-spacing: 0.02em;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .nav-left,
  .nav-right {
    display: flex;
    gap: var(--gap);
  }
  .nav-link {
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.25rem 0;
    transition: color var(--anim-duration) var(--anim-ease);
    position: relative;
  }
  .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--brand);
    transition: width var(--anim-duration) var(--anim-ease);
  }
  .nav-link:hover {
    color: var(--brand);
  }
  .nav-link:hover::after {
    width: 100%;
  }
  .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: 2.5px;
    background: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
  }
  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay);
    backdrop-filter: blur(4px);
    z-index: 105;
    align-items: center;
    justify-content: center;
  }
  .mobile-menu.open {
    display: flex;
  }
  .mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: calc(var(--gap) * 2);
    background: var(--surface-1);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
  }
  .mobile-nav .nav-link {
    font-size: calc(var(--font-size-base) * 1.25);
    font-weight: 500;
  }
  @media (max-width: 767px) {
    .nav-left,
    .nav-right {
      display: none;
    }
    .burger {
      display: flex;
    }
    .header-inner {
      justify-content: space-between;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
  }
  .footer-left {
    flex: 1 1 300px;
    min-width: 250px;
  }
  .footer-right {
    flex: 2 1 400px;
    min-width: 280px;
  }
  .footer-logo {
    font-size: 2rem;
    font-weight: 700;
    color: #f5a623;
    letter-spacing: 1px;
  }
  .footer-brand {
    margin-bottom: 20px;
  }
  .footer-contact p {
    margin: 8px 0;
    font-size: 0.95rem;
    line-height: 1.5;
  }
  .footer-contact a {
    color: #f5a623;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  .footer-nav li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav li a:hover {
    color: #f5a623;
  }
  .footer-policy {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
  }
  .footer-policy a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-policy a:hover {
    color: #f5a623;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #999;
    line-height: 1.4;
    margin-bottom: 15px;
    font-style: italic;
  }
  .footer-copyright {
    font-size: 0.85rem;
    color: #888;
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      gap: 30px;
    }
    .footer-left, .footer-right {
      flex: 1 1 100%;
      min-width: auto;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 10px;
    }
    .footer-policy {
      flex-direction: column;
      gap: 10px;
    }
  }

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

    .nfcookie-v11__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, .45), rgba(17, 24, 39, .95));
        color: var(--neutral-100);
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, .35);
    }

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

    .nfcookie-v11__top strong {font-size: 16px;}

    .nfcookie-v11__top button {
        border: 0;
        background: transparent;
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
        cursor: pointer;
    }

    .nfcookie-v11 p {margin: 10px 0 0; color: #d1d5db;}

    .nfcookie-v11__actions {margin-top: 14px; display: flex; gap: 8px;}

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

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

    @media (max-width: 760px) {
        .nfcookie-v11__card {max-width: none;}
    }

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

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

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

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

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

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

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

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

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

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

header {
    position: relative;
    background: var(--surface-1);
    box-shadow: var(--shadow-sm);
    padding: var(--space-y) var(--space-x);
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    letter-spacing: 0.02em;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .nav-left,
  .nav-right {
    display: flex;
    gap: var(--gap);
  }
  .nav-link {
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.25rem 0;
    transition: color var(--anim-duration) var(--anim-ease);
    position: relative;
  }
  .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--brand);
    transition: width var(--anim-duration) var(--anim-ease);
  }
  .nav-link:hover {
    color: var(--brand);
  }
  .nav-link:hover::after {
    width: 100%;
  }
  .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: 2.5px;
    background: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
  }
  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay);
    backdrop-filter: blur(4px);
    z-index: 105;
    align-items: center;
    justify-content: center;
  }
  .mobile-menu.open {
    display: flex;
  }
  .mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: calc(var(--gap) * 2);
    background: var(--surface-1);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
  }
  .mobile-nav .nav-link {
    font-size: calc(var(--font-size-base) * 1.25);
    font-weight: 500;
  }
  @media (max-width: 767px) {
    .nav-left,
    .nav-right {
      display: none;
    }
    .burger {
      display: flex;
    }
    .header-inner {
      justify-content: space-between;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
  }
  .footer-left {
    flex: 1 1 300px;
    min-width: 250px;
  }
  .footer-right {
    flex: 2 1 400px;
    min-width: 280px;
  }
  .footer-logo {
    font-size: 2rem;
    font-weight: 700;
    color: #f5a623;
    letter-spacing: 1px;
  }
  .footer-brand {
    margin-bottom: 20px;
  }
  .footer-contact p {
    margin: 8px 0;
    font-size: 0.95rem;
    line-height: 1.5;
  }
  .footer-contact a {
    color: #f5a623;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  .footer-nav li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav li a:hover {
    color: #f5a623;
  }
  .footer-policy {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
  }
  .footer-policy a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-policy a:hover {
    color: #f5a623;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #999;
    line-height: 1.4;
    margin-bottom: 15px;
    font-style: italic;
  }
  .footer-copyright {
    font-size: 0.85rem;
    color: #888;
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      gap: 30px;
    }
    .footer-left, .footer-right {
      flex: 1 1 100%;
      min-width: auto;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 10px;
    }
    .footer-policy {
      flex-direction: column;
      gap: 10px;
    }
  }

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

    .nfcookie-v11__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, .45), rgba(17, 24, 39, .95));
        color: var(--neutral-100);
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, .35);
    }

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

    .nfcookie-v11__top strong {font-size: 16px;}

    .nfcookie-v11__top button {
        border: 0;
        background: transparent;
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
        cursor: pointer;
    }

    .nfcookie-v11 p {margin: 10px 0 0; color: #d1d5db;}

    .nfcookie-v11__actions {margin-top: 14px; display: flex; gap: 8px;}

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

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

    @media (max-width: 760px) {
        .nfcookie-v11__card {max-width: none;}
    }

body{margin:0;padding:0;font-family:var(--font-family);box-sizing:border-box;}
*{box-sizing:border-box;}
.thank-u3{padding:calc(var(--space-y)*2.9) var(--space-x);background:var(--bg-primary);color:var(--fg-on-primary)} .thank-u3 .shell{max-width:var(--max-w);margin:0 auto;display:grid;gap:var(--gap)} .thank-u3 h2{margin:0;font-size:clamp(1.85rem,3.6vw,2.8rem);line-height:1.1} .thank-u3 .sub{margin:.35rem 0 0;opacity:.9;} .thank-u3 article,.thank-u3 li{padding:.85rem;border-radius:var(--radius-sm);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);list-style:none} .thank-u3 p{margin:0} .thank-u3 a{text-decoration:none;color:inherit;font-weight:700} .thank-u3 .hero{padding:1rem;border-radius:var(--radius-lg);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover)} .thank-u3 .stack{display:grid;gap:.45rem;margin-top:.7rem} .thank-u3 .stack p{padding:.65rem;border-radius:var(--radius-sm);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover)} .thank-u3 article{transition:transform var(--anim-duration) var(--anim-ease),box-shadow var(--anim-duration) var(--anim-ease)} .thank-u3 article:hover{transform:translateY(-4px);box-shadow:var(--shadow-md)} @media (max-width:860px){.thank-u3 .split,.thank-u3 .media,.thank-u3 .grid,.thank-u3 .cards,.thank-u3 .bento,.thank-u3 .foot{grid-template-columns:1fr}}

header {
    position: relative;
    background: var(--surface-1);
    box-shadow: var(--shadow-sm);
    padding: var(--space-y) var(--space-x);
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    letter-spacing: 0.02em;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .nav-left,
  .nav-right {
    display: flex;
    gap: var(--gap);
  }
  .nav-link {
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.25rem 0;
    transition: color var(--anim-duration) var(--anim-ease);
    position: relative;
  }
  .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--brand);
    transition: width var(--anim-duration) var(--anim-ease);
  }
  .nav-link:hover {
    color: var(--brand);
  }
  .nav-link:hover::after {
    width: 100%;
  }
  .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: 2.5px;
    background: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
  }
  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay);
    backdrop-filter: blur(4px);
    z-index: 105;
    align-items: center;
    justify-content: center;
  }
  .mobile-menu.open {
    display: flex;
  }
  .mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: calc(var(--gap) * 2);
    background: var(--surface-1);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
  }
  .mobile-nav .nav-link {
    font-size: calc(var(--font-size-base) * 1.25);
    font-weight: 500;
  }
  @media (max-width: 767px) {
    .nav-left,
    .nav-right {
      display: none;
    }
    .burger {
      display: flex;
    }
    .header-inner {
      justify-content: space-between;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
  }
  .footer-left {
    flex: 1 1 300px;
    min-width: 250px;
  }
  .footer-right {
    flex: 2 1 400px;
    min-width: 280px;
  }
  .footer-logo {
    font-size: 2rem;
    font-weight: 700;
    color: #f5a623;
    letter-spacing: 1px;
  }
  .footer-brand {
    margin-bottom: 20px;
  }
  .footer-contact p {
    margin: 8px 0;
    font-size: 0.95rem;
    line-height: 1.5;
  }
  .footer-contact a {
    color: #f5a623;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  .footer-nav li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav li a:hover {
    color: #f5a623;
  }
  .footer-policy {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
  }
  .footer-policy a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-policy a:hover {
    color: #f5a623;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #999;
    line-height: 1.4;
    margin-bottom: 15px;
    font-style: italic;
  }
  .footer-copyright {
    font-size: 0.85rem;
    color: #888;
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      gap: 30px;
    }
    .footer-left, .footer-right {
      flex: 1 1 100%;
      min-width: auto;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 10px;
    }
    .footer-policy {
      flex-direction: column;
      gap: 10px;
    }
  }

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

    .nfcookie-v11__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, .45), rgba(17, 24, 39, .95));
        color: var(--neutral-100);
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, .35);
    }

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

    .nfcookie-v11__top strong {font-size: 16px;}

    .nfcookie-v11__top button {
        border: 0;
        background: transparent;
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
        cursor: pointer;
    }

    .nfcookie-v11 p {margin: 10px 0 0; color: #d1d5db;}

    .nfcookie-v11__actions {margin-top: 14px; display: flex; gap: 8px;}

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

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

    @media (max-width: 760px) {
        .nfcookie-v11__card {max-width: none;}
    }

.err-slab-e {
        padding: clamp(56px, 10vw, 112px) 20px;
        background: repeating-linear-gradient(45deg, var(--bg-alt), var(--bg-alt) 14px, var(--neutral-0) 14px, var(--neutral-0) 28px);
        color: var(--fg-on-page);
    }

    .err-slab-e .inner {
        max-width: 700px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(26px, 4vw, 42px);
        background: var(--surface-1);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-md);
    }

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

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

    .err-slab-e a {
        display: inline-block;
        margin-top: 16px;
        color: var(--link);
        text-decoration: none;
        border-bottom: 2px solid var(--link);
        padding-bottom: 2px;
    }