:root {
  --font-family: "Lato", sans-serif;
  --font-size-base: 16.1px;
  --line-height-base: 1.76;

  --max-w: 880px;
  --space-x: 1.07rem;
  --space-y: 1.5rem;
  --gap: 0.83rem;

  --radius-xl: 0.79rem;
  --radius-lg: 0.59rem;
  --radius-md: 0.37rem;
  --radius-sm: 0.22rem;

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

  --overlay: rgba(0,0,0,0.5);
  --anim-duration: 520ms;
  --anim-ease: ease-in-out;
  --random-number: 1;

  --brand: #1A3A5C;
  --brand-contrast: #FFFFFF;
  --accent: #D94A3D;
  --accent-contrast: #FFFFFF;

  --neutral-0: #FFFFFF;
  --neutral-100: #F5F6F8;
  --neutral-300: #C8CCD0;
  --neutral-600: #6B7280;
  --neutral-800: #2D3748;
  --neutral-900: #1A202C;

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

  --bg-alt: #F0F2F5;
  --fg-on-alt: #2D3748;

  --surface-1: #FFFFFF;
  --surface-2: #F9FAFB;
  --fg-on-surface: #1A202C;
  --border-on-surface: #E2E6EA;

  --surface-light: #FFFFFF;
  --fg-on-surface-light: #2D3748;
  --border-on-surface-light: #E2E6EA;

  --bg-primary: #1A73E8;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #1557B0;
  --ring: #1A73E8;

  --bg-accent: #D94A3D;
  --fg-on-accent: #FFFFFF;
  --bg-accent-hover: #B83A2E;

  --link: #1A73E8;
  --link-hover: #1557B0;

  --gradient-hero: linear-gradient(135deg, #1A3A5C 0%, #2D5F8A 100%);
  --gradient-accent: linear-gradient(135deg, #D94A3D 0%, #B83A2E 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-color: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 100;
  }
  .header__container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .header__nav--left,
  .header__nav--right {
    display: none;
  }
  .header__logo {
    flex-shrink: 0;
  }
  .header__logo-link {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: color var(--anim-duration) var(--anim-ease);
  }
  .header__logo-link:hover {
    color: var(--brand-contrast);
  }
  .header__menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }
  .header__menu-item {
    margin: 0;
  }
  .header__link {
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    font-weight: 500;
    padding: var(--space-y) 0;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
  }
  .header__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brand);
    transition: width var(--anim-duration) var(--anim-ease);
  }
  .header__link:hover {
    color: var(--brand);
  }
  .header__link:hover::after {
    width: 100%;
  }
  .header__burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    gap: 5px;
    z-index: 110;
  }
  .header__burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
  }
  .header__burger[aria-expanded="true"] .header__burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .header__burger[aria-expanded="true"] .header__burger-line:nth-child(2) {
    opacity: 0;
  }
  .header__burger[aria-expanded="true"] .header__burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .header__mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-md);
    padding: var(--space-y) var(--space-x);
    z-index: 105;
  }
  .header__mobile-menu.active {
    display: block;
  }
  .header__mobile-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--gap);
  }
  .header__mobile-item {
    margin: 0;
  }
  .header__mobile-link {
    display: block;
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    font-weight: 500;
    padding: var(--space-y) 0;
    border-bottom: 1px solid var(--border-on-surface-light);
    transition: color var(--anim-duration) var(--anim-ease);
  }
  .header__mobile-link:hover {
    color: var(--brand);
  }
  @media (min-width: 768px) {
    .header__nav--left,
    .header__nav--right {
      display: flex;
    }
    .header__burger {
      display: none;
    }
    .header__mobile-menu {
      display: none !important;
    }
    .header__container {
      justify-content: center;
      gap: calc(var(--gap) * 2);
    }
    .header__logo {
      order: 0;
    }
    .header__nav--left {
      order: -1;
    }
    .header__nav--right {
      order: 1;
    }
  }

.footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
  }
  .footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer__brand {
    flex: 1 1 200px;
    min-width: 160px;
  }
  .footer__logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f0c040;
    text-decoration: none;
    letter-spacing: 0.02em;
  }
  .footer__logo:hover {
    opacity: 0.85;
  }
  .footer__tagline {
    margin: 0.3rem 0 0;
    font-size: 0.85rem;
    color: #b0b0c0;
  }
  .footer__nav {
    flex: 1 1 180px;
    min-width: 140px;
  }
  .footer__nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }
  .footer__nav-list a {
    color: #c0c0d0;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer__nav-list a:hover {
    color: #f0c040;
  }
  .footer__legal {
    flex: 1 1 160px;
    min-width: 130px;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }
  .footer__legal a {
    color: #c0c0d0;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer__legal a:hover {
    color: #f0c040;
  }
  .footer__contact {
    flex: 1 1 220px;
    min-width: 180px;
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    color: #d0d0e0;
  }
  .footer__contact a {
    color: #d0d0e0;
    text-decoration: none;
  }
  .footer__contact a:hover {
    color: #f0c040;
  }
  .footer__disclaimer {
    flex: 0 0 100%;
    font-size: 0.75rem;
    color: #9090a0;
    margin: 0.5rem 0 0;
    border-top: 1px solid #2a2a3e;
    padding-top: 0.8rem;
    text-align: center;
  }
  .footer__copy {
    flex: 0 0 100%;
    font-size: 0.75rem;
    color: #707080;
    margin: 0.2rem 0 0;
    text-align: center;
  }
  @media (max-width: 640px) {
    .footer__inner {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer__nav-list {
      align-items: center;
    }
    .footer__legal {
      align-items: center;
    }
    .footer__contact {
      align-items: center;
    }
  }

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

    .nfcookie-v7__wrap {
        max-width: 920px;
        margin: 0 auto;
        padding: calc(var(--space-y) * .9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--bg-primary));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .nfcookie-v7__text strong {display: block; margin-bottom: 4px;}
    .nfcookie-v7__text p {margin: 0; opacity: .95;}

    .nfcookie-v7__actions {display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end;}

    .nfcookie-v7__actions button {
        border: 1px solid rgba(255,255,255,.35);
        background: rgba(255,255,255,.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v7__actions button[data-choice='accept'] {
        background: var(--fg-on-primary);
        color: var(--accent);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v7__wrap {grid-template-columns: 1fr;}
        .nfcookie-v7__actions {justify-content: flex-start;}
    }

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

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

    .wp-lang-switcher-v2__btn {
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
        padding: calc(10px + var(--local-random) * 2px) calc(16px + var(--local-random) * 2px);
        border-radius: calc(var(--radius-lg) + var(--local-random) * 4px);
        cursor: pointer;
        display: flex;
        gap: 10px;
        align-items: center;
        box-shadow: var(--shadow-lg);
        transition: all var(--anim-duration) var(--anim-ease);
        border: 2px solid transparent;
        position: relative;
        overflow: hidden;
    }

    .wp-lang-switcher-v2__btn::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);

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

    .wp-lang-switcher-v2__btn:hover {
        transform: translateY(calc(-2px - var(--local-random) * 1px));
        box-shadow: 0 12px 32px rgba(59, 130, 246, calc(0.3 + var(--local-random) * 0.1));
    }

    .wp-lang-switcher-v2__btn:hover::before {
        opacity: 1;
    }

    .wp-lang-switcher-v2__icon {
        font-size: calc(18px + var(--local-random) * 2px);
        animation: rotate calc(18s + var(--local-random) * 4s) linear infinite;
    }

    @keyframes rotate {
        from {
            transform: rotate(0deg);
        }
        to {
            transform: rotate(360deg);
        }
    }

    .wp-lang-switcher-v2__label {
        font-weight: 600;
        font-size: 14px;
        letter-spacing: calc(0.3px + var(--local-random) * 0.2px);
    }

    .wp-lang-switcher-v2__panel {
        display: none;
        position: absolute;
        right: 0;
        bottom: calc(100% + 12px);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: calc(var(--radius-lg) - var(--local-random) * 2px);
        overflow: hidden;
        box-shadow: var(--shadow-lg);
        min-width: calc(190px + var(--local-random) * 10px);

        transform: translateY(10px);
        transition: all var(--anim-duration) var(--anim-ease);
    }

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

    .wp-lang-switcher-v2__panel button,
    .wp-lang-switcher-v2__panel a {
        width: 100%;
        text-align: left;
        padding: calc(10px + var(--local-random) * 2px) calc(14px + var(--local-random) * 2px);
        border: 0;
        background: var(--surface-1);
        color: var(--fg-on-surface);
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 12px;

        font-size: 15px;
        transition: all var(--anim-duration) var(--anim-ease);
        position: relative;
        text-decoration: none;
    }

    .wp-lang-switcher-v2__panel button::before,
    .wp-lang-switcher-v2__panel a::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: calc(2px + var(--local-random) * 1px);
        background: var(--bg-primary);
        transform: scaleY(0);
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .wp-lang-switcher-v2__panel button:hover,
    .wp-lang-switcher-v2__panel a:hover {
        background: var(--bg-alt);
        padding-left: calc(18px + var(--local-random) * 4px);
    }

    .wp-lang-switcher-v2__panel button:hover::before,
    .wp-lang-switcher-v2__panel a:hover::before {
        transform: scaleY(1);
    }

    .wp-lang-switcher-v2__flag {
        font-size: 20px;
    }

.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/3183197/pexels-photo-3183197.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)
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.education-struct-light-v16 {
    padding: calc(var(--space-y) * 2) var(--space-x);
    background: var(--neutral-0);
    color: var(--neutral-900);
}

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

.education-struct-light-v16__modules {
    display: grid;
    gap: .6rem;
}

.education-struct-light-v16 details {
    background: var(--neutral-100);
    border: 1px solid var(--neutral-300);
    border-radius: var(--radius-lg);
    padding: .85rem;
}

.education-struct-light-v16 summary {
    cursor: pointer;
    font-weight: 700;
    color: var(--neutral-900);
}

.education-struct-light-v16 p {
    margin: .55rem 0 0;
    color: var(--neutral-800);
}

.education-struct-light-v16__cta {
    display: flex;
}

.education-struct-light-v16__cta a {
    display: inline-flex;
    min-height: 2.3rem;
    padding: 0 .8rem;
    align-items: center;
    border-radius: var(--radius-sm);
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    border: 1px solid var(--ring);
    text-decoration: none;
}

.why-choose {

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

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

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

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

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

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

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

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

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

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

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

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

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

        pointer-events: none;
    }

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

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

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

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

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

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

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

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

.header {
    background-color: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 100;
  }
  .header__container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .header__nav--left,
  .header__nav--right {
    display: none;
  }
  .header__logo {
    flex-shrink: 0;
  }
  .header__logo-link {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: color var(--anim-duration) var(--anim-ease);
  }
  .header__logo-link:hover {
    color: var(--brand-contrast);
  }
  .header__menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }
  .header__menu-item {
    margin: 0;
  }
  .header__link {
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    font-weight: 500;
    padding: var(--space-y) 0;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
  }
  .header__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brand);
    transition: width var(--anim-duration) var(--anim-ease);
  }
  .header__link:hover {
    color: var(--brand);
  }
  .header__link:hover::after {
    width: 100%;
  }
  .header__burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    gap: 5px;
    z-index: 110;
  }
  .header__burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
  }
  .header__burger[aria-expanded="true"] .header__burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .header__burger[aria-expanded="true"] .header__burger-line:nth-child(2) {
    opacity: 0;
  }
  .header__burger[aria-expanded="true"] .header__burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .header__mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-md);
    padding: var(--space-y) var(--space-x);
    z-index: 105;
  }
  .header__mobile-menu.active {
    display: block;
  }
  .header__mobile-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--gap);
  }
  .header__mobile-item {
    margin: 0;
  }
  .header__mobile-link {
    display: block;
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    font-weight: 500;
    padding: var(--space-y) 0;
    border-bottom: 1px solid var(--border-on-surface-light);
    transition: color var(--anim-duration) var(--anim-ease);
  }
  .header__mobile-link:hover {
    color: var(--brand);
  }
  @media (min-width: 768px) {
    .header__nav--left,
    .header__nav--right {
      display: flex;
    }
    .header__burger {
      display: none;
    }
    .header__mobile-menu {
      display: none !important;
    }
    .header__container {
      justify-content: center;
      gap: calc(var(--gap) * 2);
    }
    .header__logo {
      order: 0;
    }
    .header__nav--left {
      order: -1;
    }
    .header__nav--right {
      order: 1;
    }
  }

.footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
  }
  .footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer__brand {
    flex: 1 1 200px;
    min-width: 160px;
  }
  .footer__logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f0c040;
    text-decoration: none;
    letter-spacing: 0.02em;
  }
  .footer__logo:hover {
    opacity: 0.85;
  }
  .footer__tagline {
    margin: 0.3rem 0 0;
    font-size: 0.85rem;
    color: #b0b0c0;
  }
  .footer__nav {
    flex: 1 1 180px;
    min-width: 140px;
  }
  .footer__nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }
  .footer__nav-list a {
    color: #c0c0d0;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer__nav-list a:hover {
    color: #f0c040;
  }
  .footer__legal {
    flex: 1 1 160px;
    min-width: 130px;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }
  .footer__legal a {
    color: #c0c0d0;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer__legal a:hover {
    color: #f0c040;
  }
  .footer__contact {
    flex: 1 1 220px;
    min-width: 180px;
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    color: #d0d0e0;
  }
  .footer__contact a {
    color: #d0d0e0;
    text-decoration: none;
  }
  .footer__contact a:hover {
    color: #f0c040;
  }
  .footer__disclaimer {
    flex: 0 0 100%;
    font-size: 0.75rem;
    color: #9090a0;
    margin: 0.5rem 0 0;
    border-top: 1px solid #2a2a3e;
    padding-top: 0.8rem;
    text-align: center;
  }
  .footer__copy {
    flex: 0 0 100%;
    font-size: 0.75rem;
    color: #707080;
    margin: 0.2rem 0 0;
    text-align: center;
  }
  @media (max-width: 640px) {
    .footer__inner {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer__nav-list {
      align-items: center;
    }
    .footer__legal {
      align-items: center;
    }
    .footer__contact {
      align-items: center;
    }
  }

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

    .nfcookie-v7__wrap {
        max-width: 920px;
        margin: 0 auto;
        padding: calc(var(--space-y) * .9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--bg-primary));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .nfcookie-v7__text strong {display: block; margin-bottom: 4px;}
    .nfcookie-v7__text p {margin: 0; opacity: .95;}

    .nfcookie-v7__actions {display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end;}

    .nfcookie-v7__actions button {
        border: 1px solid rgba(255,255,255,.35);
        background: rgba(255,255,255,.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v7__actions button[data-choice='accept'] {
        background: var(--fg-on-primary);
        color: var(--accent);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v7__wrap {grid-template-columns: 1fr;}
        .nfcookie-v7__actions {justify-content: flex-start;}
    }

.testimonials-struct-v5 {
        padding: calc(var(--space-y) * 2) var(--space-x);
        background: white;
        color: black
    }

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

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

    .testimonials-struct-v5 article, .testimonials-struct-v5 blockquote, .testimonials-struct-v5 figure, .testimonials-struct-v5 .spotlight, .testimonials-struct-v5 .row {
        background: var(--chip-bg);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        padding: .85rem
    }

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

    .testimonials-struct-v5 .rail {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: .6rem
    }

    .testimonials-struct-v5 .stack {
        display: grid;
        gap: .65rem
    }

    .testimonials-struct-v5 .stack article {
        display: grid;
        grid-template-columns:3rem 1fr;
        gap: .6rem;
        align-items: center
    }

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

    .testimonials-struct-v5 .table {
        display: grid;
        gap: .45rem
    }

    .testimonials-struct-v5 .row {
        display: grid;
        grid-template-columns:12rem 1fr;
        gap: .6rem
    }

    .testimonials-struct-v5 .wall {
        columns: 3;
        column-gap: var(--gap)
    }

    .testimonials-struct-v5 blockquote {
        break-inside: avoid;
        margin: 0 0 var(--gap) 0;
        display: grid;
        gap: .4rem
    }

    .testimonials-struct-v5 .slider {
        display: grid;
        grid-template-columns:repeat(2, minmax(0, 1fr));
        gap: var(--gap)
    }

    .testimonials-struct-v5 .dots {
        display: flex;
        justify-content: center;
        gap: .4rem
    }

    .testimonials-struct-v5 .dots span {
        padding: .25rem .45rem;
        border-radius: var(--radius-sm);
        background: var(--chip-bg);
        border: 1px solid var(--border-on-surface)
    }

    @media (max-width: 900px) {
        .testimonials-struct-v5 .grid, .testimonials-struct-v5 .rail, .testimonials-struct-v5 .slider {
            grid-template-columns:1fr 1fr
        }

        .testimonials-struct-v5 .wall {
            columns: 2
        }
    }

    @media (max-width: 680px) {
        .testimonials-struct-v5 .grid, .testimonials-struct-v5 .rail, .testimonials-struct-v5 .slider, .testimonials-struct-v5 .row {
            grid-template-columns:1fr
        }

        .testimonials-struct-v5 .wall {
            columns: 1
        }
    }

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

    .identity-nv7 {
        padding: clamp(56px, 8vw, 104px) clamp(16px, 4vw, 40px);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

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

    .identity-nv7__head {
        text-align: center;
        margin-bottom: 18px;
    }

    .identity-nv7__head p {
        margin: 0;
        opacity: .9;
        letter-spacing: .08em;
        text-transform: uppercase;
    }

    .identity-nv7__head h2 {
        margin: 8px 0;
        font-size: clamp(30px, 5vw, 50px);
    }

    .identity-nv7__head span {
        display: block;
        margin: 0 auto;
        max-width: 72ch;
        opacity: .92;
    }

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

    .identity-nv7__grid article {
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        background: rgba(255, 255, 255, 0.12);
        box-shadow: var(--shadow-sm);
    }

    .identity-nv7__grid h3 {
        margin: 0;
    }

    .identity-nv7__grid p {
        margin: 7px 0;
        opacity: .94;
    }

    .identity-nv7__grid small {
        opacity: .9;
    }

.gallery--light-v6 {

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

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

.gallery__title {
    margin: 0 0 12px;
    font-size: clamp(22px,3.5vw,28px);
}

.gallery__strip {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(120px, 1fr);
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.gallery__thumb {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--surface-light);
    border: 1px solid var(--border-on-surface-light);
    min-width: 120px;
}

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

.timeline--colored-v5 {

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

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

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

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

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

.timeline__list {
    margin: 0;
    padding: 0;
    list-style: none;
    border-left: 2px solid rgba(75,85,99,0.8);
}

.timeline__item {
    position: relative;
    padding-left: 16px;
    padding-bottom: 14px;
}

.timeline__item:last-child {
    padding-bottom: 0;
}

.timeline__dot {
    position: absolute;
    left: -7px;
    top: 0.35rem;
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: var(--bg-primary);
    border: 2px solid var(--neutral-900);
}

.timeline__item--accent .timeline__dot {
    background: var(--accent);
}

.timeline__item--accent .timeline__dot {
    background: var(--accent);
}

.timeline__time {
    font-size: 0.8rem;
    color: var(--neutral-300);
}

.timeline__content h3 {
    margin: 0 0 2px;
    font-size: 0.95rem;
}

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

.header {
    background-color: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 100;
  }
  .header__container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .header__nav--left,
  .header__nav--right {
    display: none;
  }
  .header__logo {
    flex-shrink: 0;
  }
  .header__logo-link {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: color var(--anim-duration) var(--anim-ease);
  }
  .header__logo-link:hover {
    color: var(--brand-contrast);
  }
  .header__menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }
  .header__menu-item {
    margin: 0;
  }
  .header__link {
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    font-weight: 500;
    padding: var(--space-y) 0;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
  }
  .header__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brand);
    transition: width var(--anim-duration) var(--anim-ease);
  }
  .header__link:hover {
    color: var(--brand);
  }
  .header__link:hover::after {
    width: 100%;
  }
  .header__burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    gap: 5px;
    z-index: 110;
  }
  .header__burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
  }
  .header__burger[aria-expanded="true"] .header__burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .header__burger[aria-expanded="true"] .header__burger-line:nth-child(2) {
    opacity: 0;
  }
  .header__burger[aria-expanded="true"] .header__burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .header__mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-md);
    padding: var(--space-y) var(--space-x);
    z-index: 105;
  }
  .header__mobile-menu.active {
    display: block;
  }
  .header__mobile-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--gap);
  }
  .header__mobile-item {
    margin: 0;
  }
  .header__mobile-link {
    display: block;
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    font-weight: 500;
    padding: var(--space-y) 0;
    border-bottom: 1px solid var(--border-on-surface-light);
    transition: color var(--anim-duration) var(--anim-ease);
  }
  .header__mobile-link:hover {
    color: var(--brand);
  }
  @media (min-width: 768px) {
    .header__nav--left,
    .header__nav--right {
      display: flex;
    }
    .header__burger {
      display: none;
    }
    .header__mobile-menu {
      display: none !important;
    }
    .header__container {
      justify-content: center;
      gap: calc(var(--gap) * 2);
    }
    .header__logo {
      order: 0;
    }
    .header__nav--left {
      order: -1;
    }
    .header__nav--right {
      order: 1;
    }
  }

.footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
  }
  .footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer__brand {
    flex: 1 1 200px;
    min-width: 160px;
  }
  .footer__logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f0c040;
    text-decoration: none;
    letter-spacing: 0.02em;
  }
  .footer__logo:hover {
    opacity: 0.85;
  }
  .footer__tagline {
    margin: 0.3rem 0 0;
    font-size: 0.85rem;
    color: #b0b0c0;
  }
  .footer__nav {
    flex: 1 1 180px;
    min-width: 140px;
  }
  .footer__nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }
  .footer__nav-list a {
    color: #c0c0d0;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer__nav-list a:hover {
    color: #f0c040;
  }
  .footer__legal {
    flex: 1 1 160px;
    min-width: 130px;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }
  .footer__legal a {
    color: #c0c0d0;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer__legal a:hover {
    color: #f0c040;
  }
  .footer__contact {
    flex: 1 1 220px;
    min-width: 180px;
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    color: #d0d0e0;
  }
  .footer__contact a {
    color: #d0d0e0;
    text-decoration: none;
  }
  .footer__contact a:hover {
    color: #f0c040;
  }
  .footer__disclaimer {
    flex: 0 0 100%;
    font-size: 0.75rem;
    color: #9090a0;
    margin: 0.5rem 0 0;
    border-top: 1px solid #2a2a3e;
    padding-top: 0.8rem;
    text-align: center;
  }
  .footer__copy {
    flex: 0 0 100%;
    font-size: 0.75rem;
    color: #707080;
    margin: 0.2rem 0 0;
    text-align: center;
  }
  @media (max-width: 640px) {
    .footer__inner {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer__nav-list {
      align-items: center;
    }
    .footer__legal {
      align-items: center;
    }
    .footer__contact {
      align-items: center;
    }
  }

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

    .nfcookie-v7__wrap {
        max-width: 920px;
        margin: 0 auto;
        padding: calc(var(--space-y) * .9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--bg-primary));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .nfcookie-v7__text strong {display: block; margin-bottom: 4px;}
    .nfcookie-v7__text p {margin: 0; opacity: .95;}

    .nfcookie-v7__actions {display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end;}

    .nfcookie-v7__actions button {
        border: 1px solid rgba(255,255,255,.35);
        background: rgba(255,255,255,.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v7__actions button[data-choice='accept'] {
        background: var(--fg-on-primary);
        color: var(--accent);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v7__wrap {grid-template-columns: 1fr;}
        .nfcookie-v7__actions {justify-content: flex-start;}
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.features {
    padding: clamp(48px, 8vw, 80px) 0;
    background-color: var(--bg-page);
    color: var(--fg-on-page);
}

.features__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
}

.features__title {
    text-align: left;
    margin-bottom: calc(var(--space-y) * 2);
    font-size: clamp(28px, 4vw, 40px);
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: calc(var(--gap) * 1.5);
}

.features__card {
    background-color: var(--surface-2);
    padding: clamp(16px, 3vw, 32px);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    text-align: left;
    border: 1px solid var(--border-on-surface);
}

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

.features__icon {
    font-size: 2.2rem;
    color: var(--brand);
    margin-bottom: var(--space-y);
}

.features__icon--chip {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.features__card h3 {
    margin-bottom: var(--space-y);
    color: var(--fg-on-surface);
}

.features__card p {
    color: var(--fg-on-surface-light);
    margin: 0 auto;
}

.values-flare-c9 {
        padding: clamp(3.5rem, 8vw, 6rem) var(--space-x);
        background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, .15), transparent 25%), var(--gradient-accent);
        color: var(--gradient-accent);
    }

    .values-flare-c9__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .values-flare-c9__head {
        margin-bottom: 1.1rem;
    }

    .values-flare-c9__head p {
        margin: 0;
        text-transform: uppercase;
        letter-spacing: .1em;
        font-size: .82rem;
    }

    .values-flare-c9__head h2 {
        margin: .5rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .values-flare-c9__head span {
        display: block;
        margin-top: .8rem;

    }

    .values-flare-c9__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
        gap: var(--gap);
    }

    .values-flare-c9__grid article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--chip-bg);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .values-flare-c9__meta {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .values-flare-c9__meta span {
        color: var(--bg-accent);
    }

    .values-flare-c9__grid h3 {
        margin: .75rem 0 .35rem;
    }

    .values-flare-c9__grid p {
        margin: 0;

    }

    .values-flare-c9__grid small {
        display: block;
        margin-top: .55rem;
    }

.header {
    background-color: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 100;
  }
  .header__container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .header__nav--left,
  .header__nav--right {
    display: none;
  }
  .header__logo {
    flex-shrink: 0;
  }
  .header__logo-link {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: color var(--anim-duration) var(--anim-ease);
  }
  .header__logo-link:hover {
    color: var(--brand-contrast);
  }
  .header__menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }
  .header__menu-item {
    margin: 0;
  }
  .header__link {
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    font-weight: 500;
    padding: var(--space-y) 0;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
  }
  .header__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brand);
    transition: width var(--anim-duration) var(--anim-ease);
  }
  .header__link:hover {
    color: var(--brand);
  }
  .header__link:hover::after {
    width: 100%;
  }
  .header__burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    gap: 5px;
    z-index: 110;
  }
  .header__burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
  }
  .header__burger[aria-expanded="true"] .header__burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .header__burger[aria-expanded="true"] .header__burger-line:nth-child(2) {
    opacity: 0;
  }
  .header__burger[aria-expanded="true"] .header__burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .header__mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-md);
    padding: var(--space-y) var(--space-x);
    z-index: 105;
  }
  .header__mobile-menu.active {
    display: block;
  }
  .header__mobile-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--gap);
  }
  .header__mobile-item {
    margin: 0;
  }
  .header__mobile-link {
    display: block;
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    font-weight: 500;
    padding: var(--space-y) 0;
    border-bottom: 1px solid var(--border-on-surface-light);
    transition: color var(--anim-duration) var(--anim-ease);
  }
  .header__mobile-link:hover {
    color: var(--brand);
  }
  @media (min-width: 768px) {
    .header__nav--left,
    .header__nav--right {
      display: flex;
    }
    .header__burger {
      display: none;
    }
    .header__mobile-menu {
      display: none !important;
    }
    .header__container {
      justify-content: center;
      gap: calc(var(--gap) * 2);
    }
    .header__logo {
      order: 0;
    }
    .header__nav--left {
      order: -1;
    }
    .header__nav--right {
      order: 1;
    }
  }

.footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
  }
  .footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer__brand {
    flex: 1 1 200px;
    min-width: 160px;
  }
  .footer__logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f0c040;
    text-decoration: none;
    letter-spacing: 0.02em;
  }
  .footer__logo:hover {
    opacity: 0.85;
  }
  .footer__tagline {
    margin: 0.3rem 0 0;
    font-size: 0.85rem;
    color: #b0b0c0;
  }
  .footer__nav {
    flex: 1 1 180px;
    min-width: 140px;
  }
  .footer__nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }
  .footer__nav-list a {
    color: #c0c0d0;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer__nav-list a:hover {
    color: #f0c040;
  }
  .footer__legal {
    flex: 1 1 160px;
    min-width: 130px;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }
  .footer__legal a {
    color: #c0c0d0;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer__legal a:hover {
    color: #f0c040;
  }
  .footer__contact {
    flex: 1 1 220px;
    min-width: 180px;
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    color: #d0d0e0;
  }
  .footer__contact a {
    color: #d0d0e0;
    text-decoration: none;
  }
  .footer__contact a:hover {
    color: #f0c040;
  }
  .footer__disclaimer {
    flex: 0 0 100%;
    font-size: 0.75rem;
    color: #9090a0;
    margin: 0.5rem 0 0;
    border-top: 1px solid #2a2a3e;
    padding-top: 0.8rem;
    text-align: center;
  }
  .footer__copy {
    flex: 0 0 100%;
    font-size: 0.75rem;
    color: #707080;
    margin: 0.2rem 0 0;
    text-align: center;
  }
  @media (max-width: 640px) {
    .footer__inner {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer__nav-list {
      align-items: center;
    }
    .footer__legal {
      align-items: center;
    }
    .footer__contact {
      align-items: center;
    }
  }

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

    .nfcookie-v7__wrap {
        max-width: 920px;
        margin: 0 auto;
        padding: calc(var(--space-y) * .9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--bg-primary));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .nfcookie-v7__text strong {display: block; margin-bottom: 4px;}
    .nfcookie-v7__text p {margin: 0; opacity: .95;}

    .nfcookie-v7__actions {display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end;}

    .nfcookie-v7__actions button {
        border: 1px solid rgba(255,255,255,.35);
        background: rgba(255,255,255,.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v7__actions button[data-choice='accept'] {
        background: var(--fg-on-primary);
        color: var(--accent);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v7__wrap {grid-template-columns: 1fr;}
        .nfcookie-v7__actions {justify-content: flex-start;}
    }

body{margin:0;padding:0;font-family:var(--font-family);box-sizing: border-box;}
    *{box-sizing:border-box;}.clar-ux10{padding:clamp(20px,3vw,44px);background:var(--neutral-100);color:var(--neutral-900)}.clar-ux10__wrap{max-width:var(--max-w);margin:0 auto}.clar-ux10 h2{margin:0 0 12px}.clar-ux10 ol{margin:0;padding:0;list-style:none;counter-reset:c;display:grid;gap:10px}.clar-ux10 li{counter-increment:c;border:1px solid var(--neutral-300);border-radius:var(--radius-md);background:var(--neutral-0);padding:12px;position:relative}.clar-ux10 li::before{content:counter(c);position:absolute;right:10px;top:10px;width:24px;height:24px;border-radius:999px;background:var(--bg-primary);color:var(--fg-on-primary);display:grid;place-items:center;font-size:.75rem}.clar-ux10 h3{margin:0 0 6px}.clar-ux10 p{margin:0;color:var(--neutral-800)}

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

    .nfform-v7__form {
        max-width: 760px;
        margin: 0 auto;
        border: 1px solid rgba(255, 255, 255, .26);
        border-radius: var(--radius-lg);
        background: rgba(255, 255, 255, .1);
        padding: 16px;
        display: grid;
        gap: 10px;
    }

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

    .nfform-v7 p {
        margin: 0 0 2px;
        opacity: .92;
    }

    .nfform-v7 label {
        display: grid;
        gap: 6px;
    }

    .nfform-v7 input:not([type='checkbox']),
    .nfform-v7 textarea {
        width: 100%;
        border: 1px solid rgba(255, 255, 255, .35);
        border-radius: var(--radius-sm);
        background: rgba(255, 255, 255, .14);
        color: var(--fg-on-primary);
        padding: 9px;
        font: inherit;
    }

    .nfform-v7__agree {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .nfform-v7 button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 10px 14px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-weight: 700;
    }

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

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

    .nfcontacts-v8__intro p {
        margin: 0;
        color: var(--neutral-600);
    }

    .nfcontacts-v8__intro h2 {
        margin: 7px 0;
        font-size: clamp(28px, 4vw, 42px);
        color: var(--neutral-900);
    }

    .nfcontacts-v8__intro span {
        color: var(--neutral-600);
    }

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

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

    .nfcontacts-v8__cards h3 {
        margin: 0 0 6px;
    }

    .nfcontacts-v8__cards p {
        margin: 0;
        font-weight: 700;
    }

    .nfcontacts-v8__cards small {
        display: block;
        margin-top: 5px;
        color: var(--neutral-600);
    }

    .nfcontacts-v8__cards a {
        display: inline-block;
        margin-top: 8px;
        color: var(--link);
        text-decoration: none;
    }

.header {
    background-color: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 100;
  }
  .header__container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .header__nav--left,
  .header__nav--right {
    display: none;
  }
  .header__logo {
    flex-shrink: 0;
  }
  .header__logo-link {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: color var(--anim-duration) var(--anim-ease);
  }
  .header__logo-link:hover {
    color: var(--brand-contrast);
  }
  .header__menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }
  .header__menu-item {
    margin: 0;
  }
  .header__link {
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    font-weight: 500;
    padding: var(--space-y) 0;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
  }
  .header__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brand);
    transition: width var(--anim-duration) var(--anim-ease);
  }
  .header__link:hover {
    color: var(--brand);
  }
  .header__link:hover::after {
    width: 100%;
  }
  .header__burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    gap: 5px;
    z-index: 110;
  }
  .header__burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
  }
  .header__burger[aria-expanded="true"] .header__burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .header__burger[aria-expanded="true"] .header__burger-line:nth-child(2) {
    opacity: 0;
  }
  .header__burger[aria-expanded="true"] .header__burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .header__mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-md);
    padding: var(--space-y) var(--space-x);
    z-index: 105;
  }
  .header__mobile-menu.active {
    display: block;
  }
  .header__mobile-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--gap);
  }
  .header__mobile-item {
    margin: 0;
  }
  .header__mobile-link {
    display: block;
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    font-weight: 500;
    padding: var(--space-y) 0;
    border-bottom: 1px solid var(--border-on-surface-light);
    transition: color var(--anim-duration) var(--anim-ease);
  }
  .header__mobile-link:hover {
    color: var(--brand);
  }
  @media (min-width: 768px) {
    .header__nav--left,
    .header__nav--right {
      display: flex;
    }
    .header__burger {
      display: none;
    }
    .header__mobile-menu {
      display: none !important;
    }
    .header__container {
      justify-content: center;
      gap: calc(var(--gap) * 2);
    }
    .header__logo {
      order: 0;
    }
    .header__nav--left {
      order: -1;
    }
    .header__nav--right {
      order: 1;
    }
  }

.footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
  }
  .footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer__brand {
    flex: 1 1 200px;
    min-width: 160px;
  }
  .footer__logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f0c040;
    text-decoration: none;
    letter-spacing: 0.02em;
  }
  .footer__logo:hover {
    opacity: 0.85;
  }
  .footer__tagline {
    margin: 0.3rem 0 0;
    font-size: 0.85rem;
    color: #b0b0c0;
  }
  .footer__nav {
    flex: 1 1 180px;
    min-width: 140px;
  }
  .footer__nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }
  .footer__nav-list a {
    color: #c0c0d0;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer__nav-list a:hover {
    color: #f0c040;
  }
  .footer__legal {
    flex: 1 1 160px;
    min-width: 130px;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }
  .footer__legal a {
    color: #c0c0d0;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer__legal a:hover {
    color: #f0c040;
  }
  .footer__contact {
    flex: 1 1 220px;
    min-width: 180px;
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    color: #d0d0e0;
  }
  .footer__contact a {
    color: #d0d0e0;
    text-decoration: none;
  }
  .footer__contact a:hover {
    color: #f0c040;
  }
  .footer__disclaimer {
    flex: 0 0 100%;
    font-size: 0.75rem;
    color: #9090a0;
    margin: 0.5rem 0 0;
    border-top: 1px solid #2a2a3e;
    padding-top: 0.8rem;
    text-align: center;
  }
  .footer__copy {
    flex: 0 0 100%;
    font-size: 0.75rem;
    color: #707080;
    margin: 0.2rem 0 0;
    text-align: center;
  }
  @media (max-width: 640px) {
    .footer__inner {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer__nav-list {
      align-items: center;
    }
    .footer__legal {
      align-items: center;
    }
    .footer__contact {
      align-items: center;
    }
  }

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

    .nfcookie-v7__wrap {
        max-width: 920px;
        margin: 0 auto;
        padding: calc(var(--space-y) * .9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--bg-primary));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .nfcookie-v7__text strong {display: block; margin-bottom: 4px;}
    .nfcookie-v7__text p {margin: 0; opacity: .95;}

    .nfcookie-v7__actions {display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end;}

    .nfcookie-v7__actions button {
        border: 1px solid rgba(255,255,255,.35);
        background: rgba(255,255,255,.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v7__actions button[data-choice='accept'] {
        background: var(--fg-on-primary);
        color: var(--accent);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v7__wrap {grid-template-columns: 1fr;}
        .nfcookie-v7__actions {justify-content: flex-start;}
    }

.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 {
    background-color: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 100;
  }
  .header__container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .header__nav--left,
  .header__nav--right {
    display: none;
  }
  .header__logo {
    flex-shrink: 0;
  }
  .header__logo-link {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: color var(--anim-duration) var(--anim-ease);
  }
  .header__logo-link:hover {
    color: var(--brand-contrast);
  }
  .header__menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }
  .header__menu-item {
    margin: 0;
  }
  .header__link {
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    font-weight: 500;
    padding: var(--space-y) 0;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
  }
  .header__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brand);
    transition: width var(--anim-duration) var(--anim-ease);
  }
  .header__link:hover {
    color: var(--brand);
  }
  .header__link:hover::after {
    width: 100%;
  }
  .header__burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    gap: 5px;
    z-index: 110;
  }
  .header__burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
  }
  .header__burger[aria-expanded="true"] .header__burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .header__burger[aria-expanded="true"] .header__burger-line:nth-child(2) {
    opacity: 0;
  }
  .header__burger[aria-expanded="true"] .header__burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .header__mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-md);
    padding: var(--space-y) var(--space-x);
    z-index: 105;
  }
  .header__mobile-menu.active {
    display: block;
  }
  .header__mobile-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--gap);
  }
  .header__mobile-item {
    margin: 0;
  }
  .header__mobile-link {
    display: block;
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    font-weight: 500;
    padding: var(--space-y) 0;
    border-bottom: 1px solid var(--border-on-surface-light);
    transition: color var(--anim-duration) var(--anim-ease);
  }
  .header__mobile-link:hover {
    color: var(--brand);
  }
  @media (min-width: 768px) {
    .header__nav--left,
    .header__nav--right {
      display: flex;
    }
    .header__burger {
      display: none;
    }
    .header__mobile-menu {
      display: none !important;
    }
    .header__container {
      justify-content: center;
      gap: calc(var(--gap) * 2);
    }
    .header__logo {
      order: 0;
    }
    .header__nav--left {
      order: -1;
    }
    .header__nav--right {
      order: 1;
    }
  }

.footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
  }
  .footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer__brand {
    flex: 1 1 200px;
    min-width: 160px;
  }
  .footer__logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f0c040;
    text-decoration: none;
    letter-spacing: 0.02em;
  }
  .footer__logo:hover {
    opacity: 0.85;
  }
  .footer__tagline {
    margin: 0.3rem 0 0;
    font-size: 0.85rem;
    color: #b0b0c0;
  }
  .footer__nav {
    flex: 1 1 180px;
    min-width: 140px;
  }
  .footer__nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }
  .footer__nav-list a {
    color: #c0c0d0;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer__nav-list a:hover {
    color: #f0c040;
  }
  .footer__legal {
    flex: 1 1 160px;
    min-width: 130px;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }
  .footer__legal a {
    color: #c0c0d0;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer__legal a:hover {
    color: #f0c040;
  }
  .footer__contact {
    flex: 1 1 220px;
    min-width: 180px;
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    color: #d0d0e0;
  }
  .footer__contact a {
    color: #d0d0e0;
    text-decoration: none;
  }
  .footer__contact a:hover {
    color: #f0c040;
  }
  .footer__disclaimer {
    flex: 0 0 100%;
    font-size: 0.75rem;
    color: #9090a0;
    margin: 0.5rem 0 0;
    border-top: 1px solid #2a2a3e;
    padding-top: 0.8rem;
    text-align: center;
  }
  .footer__copy {
    flex: 0 0 100%;
    font-size: 0.75rem;
    color: #707080;
    margin: 0.2rem 0 0;
    text-align: center;
  }
  @media (max-width: 640px) {
    .footer__inner {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer__nav-list {
      align-items: center;
    }
    .footer__legal {
      align-items: center;
    }
    .footer__contact {
      align-items: center;
    }
  }

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

    .nfcookie-v7__wrap {
        max-width: 920px;
        margin: 0 auto;
        padding: calc(var(--space-y) * .9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--bg-primary));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .nfcookie-v7__text strong {display: block; margin-bottom: 4px;}
    .nfcookie-v7__text p {margin: 0; opacity: .95;}

    .nfcookie-v7__actions {display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end;}

    .nfcookie-v7__actions button {
        border: 1px solid rgba(255,255,255,.35);
        background: rgba(255,255,255,.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v7__actions button[data-choice='accept'] {
        background: var(--fg-on-primary);
        color: var(--accent);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v7__wrap {grid-template-columns: 1fr;}
        .nfcookie-v7__actions {justify-content: flex-start;}
    }

.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-color: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 100;
  }
  .header__container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .header__nav--left,
  .header__nav--right {
    display: none;
  }
  .header__logo {
    flex-shrink: 0;
  }
  .header__logo-link {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: color var(--anim-duration) var(--anim-ease);
  }
  .header__logo-link:hover {
    color: var(--brand-contrast);
  }
  .header__menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }
  .header__menu-item {
    margin: 0;
  }
  .header__link {
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    font-weight: 500;
    padding: var(--space-y) 0;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
  }
  .header__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brand);
    transition: width var(--anim-duration) var(--anim-ease);
  }
  .header__link:hover {
    color: var(--brand);
  }
  .header__link:hover::after {
    width: 100%;
  }
  .header__burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    gap: 5px;
    z-index: 110;
  }
  .header__burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
  }
  .header__burger[aria-expanded="true"] .header__burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .header__burger[aria-expanded="true"] .header__burger-line:nth-child(2) {
    opacity: 0;
  }
  .header__burger[aria-expanded="true"] .header__burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .header__mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-md);
    padding: var(--space-y) var(--space-x);
    z-index: 105;
  }
  .header__mobile-menu.active {
    display: block;
  }
  .header__mobile-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--gap);
  }
  .header__mobile-item {
    margin: 0;
  }
  .header__mobile-link {
    display: block;
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    font-weight: 500;
    padding: var(--space-y) 0;
    border-bottom: 1px solid var(--border-on-surface-light);
    transition: color var(--anim-duration) var(--anim-ease);
  }
  .header__mobile-link:hover {
    color: var(--brand);
  }
  @media (min-width: 768px) {
    .header__nav--left,
    .header__nav--right {
      display: flex;
    }
    .header__burger {
      display: none;
    }
    .header__mobile-menu {
      display: none !important;
    }
    .header__container {
      justify-content: center;
      gap: calc(var(--gap) * 2);
    }
    .header__logo {
      order: 0;
    }
    .header__nav--left {
      order: -1;
    }
    .header__nav--right {
      order: 1;
    }
  }

.footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
  }
  .footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer__brand {
    flex: 1 1 200px;
    min-width: 160px;
  }
  .footer__logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f0c040;
    text-decoration: none;
    letter-spacing: 0.02em;
  }
  .footer__logo:hover {
    opacity: 0.85;
  }
  .footer__tagline {
    margin: 0.3rem 0 0;
    font-size: 0.85rem;
    color: #b0b0c0;
  }
  .footer__nav {
    flex: 1 1 180px;
    min-width: 140px;
  }
  .footer__nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }
  .footer__nav-list a {
    color: #c0c0d0;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer__nav-list a:hover {
    color: #f0c040;
  }
  .footer__legal {
    flex: 1 1 160px;
    min-width: 130px;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }
  .footer__legal a {
    color: #c0c0d0;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer__legal a:hover {
    color: #f0c040;
  }
  .footer__contact {
    flex: 1 1 220px;
    min-width: 180px;
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    color: #d0d0e0;
  }
  .footer__contact a {
    color: #d0d0e0;
    text-decoration: none;
  }
  .footer__contact a:hover {
    color: #f0c040;
  }
  .footer__disclaimer {
    flex: 0 0 100%;
    font-size: 0.75rem;
    color: #9090a0;
    margin: 0.5rem 0 0;
    border-top: 1px solid #2a2a3e;
    padding-top: 0.8rem;
    text-align: center;
  }
  .footer__copy {
    flex: 0 0 100%;
    font-size: 0.75rem;
    color: #707080;
    margin: 0.2rem 0 0;
    text-align: center;
  }
  @media (max-width: 640px) {
    .footer__inner {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer__nav-list {
      align-items: center;
    }
    .footer__legal {
      align-items: center;
    }
    .footer__contact {
      align-items: center;
    }
  }

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

    .nfcookie-v7__wrap {
        max-width: 920px;
        margin: 0 auto;
        padding: calc(var(--space-y) * .9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--bg-primary));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .nfcookie-v7__text strong {display: block; margin-bottom: 4px;}
    .nfcookie-v7__text p {margin: 0; opacity: .95;}

    .nfcookie-v7__actions {display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end;}

    .nfcookie-v7__actions button {
        border: 1px solid rgba(255,255,255,.35);
        background: rgba(255,255,255,.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v7__actions button[data-choice='accept'] {
        background: var(--fg-on-primary);
        color: var(--accent);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v7__wrap {grid-template-columns: 1fr;}
        .nfcookie-v7__actions {justify-content: flex-start;}
    }

.thank-mode-f {
        padding: clamp(56px, 10vw, 112px) 18px;
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    .thank-mode-f .shell {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        border-radius: var(--radius-xl);
        padding: clamp(30px, 4vw, 46px);
        background: linear-gradient(180deg, var(--surface-1), var(--surface-2));
        border: 1px solid var(--border-on-surface-light);
    }

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

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

    .thank-mode-f a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 16px;
        border-radius: var(--radius-md);
        text-decoration: none;
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

.header {
    background-color: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 100;
  }
  .header__container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .header__nav--left,
  .header__nav--right {
    display: none;
  }
  .header__logo {
    flex-shrink: 0;
  }
  .header__logo-link {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: color var(--anim-duration) var(--anim-ease);
  }
  .header__logo-link:hover {
    color: var(--brand-contrast);
  }
  .header__menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }
  .header__menu-item {
    margin: 0;
  }
  .header__link {
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    font-weight: 500;
    padding: var(--space-y) 0;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
  }
  .header__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brand);
    transition: width var(--anim-duration) var(--anim-ease);
  }
  .header__link:hover {
    color: var(--brand);
  }
  .header__link:hover::after {
    width: 100%;
  }
  .header__burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    gap: 5px;
    z-index: 110;
  }
  .header__burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
  }
  .header__burger[aria-expanded="true"] .header__burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .header__burger[aria-expanded="true"] .header__burger-line:nth-child(2) {
    opacity: 0;
  }
  .header__burger[aria-expanded="true"] .header__burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .header__mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-md);
    padding: var(--space-y) var(--space-x);
    z-index: 105;
  }
  .header__mobile-menu.active {
    display: block;
  }
  .header__mobile-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--gap);
  }
  .header__mobile-item {
    margin: 0;
  }
  .header__mobile-link {
    display: block;
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    font-weight: 500;
    padding: var(--space-y) 0;
    border-bottom: 1px solid var(--border-on-surface-light);
    transition: color var(--anim-duration) var(--anim-ease);
  }
  .header__mobile-link:hover {
    color: var(--brand);
  }
  @media (min-width: 768px) {
    .header__nav--left,
    .header__nav--right {
      display: flex;
    }
    .header__burger {
      display: none;
    }
    .header__mobile-menu {
      display: none !important;
    }
    .header__container {
      justify-content: center;
      gap: calc(var(--gap) * 2);
    }
    .header__logo {
      order: 0;
    }
    .header__nav--left {
      order: -1;
    }
    .header__nav--right {
      order: 1;
    }
  }

.footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
  }
  .footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer__brand {
    flex: 1 1 200px;
    min-width: 160px;
  }
  .footer__logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f0c040;
    text-decoration: none;
    letter-spacing: 0.02em;
  }
  .footer__logo:hover {
    opacity: 0.85;
  }
  .footer__tagline {
    margin: 0.3rem 0 0;
    font-size: 0.85rem;
    color: #b0b0c0;
  }
  .footer__nav {
    flex: 1 1 180px;
    min-width: 140px;
  }
  .footer__nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }
  .footer__nav-list a {
    color: #c0c0d0;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer__nav-list a:hover {
    color: #f0c040;
  }
  .footer__legal {
    flex: 1 1 160px;
    min-width: 130px;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }
  .footer__legal a {
    color: #c0c0d0;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer__legal a:hover {
    color: #f0c040;
  }
  .footer__contact {
    flex: 1 1 220px;
    min-width: 180px;
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    color: #d0d0e0;
  }
  .footer__contact a {
    color: #d0d0e0;
    text-decoration: none;
  }
  .footer__contact a:hover {
    color: #f0c040;
  }
  .footer__disclaimer {
    flex: 0 0 100%;
    font-size: 0.75rem;
    color: #9090a0;
    margin: 0.5rem 0 0;
    border-top: 1px solid #2a2a3e;
    padding-top: 0.8rem;
    text-align: center;
  }
  .footer__copy {
    flex: 0 0 100%;
    font-size: 0.75rem;
    color: #707080;
    margin: 0.2rem 0 0;
    text-align: center;
  }
  @media (max-width: 640px) {
    .footer__inner {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer__nav-list {
      align-items: center;
    }
    .footer__legal {
      align-items: center;
    }
    .footer__contact {
      align-items: center;
    }
  }

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

    .nfcookie-v7__wrap {
        max-width: 920px;
        margin: 0 auto;
        padding: calc(var(--space-y) * .9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--bg-primary));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .nfcookie-v7__text strong {display: block; margin-bottom: 4px;}
    .nfcookie-v7__text p {margin: 0; opacity: .95;}

    .nfcookie-v7__actions {display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end;}

    .nfcookie-v7__actions button {
        border: 1px solid rgba(255,255,255,.35);
        background: rgba(255,255,255,.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v7__actions button[data-choice='accept'] {
        background: var(--fg-on-primary);
        color: var(--accent);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v7__wrap {grid-template-columns: 1fr;}
        .nfcookie-v7__actions {justify-content: flex-start;}
    }

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

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

    .err-slab-f .chip::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 6px;
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        background: var(--gradient-accent);
    }

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

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

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