:root {
  --font-family: "Montserrat", sans-serif;
  --font-size-base: 15.5px;
  --line-height-base: 1.45;

  --max-w: 1240px;
  --space-x: 1.3rem;
  --space-y: 1.25rem;
  --gap: 1.01rem;

  --radius-xl: 0.96rem;
  --radius-lg: 0.63rem;
  --radius-md: 0.41rem;
  --radius-sm: 0.23rem;

  --shadow-sm: 0 2px 6px rgba(0,0,0,0.08);
  --shadow-md: 0 7px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 18px 26px rgba(0,0,0,0.12);

  --overlay: rgba(0,0,0,0.5);
  --anim-duration: 280ms;
  --anim-ease: cubic-bezier(0.22,1,0.36,1);
  --random-number: 1;

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

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

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

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

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

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

  --bg-primary: #2A7A62;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #1F5E4D;
  --ring: #2A7A62;

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

  --link: #2A7A62;
  --link-hover: #1F5E4D;

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

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

.header {
  background-color: var(--surface-1);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: var(--space-y) var(--space-x);
}

.header__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
}

.header__left {
  display: flex;
  align-items: center;
  gap: calc(var(--gap) * 2);
}

.header__logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--anim-duration) var(--anim-ease);
}

.header__logo:hover {
  color: var(--brand-contrast);
}

.header__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: var(--gap);
}

.header__nav-link {
  text-decoration: none;
  color: var(--fg-on-surface);
  font-size: var(--font-size-base);
  padding: var(--space-y) calc(var(--space-x) / 2);
  border-radius: var(--radius-sm);
  transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

.header__nav-link:hover {
  background-color: var(--btn-ghost-bg-hover);
  color: var(--link-hover);
}

.header__right {
  display: flex;
  align-items: center;
  gap: var(--gap);
}

.header__contact {
  display: flex;
  align-items: center;
  gap: calc(var(--gap) / 2);
  color: var(--neutral-600);
  font-size: var(--font-size-base);
}

.header__contact-icon {
  font-size: 1.2rem;
}

.header__contact-text {
  white-space: nowrap;
}

.header__cta {
  display: inline-block;
  background-color: var(--bg-primary);
  color: var(--fg-on-primary);
  padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
  border-radius: var(--radius-lg);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--font-size-base);
  transition: background-color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}

.header__cta:hover {
  background-color: var(--bg-primary-hover);
}

.header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background-color var(--anim-duration) var(--anim-ease);
}

.header__burger:hover {
  background-color: var(--btn-ghost-bg-hover);
}

.header__burger-line {
  display: block;
  width: 24px;
  height: 3px;
  background-color: var(--neutral-800);
  border-radius: 2px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.header__burger.active .header__burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header__burger.active .header__burger-line:nth-child(2) {
  opacity: 0;
}

.header__burger.active .header__burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 767px) {
  .header__nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--surface-1);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(-100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    z-index: 99;
  }

  .header__nav.open {
    transform: translateX(0);
  }

  .header__nav-list {
    flex-direction: column;
    align-items: center;
    gap: calc(var(--gap) * 2);
  }

  .header__nav-link {
    font-size: calc(var(--font-size-base) * 1.25);
    padding: var(--space-y) var(--space-x);
  }

  .header__burger {
    display: flex;
    z-index: 100;
  }

  .header__contact {
    display: none;
  }

  .header__cta {
    display: none;
  }
}

footer {
    background-color: #f5f5f5;
    color: #333;
    padding: 2rem 1rem;
    font-family: Arial, sans-serif;
    font-size: 0.9rem;
    line-height: 1.5;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .footer-brand {
    flex: 1 1 200px;
  }
  .footer-logo {
    font-size: 1.3rem;
    font-weight: bold;
    color: #2c3e50;
    text-decoration: none;
  }
  .footer-tagline {
    margin: 0.3rem 0 0;
    color: #666;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav a {
    color: #2c3e50;
    text-decoration: none;
  }
  .footer-nav a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-legal a {
    color: #2c3e50;
    text-decoration: none;
  }
  .footer-legal a:hover {
    text-decoration: underline;
  }
  .footer-contact {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
  }
  .footer-contact a {
    color: #2c3e50;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-social {
    display: flex;
    gap: 1rem;
  }
  .footer-social a {
    color: #2c3e50;
    text-decoration: none;
  }
  .footer-social a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    width: 100%;
    text-align: center;
    margin: 1rem 0 0.5rem;
    color: #777;
    font-size: 0.8rem;
  }
  .footer-copy {
    width: 100%;
    text-align: center;
    margin: 0;
    color: #999;
    font-size: 0.8rem;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-legal {
      justify-content: center;
    }
    .footer-contact {
      align-items: center;
    }
    .footer-social {
      justify-content: center;
    }
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.intro-window-l9 {
        padding: clamp(3.7rem, 8vw, 6.7rem) var(--space-x);
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

    .intro-window-l9__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        gap: 1.4rem;
        align-items: center;
        flex-wrap: wrap;
    }

    .intro-window-l9__copy {
        flex: 1 1 22rem;
        order: calc(3 - var(--random-number));
    }

    .intro-window-l9__media {
        flex: 1 1 18rem;
        order: var(--random-number);
    }

    .intro-window-l9__copy p {
        margin: 0;
        color: var(--neutral-600);
        font-size: .82rem;
        letter-spacing: .1em;
        text-transform: uppercase;
    }

    .intro-window-l9__copy h1 {
        margin: .6rem 0 0;
        font-size: clamp(2.4rem, 5vw, 4.2rem);
        line-height: 1.03;
    }

    .intro-window-l9__copy span {
        display: block;
        margin-top: .9rem;
        color: var(--neutral-600);
    }

    .intro-window-l9__links {
        margin-top: 1.1rem;
        display: flex;
        gap: .75rem;
        flex-wrap: wrap;
    }

    .intro-window-l9__links 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;
        background: var(--surface-1);
        color: var(--fg-on-page);
        border: 1px solid var(--border-on-surface-light);
    }

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

    .intro-window-l9__media img {
        display: block;
        width: 100%;
        border-radius: var(--radius-xl);
        border: 1px solid var(--border-on-surface-light);
    }

    .intro-window-l9__mark {
        margin-top: .85rem;
        padding: .8rem .9rem;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
    }

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

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

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

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

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

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

    .next-ux15__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-ux15__list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
        gap: var(--gap);
    }

    .next-ux15__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-ux15__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-ux15__list h3 {
        margin: .8rem 0 .35rem;
        font-size: 1.04rem;
    }

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

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

    /* macro-bg:next-ux15__wrap */
    .next-ux15 {
        overflow: hidden;
    }

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

.recommendations-split-light {
    background: var(--neutral-100);
    color: var(--neutral-900);
    padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 40px);
}

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

.recommendations-split-light__h {
    text-align: center;
    margin-bottom: clamp(24px, 6vw, 52px);
    transform: translateY(-18px);
}

.recommendations-split-light__h h2 {
    margin: 0 0 10px;
    font-size: clamp(28px, 4.6vw, 48px);
    letter-spacing: -0.02em;
    color: var(--neutral-900);
}

.recommendations-split-light__h p {
    margin: 0;
    color: var(--neutral-600);
}

.recommendations-split-light__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: clamp(14px, 2.6vw, 22px);
}

.recommendations-split-light__card {
    grid-column: span 6;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: var(--neutral-0);
    border: 1px solid var(--neutral-300);
    display: grid;
    grid-template-rows: 170px 1fr;
    transform: translateY(26px);
}

.recommendations-split-light__card:nth-child(1) {
    grid-column: span 12;
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: 1fr;
    min-height: 320px;
}

.recommendations-split-light__media {
    position: relative;
    background-size: cover;
    background-position: center;
    background-color: rgba(17, 24, 39, 0.06);
}

.recommendations-split-light__card:nth-child(1) .recommendations-split-light__media {
    border-right: 1px solid var(--neutral-300);
}

.recommendations-split-light__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.5), rgba(17, 24, 39, 0));
    pointer-events: none;
}

.recommendations-split-light__body {
    padding: 18px 18px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.recommendations-split-light__body h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: -0.01em;
    color: var(--neutral-900);
}

.recommendations-split-light__body p {
    margin: 0;
    color: var(--neutral-800);
    font-size: 14px;
    line-height: 1.65;
}

.recommendations-split-light__link {
    margin-top: auto;
    color: var(--link);
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 11px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.recommendations-split-light__link::after {
    content: '->';
}

.recommendations-split-light__link:hover {
    color: var(--link-hover);
}

@media (max-width: 900px) {
    .recommendations-split-light__grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .recommendations-split-light__card {
        grid-column: span 6;
    }

    .recommendations-split-light__card:nth-child(1) {
        grid-template-columns: 1fr;
        grid-template-rows: 200px 1fr;
        min-height: 0;
    }

    .recommendations-split-light__card:nth-child(1) .recommendations-split-light__media {
        border-right: 0;
        border-bottom: 1px solid var(--neutral-300);
    }
}

.nfsocial-v7 {
        padding: clamp(20px, 3vw, 44px);
        background: var(--gradient-accent);
        color: var(--accent-contrast);
    }

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

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

    .nfsocial-v7 h2 {
        margin: 0;
        font-size: clamp(24px, 4.6vw, 44px);
    }

    .nfsocial-v7__head p {
        margin: 10px 0 0;
        max-width: 70ch;
        opacity: .92;
    }

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

    .nfsocial-v7__logos div {
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, .22);
        background: rgba(255, 255, 255, .1);
        min-height: 80px;
        height: 320px;
        display: grid;
        place-items: center;
        padding: 10px;
    }

    .nfsocial-v7__logos img {
        max-width: 100%;
        height: 100%;
    }

    .nfsocial-v7__stats {
        margin-top: 14px;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 10px;
    }

    .nfsocial-v7__stats article {
        border-radius: var(--radius-md);
        border: 1px solid rgba(255, 255, 255, .22);
        background: rgba(255, 255, 255, .12);
        padding: 12px;
    }

    .nfsocial-v7__stats strong,
    .nfsocial-v7__stats span {
        display: block;
    }

    .nfsocial-v7__stats span {
        margin-top: 5px;
        opacity: .92;
    }

.header {
  background-color: var(--surface-1);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: var(--space-y) var(--space-x);
}

.header__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
}

.header__left {
  display: flex;
  align-items: center;
  gap: calc(var(--gap) * 2);
}

.header__logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--anim-duration) var(--anim-ease);
}

.header__logo:hover {
  color: var(--brand-contrast);
}

.header__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: var(--gap);
}

.header__nav-link {
  text-decoration: none;
  color: var(--fg-on-surface);
  font-size: var(--font-size-base);
  padding: var(--space-y) calc(var(--space-x) / 2);
  border-radius: var(--radius-sm);
  transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

.header__nav-link:hover {
  background-color: var(--btn-ghost-bg-hover);
  color: var(--link-hover);
}

.header__right {
  display: flex;
  align-items: center;
  gap: var(--gap);
}

.header__contact {
  display: flex;
  align-items: center;
  gap: calc(var(--gap) / 2);
  color: var(--neutral-600);
  font-size: var(--font-size-base);
}

.header__contact-icon {
  font-size: 1.2rem;
}

.header__contact-text {
  white-space: nowrap;
}

.header__cta {
  display: inline-block;
  background-color: var(--bg-primary);
  color: var(--fg-on-primary);
  padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
  border-radius: var(--radius-lg);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--font-size-base);
  transition: background-color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}

.header__cta:hover {
  background-color: var(--bg-primary-hover);
}

.header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background-color var(--anim-duration) var(--anim-ease);
}

.header__burger:hover {
  background-color: var(--btn-ghost-bg-hover);
}

.header__burger-line {
  display: block;
  width: 24px;
  height: 3px;
  background-color: var(--neutral-800);
  border-radius: 2px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.header__burger.active .header__burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header__burger.active .header__burger-line:nth-child(2) {
  opacity: 0;
}

.header__burger.active .header__burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 767px) {
  .header__nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--surface-1);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(-100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    z-index: 99;
  }

  .header__nav.open {
    transform: translateX(0);
  }

  .header__nav-list {
    flex-direction: column;
    align-items: center;
    gap: calc(var(--gap) * 2);
  }

  .header__nav-link {
    font-size: calc(var(--font-size-base) * 1.25);
    padding: var(--space-y) var(--space-x);
  }

  .header__burger {
    display: flex;
    z-index: 100;
  }

  .header__contact {
    display: none;
  }

  .header__cta {
    display: none;
  }
}

footer {
    background-color: #f5f5f5;
    color: #333;
    padding: 2rem 1rem;
    font-family: Arial, sans-serif;
    font-size: 0.9rem;
    line-height: 1.5;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .footer-brand {
    flex: 1 1 200px;
  }
  .footer-logo {
    font-size: 1.3rem;
    font-weight: bold;
    color: #2c3e50;
    text-decoration: none;
  }
  .footer-tagline {
    margin: 0.3rem 0 0;
    color: #666;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav a {
    color: #2c3e50;
    text-decoration: none;
  }
  .footer-nav a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-legal a {
    color: #2c3e50;
    text-decoration: none;
  }
  .footer-legal a:hover {
    text-decoration: underline;
  }
  .footer-contact {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
  }
  .footer-contact a {
    color: #2c3e50;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-social {
    display: flex;
    gap: 1rem;
  }
  .footer-social a {
    color: #2c3e50;
    text-decoration: none;
  }
  .footer-social a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    width: 100%;
    text-align: center;
    margin: 1rem 0 0.5rem;
    color: #777;
    font-size: 0.8rem;
  }
  .footer-copy {
    width: 100%;
    text-align: center;
    margin: 0;
    color: #999;
    font-size: 0.8rem;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-legal {
      justify-content: center;
    }
    .footer-contact {
      align-items: center;
    }
    .footer-social {
      justify-content: center;
    }
  }

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

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

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

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

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

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

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

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

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

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

.testimonials-struct-v3 {
        padding: calc(var(--space-y) * 2) var(--space-x);
        background: var(--gradient-hero);
        color: var(--brand-contrast)
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .testimonials-struct-v3 .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-v3 .grid, .testimonials-struct-v3 .rail, .testimonials-struct-v3 .slider {
            grid-template-columns:1fr 1fr
        }

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

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

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

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

    .faq-fresh-v3 .shell {
        max-width: 920px;
        margin: 0 auto;
        display: grid;
        gap: 1rem;
    }

    .faq-fresh-v3 h2 {
        margin: 0;
        font-size: clamp(1.8rem, 3.3vw, 2.5rem);
    }

    .faq-fresh-v3 .list {
        display: grid;
        gap: var(--gap);
        padding: 0;
        margin: 0;
        counter-reset: faqnum;
    }

    .faq-fresh-v3 li {
        list-style: none;
        padding: 1rem 1rem 1rem 3rem;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
        position: relative;
        background: var(--surface-2);
    }

    .faq-fresh-v3 li::before {
        counter-increment: faqnum;
        content: counter(faqnum);
        position: absolute;
        left: 1rem;
        top: 1rem;
        width: 1.4rem;
        height: 1.4rem;
        border-radius: 50%;
        display: grid;
        place-items: center;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-size: .78rem;
        font-weight: 700;
    }

    .faq-fresh-v3 h3 {
        margin: 0 0 .45rem;
    }

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

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

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

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

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

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

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

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

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

    .identity-ux15__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-ux15__grid h3 {
        margin: 0;
    }

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

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

.header {
  background-color: var(--surface-1);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: var(--space-y) var(--space-x);
}

.header__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
}

.header__left {
  display: flex;
  align-items: center;
  gap: calc(var(--gap) * 2);
}

.header__logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--anim-duration) var(--anim-ease);
}

.header__logo:hover {
  color: var(--brand-contrast);
}

.header__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: var(--gap);
}

.header__nav-link {
  text-decoration: none;
  color: var(--fg-on-surface);
  font-size: var(--font-size-base);
  padding: var(--space-y) calc(var(--space-x) / 2);
  border-radius: var(--radius-sm);
  transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

.header__nav-link:hover {
  background-color: var(--btn-ghost-bg-hover);
  color: var(--link-hover);
}

.header__right {
  display: flex;
  align-items: center;
  gap: var(--gap);
}

.header__contact {
  display: flex;
  align-items: center;
  gap: calc(var(--gap) / 2);
  color: var(--neutral-600);
  font-size: var(--font-size-base);
}

.header__contact-icon {
  font-size: 1.2rem;
}

.header__contact-text {
  white-space: nowrap;
}

.header__cta {
  display: inline-block;
  background-color: var(--bg-primary);
  color: var(--fg-on-primary);
  padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
  border-radius: var(--radius-lg);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--font-size-base);
  transition: background-color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}

.header__cta:hover {
  background-color: var(--bg-primary-hover);
}

.header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background-color var(--anim-duration) var(--anim-ease);
}

.header__burger:hover {
  background-color: var(--btn-ghost-bg-hover);
}

.header__burger-line {
  display: block;
  width: 24px;
  height: 3px;
  background-color: var(--neutral-800);
  border-radius: 2px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.header__burger.active .header__burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header__burger.active .header__burger-line:nth-child(2) {
  opacity: 0;
}

.header__burger.active .header__burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 767px) {
  .header__nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--surface-1);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(-100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    z-index: 99;
  }

  .header__nav.open {
    transform: translateX(0);
  }

  .header__nav-list {
    flex-direction: column;
    align-items: center;
    gap: calc(var(--gap) * 2);
  }

  .header__nav-link {
    font-size: calc(var(--font-size-base) * 1.25);
    padding: var(--space-y) var(--space-x);
  }

  .header__burger {
    display: flex;
    z-index: 100;
  }

  .header__contact {
    display: none;
  }

  .header__cta {
    display: none;
  }
}

footer {
    background-color: #f5f5f5;
    color: #333;
    padding: 2rem 1rem;
    font-family: Arial, sans-serif;
    font-size: 0.9rem;
    line-height: 1.5;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .footer-brand {
    flex: 1 1 200px;
  }
  .footer-logo {
    font-size: 1.3rem;
    font-weight: bold;
    color: #2c3e50;
    text-decoration: none;
  }
  .footer-tagline {
    margin: 0.3rem 0 0;
    color: #666;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav a {
    color: #2c3e50;
    text-decoration: none;
  }
  .footer-nav a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-legal a {
    color: #2c3e50;
    text-decoration: none;
  }
  .footer-legal a:hover {
    text-decoration: underline;
  }
  .footer-contact {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
  }
  .footer-contact a {
    color: #2c3e50;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-social {
    display: flex;
    gap: 1rem;
  }
  .footer-social a {
    color: #2c3e50;
    text-decoration: none;
  }
  .footer-social a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    width: 100%;
    text-align: center;
    margin: 1rem 0 0.5rem;
    color: #777;
    font-size: 0.8rem;
  }
  .footer-copy {
    width: 100%;
    text-align: center;
    margin: 0;
    color: #999;
    font-size: 0.8rem;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-legal {
      justify-content: center;
    }
    .footer-contact {
      align-items: center;
    }
    .footer-social {
      justify-content: center;
    }
  }

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

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

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

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

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

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

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

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

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

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

.capabilities-light {

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

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

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

    }

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

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

    .capabilities-light .capabilities-light__list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: clamp(20px, 3vw, 32px);
    }

    .capabilities-light .capabilities-light__card {
        background: var(--surface-1);
        border: 2px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        padding: clamp(24px, 3vw, 36px);
        display: flex;
        gap: clamp(16px, 2vw, 24px);
        transition: all var(--anim-duration) var(--anim-ease);

        transform: scale(0.95);
    }

    .capabilities-light .capabilities-light__card:hover {
        border-color: var(--brand);
        box-shadow: var(--shadow-md);
        transform: scale(1);
    }

    .capabilities-light .capabilities-light__visual {
        flex-shrink: 0;
        position: relative;
    }

    .capabilities-light .capabilities-light__number {
        width: 64px;
        height: 64px;
        background: var(--bg-accent);
        border-radius: var(--radius-lg);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 32px;
    }

    .capabilities-light .capabilities-light__content {
        flex: 1;
    }

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

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

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

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

    .hiw-split-c6__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        gap: 1.5rem;
        align-items: center;
        flex-wrap: wrap;
    }

    .hiw-split-c6__media {
        flex: 1 1 18rem;
        order: var(--random-number);
    }

    .hiw-split-c6__content {
        flex: 1 1 22rem;
        order: calc(3 - var(--random-number));
    }

    .hiw-split-c6__media img {
        display: block;
        width: 100%;
        border-radius: var(--radius-xl);
        border: 1px solid rgba(255, 255, 255, .18);
        box-shadow: var(--shadow-lg);
    }

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

    .hiw-split-c6__content h2 {
        margin: .55rem 0 0;
        font-size: clamp(2rem, 4vw, 3.1rem);
    }

    .hiw-split-c6__content strong {
        display: block;
        margin-top: .8rem;
        color: var(--bg-accent);
    }

    .hiw-split-c6__copy {
        margin: .75rem 0 0;
        color: rgba(255, 255, 255, .85);
    }

    .hiw-split-c6__content ul {
        margin: 1rem 0 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: .65rem;
    }

    .hiw-split-c6__content li {
        padding: .8rem .9rem;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .16);
    }

.nfsocial-v7 {
        padding: clamp(20px, 3vw, 44px);
        background: var(--gradient-accent);
        color: var(--accent-contrast);
    }

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

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

    .nfsocial-v7 h2 {
        margin: 0;
        font-size: clamp(24px, 4.6vw, 44px);
    }

    .nfsocial-v7__head p {
        margin: 10px 0 0;
        max-width: 70ch;
        opacity: .92;
    }

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

    .nfsocial-v7__logos div {
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, .22);
        background: rgba(255, 255, 255, .1);
        min-height: 80px;
        height: 320px;
        display: grid;
        place-items: center;
        padding: 10px;
    }

    .nfsocial-v7__logos img {
        max-width: 100%;
        height: 100%;
    }

    .nfsocial-v7__stats {
        margin-top: 14px;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 10px;
    }

    .nfsocial-v7__stats article {
        border-radius: var(--radius-md);
        border: 1px solid rgba(255, 255, 255, .22);
        background: rgba(255, 255, 255, .12);
        padding: 12px;
    }

    .nfsocial-v7__stats strong,
    .nfsocial-v7__stats span {
        display: block;
    }

    .nfsocial-v7__stats span {
        margin-top: 5px;
        opacity: .92;
    }

.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);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: var(--space-y) var(--space-x);
}

.header__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
}

.header__left {
  display: flex;
  align-items: center;
  gap: calc(var(--gap) * 2);
}

.header__logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--anim-duration) var(--anim-ease);
}

.header__logo:hover {
  color: var(--brand-contrast);
}

.header__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: var(--gap);
}

.header__nav-link {
  text-decoration: none;
  color: var(--fg-on-surface);
  font-size: var(--font-size-base);
  padding: var(--space-y) calc(var(--space-x) / 2);
  border-radius: var(--radius-sm);
  transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

.header__nav-link:hover {
  background-color: var(--btn-ghost-bg-hover);
  color: var(--link-hover);
}

.header__right {
  display: flex;
  align-items: center;
  gap: var(--gap);
}

.header__contact {
  display: flex;
  align-items: center;
  gap: calc(var(--gap) / 2);
  color: var(--neutral-600);
  font-size: var(--font-size-base);
}

.header__contact-icon {
  font-size: 1.2rem;
}

.header__contact-text {
  white-space: nowrap;
}

.header__cta {
  display: inline-block;
  background-color: var(--bg-primary);
  color: var(--fg-on-primary);
  padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
  border-radius: var(--radius-lg);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--font-size-base);
  transition: background-color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}

.header__cta:hover {
  background-color: var(--bg-primary-hover);
}

.header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background-color var(--anim-duration) var(--anim-ease);
}

.header__burger:hover {
  background-color: var(--btn-ghost-bg-hover);
}

.header__burger-line {
  display: block;
  width: 24px;
  height: 3px;
  background-color: var(--neutral-800);
  border-radius: 2px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.header__burger.active .header__burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header__burger.active .header__burger-line:nth-child(2) {
  opacity: 0;
}

.header__burger.active .header__burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 767px) {
  .header__nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--surface-1);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(-100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    z-index: 99;
  }

  .header__nav.open {
    transform: translateX(0);
  }

  .header__nav-list {
    flex-direction: column;
    align-items: center;
    gap: calc(var(--gap) * 2);
  }

  .header__nav-link {
    font-size: calc(var(--font-size-base) * 1.25);
    padding: var(--space-y) var(--space-x);
  }

  .header__burger {
    display: flex;
    z-index: 100;
  }

  .header__contact {
    display: none;
  }

  .header__cta {
    display: none;
  }
}

footer {
    background-color: #f5f5f5;
    color: #333;
    padding: 2rem 1rem;
    font-family: Arial, sans-serif;
    font-size: 0.9rem;
    line-height: 1.5;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .footer-brand {
    flex: 1 1 200px;
  }
  .footer-logo {
    font-size: 1.3rem;
    font-weight: bold;
    color: #2c3e50;
    text-decoration: none;
  }
  .footer-tagline {
    margin: 0.3rem 0 0;
    color: #666;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav a {
    color: #2c3e50;
    text-decoration: none;
  }
  .footer-nav a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-legal a {
    color: #2c3e50;
    text-decoration: none;
  }
  .footer-legal a:hover {
    text-decoration: underline;
  }
  .footer-contact {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
  }
  .footer-contact a {
    color: #2c3e50;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-social {
    display: flex;
    gap: 1rem;
  }
  .footer-social a {
    color: #2c3e50;
    text-decoration: none;
  }
  .footer-social a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    width: 100%;
    text-align: center;
    margin: 1rem 0 0.5rem;
    color: #777;
    font-size: 0.8rem;
  }
  .footer-copy {
    width: 100%;
    text-align: center;
    margin: 0;
    color: #999;
    font-size: 0.8rem;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-legal {
      justify-content: center;
    }
    .footer-contact {
      align-items: center;
    }
    .footer-social {
      justify-content: center;
    }
  }

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

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

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

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

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

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

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

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

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

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

.nfform-v12 {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--surface-2);
        color: var(--fg-on-page);
    }

    .nfform-v12__form {
        max-width: 760px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        padding: 16px;
        display: grid;
        gap: 10px;
    }

    .nfform-v12 h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 40px);
        color: var(--neutral-900);
    }

    .nfform-v12 p {
        margin: 0;
        color: var(--neutral-600);
    }

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

    .nfform-v12 input:not([type='checkbox']),
    .nfform-v12 textarea {
        width: 100%;
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 9px;
        font: inherit;
    }

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

    .nfform-v12 button {
        justify-self: start;
        border: 0;
        border-radius: var(--radius-sm);
        padding: 10px 14px;
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
        font-weight: 700;
    }

body{margin:0;padding:0;font-family:var(--font-family);box-sizing: border-box;}
    *{box-sizing:border-box;}.clar-ux7{padding:clamp(20px,3vw,44px);background:var(--gradient-hero);color:var(--fg-on-primary)}.clar-ux7__wrap{max-width:var(--max-w);margin:0 auto}.clar-ux7__head p{margin:0;color:rgba(255,255,255,.86)}.clar-ux7__head h2{margin:8px 0 12px}.clar-ux7__rail{display:grid;grid-auto-flow:column;grid-auto-columns:minmax(240px,1fr);gap:10px;overflow:auto;padding-bottom:4px}.clar-ux7__rail article{border:1px solid rgba(255,255,255,.28);border-radius:var(--radius-md);background:rgba(255,255,255,.12);padding:12px}.clar-ux7__rail h3{margin:0 0 6px}.clar-ux7__rail p{margin:0}.clar-ux7__rail span{display:inline-flex;margin-top:8px;font-size:.84rem;opacity:.9}

.contacts-fresh-v1 {
        padding: calc(var(--space-y) * 2.8) var(--space-x);
        background: var(--bg-page);
        color: var(--fg-on-page);
    }

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

    .contacts-fresh-v1 .intro h2 {
        margin: .3rem 0;
        font-size: clamp(1.8rem, 3.6vw, 2.8rem);
    }

    .contacts-fresh-v1 .intro p {
        max-width: 56ch;
        color: var(--fg-on-surface-light);
    }

    .contacts-fresh-v1 .cards {
        display: grid;
        grid-template-columns:repeat(3, minmax(0, 1fr));
        gap: var(--gap);
    }

    .contacts-fresh-v1 article {
        padding: 1.1rem;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        box-shadow: var(--shadow-sm);
    }

    .contacts-fresh-v1 h3 {
        margin: 0 0 .6rem;
    }

    .contacts-fresh-v1 .value {
        margin: 0;
        font-weight: 700;
    }

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

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

    @media (max-width: 900px) {
        .contacts-fresh-v1 .cards {
            grid-template-columns:1fr;
        }
    }

.header {
  background-color: var(--surface-1);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: var(--space-y) var(--space-x);
}

.header__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
}

.header__left {
  display: flex;
  align-items: center;
  gap: calc(var(--gap) * 2);
}

.header__logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--anim-duration) var(--anim-ease);
}

.header__logo:hover {
  color: var(--brand-contrast);
}

.header__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: var(--gap);
}

.header__nav-link {
  text-decoration: none;
  color: var(--fg-on-surface);
  font-size: var(--font-size-base);
  padding: var(--space-y) calc(var(--space-x) / 2);
  border-radius: var(--radius-sm);
  transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

.header__nav-link:hover {
  background-color: var(--btn-ghost-bg-hover);
  color: var(--link-hover);
}

.header__right {
  display: flex;
  align-items: center;
  gap: var(--gap);
}

.header__contact {
  display: flex;
  align-items: center;
  gap: calc(var(--gap) / 2);
  color: var(--neutral-600);
  font-size: var(--font-size-base);
}

.header__contact-icon {
  font-size: 1.2rem;
}

.header__contact-text {
  white-space: nowrap;
}

.header__cta {
  display: inline-block;
  background-color: var(--bg-primary);
  color: var(--fg-on-primary);
  padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
  border-radius: var(--radius-lg);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--font-size-base);
  transition: background-color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}

.header__cta:hover {
  background-color: var(--bg-primary-hover);
}

.header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background-color var(--anim-duration) var(--anim-ease);
}

.header__burger:hover {
  background-color: var(--btn-ghost-bg-hover);
}

.header__burger-line {
  display: block;
  width: 24px;
  height: 3px;
  background-color: var(--neutral-800);
  border-radius: 2px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.header__burger.active .header__burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header__burger.active .header__burger-line:nth-child(2) {
  opacity: 0;
}

.header__burger.active .header__burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 767px) {
  .header__nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--surface-1);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(-100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    z-index: 99;
  }

  .header__nav.open {
    transform: translateX(0);
  }

  .header__nav-list {
    flex-direction: column;
    align-items: center;
    gap: calc(var(--gap) * 2);
  }

  .header__nav-link {
    font-size: calc(var(--font-size-base) * 1.25);
    padding: var(--space-y) var(--space-x);
  }

  .header__burger {
    display: flex;
    z-index: 100;
  }

  .header__contact {
    display: none;
  }

  .header__cta {
    display: none;
  }
}

footer {
    background-color: #f5f5f5;
    color: #333;
    padding: 2rem 1rem;
    font-family: Arial, sans-serif;
    font-size: 0.9rem;
    line-height: 1.5;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .footer-brand {
    flex: 1 1 200px;
  }
  .footer-logo {
    font-size: 1.3rem;
    font-weight: bold;
    color: #2c3e50;
    text-decoration: none;
  }
  .footer-tagline {
    margin: 0.3rem 0 0;
    color: #666;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav a {
    color: #2c3e50;
    text-decoration: none;
  }
  .footer-nav a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-legal a {
    color: #2c3e50;
    text-decoration: none;
  }
  .footer-legal a:hover {
    text-decoration: underline;
  }
  .footer-contact {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
  }
  .footer-contact a {
    color: #2c3e50;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-social {
    display: flex;
    gap: 1rem;
  }
  .footer-social a {
    color: #2c3e50;
    text-decoration: none;
  }
  .footer-social a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    width: 100%;
    text-align: center;
    margin: 1rem 0 0.5rem;
    color: #777;
    font-size: 0.8rem;
  }
  .footer-copy {
    width: 100%;
    text-align: center;
    margin: 0;
    color: #999;
    font-size: 0.8rem;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-legal {
      justify-content: center;
    }
    .footer-contact {
      align-items: center;
    }
    .footer-social {
      justify-content: center;
    }
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .terms-layout-f .list {
        display: grid;
        gap: 14px;
    }

    .terms-layout-f article {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: linear-gradient(180deg, var(--surface-1), var(--surface-2));
        padding: var(--space-y) var(--space-x);
    }

    .terms-layout-f h3 {
        margin: 0 0 8px;
        color: var(--brand);
    }

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

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

.header {
  background-color: var(--surface-1);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: var(--space-y) var(--space-x);
}

.header__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
}

.header__left {
  display: flex;
  align-items: center;
  gap: calc(var(--gap) * 2);
}

.header__logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--anim-duration) var(--anim-ease);
}

.header__logo:hover {
  color: var(--brand-contrast);
}

.header__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: var(--gap);
}

.header__nav-link {
  text-decoration: none;
  color: var(--fg-on-surface);
  font-size: var(--font-size-base);
  padding: var(--space-y) calc(var(--space-x) / 2);
  border-radius: var(--radius-sm);
  transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

.header__nav-link:hover {
  background-color: var(--btn-ghost-bg-hover);
  color: var(--link-hover);
}

.header__right {
  display: flex;
  align-items: center;
  gap: var(--gap);
}

.header__contact {
  display: flex;
  align-items: center;
  gap: calc(var(--gap) / 2);
  color: var(--neutral-600);
  font-size: var(--font-size-base);
}

.header__contact-icon {
  font-size: 1.2rem;
}

.header__contact-text {
  white-space: nowrap;
}

.header__cta {
  display: inline-block;
  background-color: var(--bg-primary);
  color: var(--fg-on-primary);
  padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
  border-radius: var(--radius-lg);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--font-size-base);
  transition: background-color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}

.header__cta:hover {
  background-color: var(--bg-primary-hover);
}

.header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background-color var(--anim-duration) var(--anim-ease);
}

.header__burger:hover {
  background-color: var(--btn-ghost-bg-hover);
}

.header__burger-line {
  display: block;
  width: 24px;
  height: 3px;
  background-color: var(--neutral-800);
  border-radius: 2px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.header__burger.active .header__burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header__burger.active .header__burger-line:nth-child(2) {
  opacity: 0;
}

.header__burger.active .header__burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 767px) {
  .header__nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--surface-1);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(-100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    z-index: 99;
  }

  .header__nav.open {
    transform: translateX(0);
  }

  .header__nav-list {
    flex-direction: column;
    align-items: center;
    gap: calc(var(--gap) * 2);
  }

  .header__nav-link {
    font-size: calc(var(--font-size-base) * 1.25);
    padding: var(--space-y) var(--space-x);
  }

  .header__burger {
    display: flex;
    z-index: 100;
  }

  .header__contact {
    display: none;
  }

  .header__cta {
    display: none;
  }
}

footer {
    background-color: #f5f5f5;
    color: #333;
    padding: 2rem 1rem;
    font-family: Arial, sans-serif;
    font-size: 0.9rem;
    line-height: 1.5;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .footer-brand {
    flex: 1 1 200px;
  }
  .footer-logo {
    font-size: 1.3rem;
    font-weight: bold;
    color: #2c3e50;
    text-decoration: none;
  }
  .footer-tagline {
    margin: 0.3rem 0 0;
    color: #666;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav a {
    color: #2c3e50;
    text-decoration: none;
  }
  .footer-nav a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-legal a {
    color: #2c3e50;
    text-decoration: none;
  }
  .footer-legal a:hover {
    text-decoration: underline;
  }
  .footer-contact {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
  }
  .footer-contact a {
    color: #2c3e50;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-social {
    display: flex;
    gap: 1rem;
  }
  .footer-social a {
    color: #2c3e50;
    text-decoration: none;
  }
  .footer-social a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    width: 100%;
    text-align: center;
    margin: 1rem 0 0.5rem;
    color: #777;
    font-size: 0.8rem;
  }
  .footer-copy {
    width: 100%;
    text-align: center;
    margin: 0;
    color: #999;
    font-size: 0.8rem;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-legal {
      justify-content: center;
    }
    .footer-contact {
      align-items: center;
    }
    .footer-social {
      justify-content: center;
    }
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.header {
  background-color: var(--surface-1);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: var(--space-y) var(--space-x);
}

.header__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
}

.header__left {
  display: flex;
  align-items: center;
  gap: calc(var(--gap) * 2);
}

.header__logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--anim-duration) var(--anim-ease);
}

.header__logo:hover {
  color: var(--brand-contrast);
}

.header__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: var(--gap);
}

.header__nav-link {
  text-decoration: none;
  color: var(--fg-on-surface);
  font-size: var(--font-size-base);
  padding: var(--space-y) calc(var(--space-x) / 2);
  border-radius: var(--radius-sm);
  transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

.header__nav-link:hover {
  background-color: var(--btn-ghost-bg-hover);
  color: var(--link-hover);
}

.header__right {
  display: flex;
  align-items: center;
  gap: var(--gap);
}

.header__contact {
  display: flex;
  align-items: center;
  gap: calc(var(--gap) / 2);
  color: var(--neutral-600);
  font-size: var(--font-size-base);
}

.header__contact-icon {
  font-size: 1.2rem;
}

.header__contact-text {
  white-space: nowrap;
}

.header__cta {
  display: inline-block;
  background-color: var(--bg-primary);
  color: var(--fg-on-primary);
  padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
  border-radius: var(--radius-lg);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--font-size-base);
  transition: background-color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}

.header__cta:hover {
  background-color: var(--bg-primary-hover);
}

.header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background-color var(--anim-duration) var(--anim-ease);
}

.header__burger:hover {
  background-color: var(--btn-ghost-bg-hover);
}

.header__burger-line {
  display: block;
  width: 24px;
  height: 3px;
  background-color: var(--neutral-800);
  border-radius: 2px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.header__burger.active .header__burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header__burger.active .header__burger-line:nth-child(2) {
  opacity: 0;
}

.header__burger.active .header__burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 767px) {
  .header__nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--surface-1);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(-100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    z-index: 99;
  }

  .header__nav.open {
    transform: translateX(0);
  }

  .header__nav-list {
    flex-direction: column;
    align-items: center;
    gap: calc(var(--gap) * 2);
  }

  .header__nav-link {
    font-size: calc(var(--font-size-base) * 1.25);
    padding: var(--space-y) var(--space-x);
  }

  .header__burger {
    display: flex;
    z-index: 100;
  }

  .header__contact {
    display: none;
  }

  .header__cta {
    display: none;
  }
}

footer {
    background-color: #f5f5f5;
    color: #333;
    padding: 2rem 1rem;
    font-family: Arial, sans-serif;
    font-size: 0.9rem;
    line-height: 1.5;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .footer-brand {
    flex: 1 1 200px;
  }
  .footer-logo {
    font-size: 1.3rem;
    font-weight: bold;
    color: #2c3e50;
    text-decoration: none;
  }
  .footer-tagline {
    margin: 0.3rem 0 0;
    color: #666;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav a {
    color: #2c3e50;
    text-decoration: none;
  }
  .footer-nav a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-legal a {
    color: #2c3e50;
    text-decoration: none;
  }
  .footer-legal a:hover {
    text-decoration: underline;
  }
  .footer-contact {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
  }
  .footer-contact a {
    color: #2c3e50;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-social {
    display: flex;
    gap: 1rem;
  }
  .footer-social a {
    color: #2c3e50;
    text-decoration: none;
  }
  .footer-social a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    width: 100%;
    text-align: center;
    margin: 1rem 0 0.5rem;
    color: #777;
    font-size: 0.8rem;
  }
  .footer-copy {
    width: 100%;
    text-align: center;
    margin: 0;
    color: #999;
    font-size: 0.8rem;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-legal {
      justify-content: center;
    }
    .footer-contact {
      align-items: center;
    }
    .footer-social {
      justify-content: center;
    }
  }

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

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

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

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

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

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

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

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

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

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

.thank-mode-b {
        padding: clamp(58px, 10vw, 114px) 18px;
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

    .thank-mode-b .card {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        border-radius: var(--radius-xl);
        padding: clamp(30px, 4vw, 46px);
        background: var(--surface-1);
        box-shadow: var(--shadow-lg);
    }

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

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

    .thank-mode-b a {
        display: inline-block;
        margin-top: 18px;
        padding: 11px 18px;
        border-radius: var(--radius-sm);
        text-decoration: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

.header {
  background-color: var(--surface-1);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: var(--space-y) var(--space-x);
}

.header__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
}

.header__left {
  display: flex;
  align-items: center;
  gap: calc(var(--gap) * 2);
}

.header__logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--anim-duration) var(--anim-ease);
}

.header__logo:hover {
  color: var(--brand-contrast);
}

.header__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: var(--gap);
}

.header__nav-link {
  text-decoration: none;
  color: var(--fg-on-surface);
  font-size: var(--font-size-base);
  padding: var(--space-y) calc(var(--space-x) / 2);
  border-radius: var(--radius-sm);
  transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

.header__nav-link:hover {
  background-color: var(--btn-ghost-bg-hover);
  color: var(--link-hover);
}

.header__right {
  display: flex;
  align-items: center;
  gap: var(--gap);
}

.header__contact {
  display: flex;
  align-items: center;
  gap: calc(var(--gap) / 2);
  color: var(--neutral-600);
  font-size: var(--font-size-base);
}

.header__contact-icon {
  font-size: 1.2rem;
}

.header__contact-text {
  white-space: nowrap;
}

.header__cta {
  display: inline-block;
  background-color: var(--bg-primary);
  color: var(--fg-on-primary);
  padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
  border-radius: var(--radius-lg);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--font-size-base);
  transition: background-color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}

.header__cta:hover {
  background-color: var(--bg-primary-hover);
}

.header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background-color var(--anim-duration) var(--anim-ease);
}

.header__burger:hover {
  background-color: var(--btn-ghost-bg-hover);
}

.header__burger-line {
  display: block;
  width: 24px;
  height: 3px;
  background-color: var(--neutral-800);
  border-radius: 2px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.header__burger.active .header__burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header__burger.active .header__burger-line:nth-child(2) {
  opacity: 0;
}

.header__burger.active .header__burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 767px) {
  .header__nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--surface-1);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(-100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    z-index: 99;
  }

  .header__nav.open {
    transform: translateX(0);
  }

  .header__nav-list {
    flex-direction: column;
    align-items: center;
    gap: calc(var(--gap) * 2);
  }

  .header__nav-link {
    font-size: calc(var(--font-size-base) * 1.25);
    padding: var(--space-y) var(--space-x);
  }

  .header__burger {
    display: flex;
    z-index: 100;
  }

  .header__contact {
    display: none;
  }

  .header__cta {
    display: none;
  }
}

footer {
    background-color: #f5f5f5;
    color: #333;
    padding: 2rem 1rem;
    font-family: Arial, sans-serif;
    font-size: 0.9rem;
    line-height: 1.5;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .footer-brand {
    flex: 1 1 200px;
  }
  .footer-logo {
    font-size: 1.3rem;
    font-weight: bold;
    color: #2c3e50;
    text-decoration: none;
  }
  .footer-tagline {
    margin: 0.3rem 0 0;
    color: #666;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav a {
    color: #2c3e50;
    text-decoration: none;
  }
  .footer-nav a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-legal a {
    color: #2c3e50;
    text-decoration: none;
  }
  .footer-legal a:hover {
    text-decoration: underline;
  }
  .footer-contact {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
  }
  .footer-contact a {
    color: #2c3e50;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-social {
    display: flex;
    gap: 1rem;
  }
  .footer-social a {
    color: #2c3e50;
    text-decoration: none;
  }
  .footer-social a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    width: 100%;
    text-align: center;
    margin: 1rem 0 0.5rem;
    color: #777;
    font-size: 0.8rem;
  }
  .footer-copy {
    width: 100%;
    text-align: center;
    margin: 0;
    color: #999;
    font-size: 0.8rem;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-legal {
      justify-content: center;
    }
    .footer-contact {
      align-items: center;
    }
    .footer-social {
      justify-content: center;
    }
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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