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

  --max-w: 1080px;
  --space-x: 0.97rem;
  --space-y: 1.45rem;
  --gap: 0.8rem;

  --radius-xl: 0.95rem;
  --radius-lg: 0.66rem;
  --radius-md: 0.41rem;
  --radius-sm: 0.21rem;

  --shadow-sm: 0 2px 5px rgba(0,0,0,0.11);
  --shadow-md: 0 4px 10px rgba(0,0,0,0.14);
  --shadow-lg: 0 14px 30px rgba(0,0,0,0.18);

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

  --brand: #00e5ff;
  --brand-contrast: #0a0a0a;
  --accent: #00e5ff;
  --accent-contrast: #0a0a0a;

  --neutral-0: #ffffff;
  --neutral-100: #f5f5f5;
  --neutral-300: #bdbdbd;
  --neutral-600: #616161;
  --neutral-800: #212121;
  --neutral-900: #0a0a0a;

  --bg-page: #0a0a0a;
  --fg-on-page: #e0e0e0;

  --bg-alt: #1a1a1a;
  --fg-on-alt: #b0bec5;

  --surface-1: #1e1e1e;
  --surface-2: #2a2a2a;
  --fg-on-surface: #e0e0e0;
  --border-on-surface: #333333;

  --surface-light: #fafafa;
  --fg-on-surface-light: #212121;
  --border-on-surface-light: #e0e0e0;

  --bg-primary: #00e5ff;
  --fg-on-primary: #0a0a0a;
  --bg-primary-hover: #00bcd4;
  --ring: #00e5ff;

  --bg-accent: #00bcd4;
  --fg-on-accent: #0a0a0a;
  --bg-accent-hover: #00acc1;

  --link: #00e5ff;
  --link-hover: #00acc1;

  --gradient-hero: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
  --gradient-accent: linear-gradient(135deg, #00e5ff 0%, #00bcd4 100%);

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

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

  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--gap);
    padding: var(--space-y) 0;
    position: relative;
    min-height: 64px;
  }

  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    white-space: nowrap;
    flex-shrink: 0;
  }

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

  .nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.25rem;
  }

  .nav-list a {
    display: inline-block;
    padding: 0.5rem 0.75rem;
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

  .nav-list a:hover,
  .nav-list a:focus-visible {
    background: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
    outline: none;
  }

  .nav-list a:focus-visible {
    box-shadow: 0 0 0 2px var(--ring);
  }

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }

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

  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

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

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

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

  @media (max-width: 767px) {
    .header-inner {
      justify-content: center;
      padding-left: 48px;
      padding-right: 0;
    }

    .burger {
      display: flex;
    }

    .nav {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1);
      box-shadow: var(--shadow-md);
      padding: 0 var(--space-x) var(--space-y);
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
      border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    }

    .nav.open {
      max-height: 400px;
      padding-bottom: var(--space-y);
    }

    .nav-list {
      flex-direction: column;
      gap: 0.25rem;
    }

    .nav-list a {
      display: block;
      padding: 0.75rem 1rem;
      font-size: 1.05rem;
    }
  }

  @media (min-width: 768px) {
    .nav {
      position: static;
      box-shadow: none;
      padding: 0;
      max-height: none;
      overflow: visible;
      background: transparent;
    }

    .nav-list {
      flex-direction: row;
    }
  }

footer {
    background: #1a1a2e;
    color: #e0e0e0;
    padding: 3rem 1.5rem 1.5rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-col {
    flex: 1 1 250px;
    min-width: 200px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
  }
  .footer-offer {
    font-size: 0.95rem;
    color: #b0b0c0;
    margin-top: 0.5rem;
  }
  .footer-nav h4,
  .footer-contact h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    border-bottom: 2px solid #3a3a5c;
    padding-bottom: 0.5rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
  }
  .footer-nav ul li {
    margin-bottom: 0.5rem;
  }
  .footer-nav ul li a {
    color: #b0b0c0;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .footer-nav ul li a:hover {
    color: #ffffff;
  }
  .footer-policy-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
  }
  .footer-policy-links a {
    color: #b0b0c0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }
  .footer-policy-links a:hover {
    color: #ffffff;
  }
  .contact-info p {
    margin: 0.3rem 0;
    font-size: 0.95rem;
  }
  .contact-info a {
    color: #b0b0c0;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .contact-info a:hover {
    color: #ffffff;
  }
  .footer-social {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
  }
  .footer-social a {
    color: #b0b0c0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }
  .footer-social a:hover {
    color: #ffffff;
  }
  .footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    border-top: 1px solid #3a3a5c;
    padding-top: 1.5rem;
    text-align: center;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #8888a0;
    margin-bottom: 0.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-copy {
    font-size: 0.85rem;
    color: #8888a0;
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-col {
      flex: 1 1 100%;
      max-width: 400px;
    }
    .footer-social {
      justify-content: center;
    }
    .footer-policy-links {
      align-items: center;
    }
  }

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

    .nfcookie-v8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        padding: calc(var(--space-y) * .9) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px var(--gap);
        align-items: center;
    }

    .nfcookie-v8__title {font-weight: 700; color: var(--fg-on-surface);}

    .nfcookie-v8 p {margin: 0; grid-column: 1 / 2; color: var(--fg-on-surface-light);}

    .nfcookie-v8__actions {
        grid-row: 1 / 3;
        grid-column: 2 / 3;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

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

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

    @media (max-width: 760px) {
        .nfcookie-v8__wrap {grid-template-columns: 1fr;}
        .nfcookie-v8 p, .nfcookie-v8__actions {grid-column: auto; grid-row: auto;}
        .nfcookie-v8__actions {justify-content: flex-start;}
    }

.intro-band {
        padding: clamp(60px, 9vw, 120px) clamp(16px, 3vw, 40px);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    .intro-band .wrap {
        max-width: 980px;
        margin: 0 auto;
    }

    .intro-band .eyebrow {
        margin: 0 0 8px;
        opacity: 0.9;
    }

    .intro-band h1 {
        margin: 0 0 10px;
        font-size: clamp(34px, 5.6vw, 60px);
    }

    .intro-band .lead {
        margin: 0 0 16px;
        max-width: 70ch;
        opacity: 0.9;
    }

    .intro-band .row {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 10px;
    }

    .intro-band .fact {
        border: 1px solid var(--chip-bg);
        border-radius: var(--radius-md);
        background: var(--chip-bg);
        padding: 12px;
    }

    .intro-band .label {
        margin: 0;
        opacity: 0.85;
    }

    .intro-band .number {
        margin: 6px 0 0;
        font-size: clamp(24px, 4vw, 36px);
        font-weight: 600;
    }

    .intro-band .actions {
        margin-top: 16px;
    }

    .intro-band .actions a {
        text-decoration: none;
        padding: 10px 16px;
        border-radius: var(--radius-md);
        background: var(--accent);
        color: var(--accent-contrast);
    }

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

    .next-ux22 {
        padding: clamp(3.2rem, 7vw, 5.7rem) var(--space-x);
        background: var(--neutral-100);
        color: var(--neutral-900);
    }

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

    .next-ux22__head {
        margin-bottom: 1.1rem;
    }

    .next-ux22__head p {
        margin: 0;
        color: var(--brand);
        font-size: .82rem;
        text-transform: uppercase;
        letter-spacing: .1em;
    }

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

    .next-ux22__head span {
        display: block;
        margin-top: .8rem;
        color: var(--neutral-600);
        max-width: 38rem;
    }

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

    .next-ux22__pins article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--neutral-100);
        border: 1px solid var(--neutral-300);
    }

    .next-ux22__pins div {
        display: inline-flex;
        width: 2.4rem;
        height: 2.4rem;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: var(--neutral-100);
    }

    .next-ux22__pins h3 {
        margin: .75rem 0 .35rem;
    }

    .next-ux22__pins a {
        color: var(--link);
        text-decoration: none;
    }

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

.why-choose {

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

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

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

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

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

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

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

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

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

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

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

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

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

        pointer-events: none;
    }

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

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

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

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

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

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

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

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

.values-board-l8 {
        padding: clamp(3.1rem, 7vw, 5.7rem) var(--space-x);
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

    .values-board-l8__wrap {
        max-width: 62rem;
        margin: 0 auto;
    }

    .values-board-l8__head {
        text-align: center;
        margin-bottom: 1.1rem;
    }

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

    .values-board-l8__head p {
        margin: .65rem auto 0;
        max-width: 40rem;
        color: var(--neutral-600);
    }

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

    .values-board-l8__board article {
        padding: 1rem;
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
    }

    .values-board-l8__board strong {
        color: var(--brand);
    }

    .values-board-l8__board h3 {
        margin: .7rem 0 .35rem;
    }

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

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

  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--gap);
    padding: var(--space-y) 0;
    position: relative;
    min-height: 64px;
  }

  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    white-space: nowrap;
    flex-shrink: 0;
  }

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

  .nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.25rem;
  }

  .nav-list a {
    display: inline-block;
    padding: 0.5rem 0.75rem;
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

  .nav-list a:hover,
  .nav-list a:focus-visible {
    background: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
    outline: none;
  }

  .nav-list a:focus-visible {
    box-shadow: 0 0 0 2px var(--ring);
  }

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }

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

  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

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

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

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

  @media (max-width: 767px) {
    .header-inner {
      justify-content: center;
      padding-left: 48px;
      padding-right: 0;
    }

    .burger {
      display: flex;
    }

    .nav {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1);
      box-shadow: var(--shadow-md);
      padding: 0 var(--space-x) var(--space-y);
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
      border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    }

    .nav.open {
      max-height: 400px;
      padding-bottom: var(--space-y);
    }

    .nav-list {
      flex-direction: column;
      gap: 0.25rem;
    }

    .nav-list a {
      display: block;
      padding: 0.75rem 1rem;
      font-size: 1.05rem;
    }
  }

  @media (min-width: 768px) {
    .nav {
      position: static;
      box-shadow: none;
      padding: 0;
      max-height: none;
      overflow: visible;
      background: transparent;
    }

    .nav-list {
      flex-direction: row;
    }
  }

footer {
    background: #1a1a2e;
    color: #e0e0e0;
    padding: 3rem 1.5rem 1.5rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-col {
    flex: 1 1 250px;
    min-width: 200px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
  }
  .footer-offer {
    font-size: 0.95rem;
    color: #b0b0c0;
    margin-top: 0.5rem;
  }
  .footer-nav h4,
  .footer-contact h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    border-bottom: 2px solid #3a3a5c;
    padding-bottom: 0.5rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
  }
  .footer-nav ul li {
    margin-bottom: 0.5rem;
  }
  .footer-nav ul li a {
    color: #b0b0c0;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .footer-nav ul li a:hover {
    color: #ffffff;
  }
  .footer-policy-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
  }
  .footer-policy-links a {
    color: #b0b0c0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }
  .footer-policy-links a:hover {
    color: #ffffff;
  }
  .contact-info p {
    margin: 0.3rem 0;
    font-size: 0.95rem;
  }
  .contact-info a {
    color: #b0b0c0;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .contact-info a:hover {
    color: #ffffff;
  }
  .footer-social {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
  }
  .footer-social a {
    color: #b0b0c0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }
  .footer-social a:hover {
    color: #ffffff;
  }
  .footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    border-top: 1px solid #3a3a5c;
    padding-top: 1.5rem;
    text-align: center;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #8888a0;
    margin-bottom: 0.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-copy {
    font-size: 0.85rem;
    color: #8888a0;
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-col {
      flex: 1 1 100%;
      max-width: 400px;
    }
    .footer-social {
      justify-content: center;
    }
    .footer-policy-links {
      align-items: center;
    }
  }

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

    .nfcookie-v8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        padding: calc(var(--space-y) * .9) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px var(--gap);
        align-items: center;
    }

    .nfcookie-v8__title {font-weight: 700; color: var(--fg-on-surface);}

    .nfcookie-v8 p {margin: 0; grid-column: 1 / 2; color: var(--fg-on-surface-light);}

    .nfcookie-v8__actions {
        grid-row: 1 / 3;
        grid-column: 2 / 3;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

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

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

    @media (max-width: 760px) {
        .nfcookie-v8__wrap {grid-template-columns: 1fr;}
        .nfcookie-v8 p, .nfcookie-v8__actions {grid-column: auto; grid-row: auto;}
        .nfcookie-v8__actions {justify-content: flex-start;}
    }

.messages--colored-v5 {

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

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

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

.messages__list {
    display: grid;
    gap: 10px;
}

.messages__item {
    display: grid;
    grid-template-columns: auto minmax(0,1fr);
    gap: 12px;
    border-radius: var(--radius-lg);
    padding: 10px 14px;
    border: 1px solid rgba(148,163,184,0.6);
    background: rgba(15,23,42,0.96);
}

.messages__item--positive {
    border-color: var(--accent);
}

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

.messages__avatar {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
}

.messages__meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--neutral-100);
    margin-bottom: 2px;
}

.messages__text {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(226,232,240,0.9);
}

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

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

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

    .feedback-ux7__h {
        text-align: center;
        margin-bottom: clamp(22px, 5vw, 44px);

        transform: translateY(-18px);
    }

    .feedback-ux7__h h2 {
        margin: 0 0 10px;
        font-size: clamp(26px, 4.4vw, 44px);
        letter-spacing: -0.02em;
    }

    .feedback-ux7__h p {
        margin: 0;
        color: var(--neutral-600);
    }

    .feedback-ux7__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
        gap: clamp(14px, 2.6vw, 22px);
    }

    .feedback-ux7__card {
        border-radius: var(--radius-xl);
        background: var(--neutral-100);
        border: 1px solid var(--neutral-300);
        box-shadow: var(--shadow-md);
        padding: clamp(18px, 3vw, 26px);

        transform: translateY(28px);
    }

    .feedback-ux7__top {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 14px;
    }

    .feedback-ux7__who {
        display: flex;
        align-items: center;
        gap: 12px;
        min-width: 0;
    }

    .feedback-ux7__avatar {
        width: 46px;
        height: 46px;
        border-radius: 14px;
        background: var(--bg-accent);
        border: 1px solid var(--border-on-surface);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        flex: 0 0 auto;
    }

    .feedback-ux7__who h3 {
        margin: 0;
        font-size: 16px;
        font-weight: 800;
        color: var(--neutral-900);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 20ch;
    }

    .feedback-ux7__who p {
        margin: 2px 0 0;
        font-size: 13px;
        color: var(--neutral-600);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 26ch;
    }

    .feedback-ux7__rating {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 8px 10px;
        border-radius: 999px;
        background: var(--neutral-100);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-sm);
        flex: 0 0 auto;
    }

    .feedback-ux7__stars {
        font-size: 14px;
        letter-spacing: 0.08em;
        color: var(--accent);
        line-height: 1;
    }

    .feedback-ux7__score {
        font-size: 12px;
        font-weight: 800;
        color: var(--neutral-900);
    }

    .feedback-ux7__quote {
        margin: 14px 0 0;
        color: var(--neutral-800);
        font-size: 14px;
        line-height: 1.65;
    }

    .feedback-ux7__badge {
        display: inline-flex;
        margin-top: 12px;
        padding: 6px 10px;
        border-radius: 999px;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border: 1px solid var(--ring);
        font-size: 11px;
        letter-spacing: 0.14em;
        text-transform: uppercase;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .connect .connect__icon {
        font-size: clamp(40px, 7vw, 64px);
        width: clamp(80px, 12vw, 120px);
        height: clamp(80px, 12vw, 120px);
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-accent);
        border-radius: 50%;
    }

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

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

  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--gap);
    padding: var(--space-y) 0;
    position: relative;
    min-height: 64px;
  }

  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    white-space: nowrap;
    flex-shrink: 0;
  }

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

  .nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.25rem;
  }

  .nav-list a {
    display: inline-block;
    padding: 0.5rem 0.75rem;
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

  .nav-list a:hover,
  .nav-list a:focus-visible {
    background: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
    outline: none;
  }

  .nav-list a:focus-visible {
    box-shadow: 0 0 0 2px var(--ring);
  }

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }

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

  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

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

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

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

  @media (max-width: 767px) {
    .header-inner {
      justify-content: center;
      padding-left: 48px;
      padding-right: 0;
    }

    .burger {
      display: flex;
    }

    .nav {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1);
      box-shadow: var(--shadow-md);
      padding: 0 var(--space-x) var(--space-y);
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
      border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    }

    .nav.open {
      max-height: 400px;
      padding-bottom: var(--space-y);
    }

    .nav-list {
      flex-direction: column;
      gap: 0.25rem;
    }

    .nav-list a {
      display: block;
      padding: 0.75rem 1rem;
      font-size: 1.05rem;
    }
  }

  @media (min-width: 768px) {
    .nav {
      position: static;
      box-shadow: none;
      padding: 0;
      max-height: none;
      overflow: visible;
      background: transparent;
    }

    .nav-list {
      flex-direction: row;
    }
  }

footer {
    background: #1a1a2e;
    color: #e0e0e0;
    padding: 3rem 1.5rem 1.5rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-col {
    flex: 1 1 250px;
    min-width: 200px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
  }
  .footer-offer {
    font-size: 0.95rem;
    color: #b0b0c0;
    margin-top: 0.5rem;
  }
  .footer-nav h4,
  .footer-contact h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    border-bottom: 2px solid #3a3a5c;
    padding-bottom: 0.5rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
  }
  .footer-nav ul li {
    margin-bottom: 0.5rem;
  }
  .footer-nav ul li a {
    color: #b0b0c0;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .footer-nav ul li a:hover {
    color: #ffffff;
  }
  .footer-policy-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
  }
  .footer-policy-links a {
    color: #b0b0c0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }
  .footer-policy-links a:hover {
    color: #ffffff;
  }
  .contact-info p {
    margin: 0.3rem 0;
    font-size: 0.95rem;
  }
  .contact-info a {
    color: #b0b0c0;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .contact-info a:hover {
    color: #ffffff;
  }
  .footer-social {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
  }
  .footer-social a {
    color: #b0b0c0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }
  .footer-social a:hover {
    color: #ffffff;
  }
  .footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    border-top: 1px solid #3a3a5c;
    padding-top: 1.5rem;
    text-align: center;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #8888a0;
    margin-bottom: 0.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-copy {
    font-size: 0.85rem;
    color: #8888a0;
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-col {
      flex: 1 1 100%;
      max-width: 400px;
    }
    .footer-social {
      justify-content: center;
    }
    .footer-policy-links {
      align-items: center;
    }
  }

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

    .nfcookie-v8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        padding: calc(var(--space-y) * .9) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px var(--gap);
        align-items: center;
    }

    .nfcookie-v8__title {font-weight: 700; color: var(--fg-on-surface);}

    .nfcookie-v8 p {margin: 0; grid-column: 1 / 2; color: var(--fg-on-surface-light);}

    .nfcookie-v8__actions {
        grid-row: 1 / 3;
        grid-column: 2 / 3;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

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

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

    @media (max-width: 760px) {
        .nfcookie-v8__wrap {grid-template-columns: 1fr;}
        .nfcookie-v8 p, .nfcookie-v8__actions {grid-column: auto; grid-row: auto;}
        .nfcookie-v8__actions {justify-content: flex-start;}
    }

.touch-bulletin {
        padding: clamp(56px, 8vw, 96px) 16px;
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

    .touch-bulletin .wrap {
        max-width: 860px;
        margin: 0 auto;
    }

    .touch-bulletin .touch-header {
        margin-bottom: 14px;
    }

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

    .touch-bulletin .touch-header p {
        margin: 10px 0 0;
        color: var(--neutral-600);
    }

    .touch-bulletin ul {
        margin: 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 8px;
    }

    .touch-bulletin li {
        border: 1px solid var(--border-on-surface);
        border-radius: 12px;
        background: var(--neutral-0);
        padding: 10px 12px;
        display: grid;
        grid-template-columns: auto 1fr auto;
        gap: 8px;
        align-items: center;
    }

    .touch-bulletin span {
        color: var(--neutral-600);
        font-size: .85rem;
    }

    .touch-bulletin a {
        color: var(--bg-primary);
        text-decoration: none;
    }

    .touch-bulletin .cta {
        display: inline-block;
        margin-top: 12px;
        text-decoration: none;
        background: var(--bg-primary);
        color: var(--neutral-0);
        border-radius: 10px;
        padding: 10px 14px;
    }

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

  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--gap);
    padding: var(--space-y) 0;
    position: relative;
    min-height: 64px;
  }

  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    white-space: nowrap;
    flex-shrink: 0;
  }

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

  .nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.25rem;
  }

  .nav-list a {
    display: inline-block;
    padding: 0.5rem 0.75rem;
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

  .nav-list a:hover,
  .nav-list a:focus-visible {
    background: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
    outline: none;
  }

  .nav-list a:focus-visible {
    box-shadow: 0 0 0 2px var(--ring);
  }

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }

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

  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

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

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

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

  @media (max-width: 767px) {
    .header-inner {
      justify-content: center;
      padding-left: 48px;
      padding-right: 0;
    }

    .burger {
      display: flex;
    }

    .nav {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1);
      box-shadow: var(--shadow-md);
      padding: 0 var(--space-x) var(--space-y);
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
      border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    }

    .nav.open {
      max-height: 400px;
      padding-bottom: var(--space-y);
    }

    .nav-list {
      flex-direction: column;
      gap: 0.25rem;
    }

    .nav-list a {
      display: block;
      padding: 0.75rem 1rem;
      font-size: 1.05rem;
    }
  }

  @media (min-width: 768px) {
    .nav {
      position: static;
      box-shadow: none;
      padding: 0;
      max-height: none;
      overflow: visible;
      background: transparent;
    }

    .nav-list {
      flex-direction: row;
    }
  }

footer {
    background: #1a1a2e;
    color: #e0e0e0;
    padding: 3rem 1.5rem 1.5rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-col {
    flex: 1 1 250px;
    min-width: 200px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
  }
  .footer-offer {
    font-size: 0.95rem;
    color: #b0b0c0;
    margin-top: 0.5rem;
  }
  .footer-nav h4,
  .footer-contact h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    border-bottom: 2px solid #3a3a5c;
    padding-bottom: 0.5rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
  }
  .footer-nav ul li {
    margin-bottom: 0.5rem;
  }
  .footer-nav ul li a {
    color: #b0b0c0;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .footer-nav ul li a:hover {
    color: #ffffff;
  }
  .footer-policy-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
  }
  .footer-policy-links a {
    color: #b0b0c0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }
  .footer-policy-links a:hover {
    color: #ffffff;
  }
  .contact-info p {
    margin: 0.3rem 0;
    font-size: 0.95rem;
  }
  .contact-info a {
    color: #b0b0c0;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .contact-info a:hover {
    color: #ffffff;
  }
  .footer-social {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
  }
  .footer-social a {
    color: #b0b0c0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }
  .footer-social a:hover {
    color: #ffffff;
  }
  .footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    border-top: 1px solid #3a3a5c;
    padding-top: 1.5rem;
    text-align: center;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #8888a0;
    margin-bottom: 0.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-copy {
    font-size: 0.85rem;
    color: #8888a0;
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-col {
      flex: 1 1 100%;
      max-width: 400px;
    }
    .footer-social {
      justify-content: center;
    }
    .footer-policy-links {
      align-items: center;
    }
  }

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

    .nfcookie-v8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        padding: calc(var(--space-y) * .9) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px var(--gap);
        align-items: center;
    }

    .nfcookie-v8__title {font-weight: 700; color: var(--fg-on-surface);}

    .nfcookie-v8 p {margin: 0; grid-column: 1 / 2; color: var(--fg-on-surface-light);}

    .nfcookie-v8__actions {
        grid-row: 1 / 3;
        grid-column: 2 / 3;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

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

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

    @media (max-width: 760px) {
        .nfcookie-v8__wrap {grid-template-columns: 1fr;}
        .nfcookie-v8 p, .nfcookie-v8__actions {grid-column: auto; grid-row: auto;}
        .nfcookie-v8__actions {justify-content: flex-start;}
    }

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

    .support-cv3 {
        padding: clamp(54px, 7vw, 94px) clamp(16px, 4vw, 36px);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

    .support-cv3__wrap {
        max-width: 900px;
        margin: 0 auto;
    }

    .support-cv3__head {
        margin-bottom: 14px;
    }

    .support-cv3__head h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 42px);
    }

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

    .support-cv3__list {
        display: grid;
        gap: 10px;
    }

    .support-cv3__item {
        border: 1px solid rgba(255, 255, 255, 0.32);
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, 0.12);
        overflow: hidden;
    }

    .support-cv3__item button {
        width: 100%;
        border: 0;
        background: transparent;
        color: inherit;
        text-align: left;
        font: inherit;
        font-weight: 700;
        padding: 11px 12px;
        cursor: pointer;
    }

    .support-cv3__item p {
        margin: 0;
        max-height: 0;
        overflow: hidden;
        padding: 0 12px;
        transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
        opacity: .95;
    }

    .support-cv3__item.is-open p {
        max-height: 220px;
        padding: 0 12px 12px;
    }

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

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

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

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

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

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

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

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

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

    .connect .connect__icon {
        font-size: clamp(40px, 7vw, 64px);
        width: clamp(80px, 12vw, 120px);
        height: clamp(80px, 12vw, 120px);
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-accent);
        border-radius: 50%;
    }

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

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

  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--gap);
    padding: var(--space-y) 0;
    position: relative;
    min-height: 64px;
  }

  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    white-space: nowrap;
    flex-shrink: 0;
  }

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

  .nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.25rem;
  }

  .nav-list a {
    display: inline-block;
    padding: 0.5rem 0.75rem;
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

  .nav-list a:hover,
  .nav-list a:focus-visible {
    background: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
    outline: none;
  }

  .nav-list a:focus-visible {
    box-shadow: 0 0 0 2px var(--ring);
  }

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }

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

  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

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

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

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

  @media (max-width: 767px) {
    .header-inner {
      justify-content: center;
      padding-left: 48px;
      padding-right: 0;
    }

    .burger {
      display: flex;
    }

    .nav {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1);
      box-shadow: var(--shadow-md);
      padding: 0 var(--space-x) var(--space-y);
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
      border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    }

    .nav.open {
      max-height: 400px;
      padding-bottom: var(--space-y);
    }

    .nav-list {
      flex-direction: column;
      gap: 0.25rem;
    }

    .nav-list a {
      display: block;
      padding: 0.75rem 1rem;
      font-size: 1.05rem;
    }
  }

  @media (min-width: 768px) {
    .nav {
      position: static;
      box-shadow: none;
      padding: 0;
      max-height: none;
      overflow: visible;
      background: transparent;
    }

    .nav-list {
      flex-direction: row;
    }
  }

footer {
    background: #1a1a2e;
    color: #e0e0e0;
    padding: 3rem 1.5rem 1.5rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-col {
    flex: 1 1 250px;
    min-width: 200px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
  }
  .footer-offer {
    font-size: 0.95rem;
    color: #b0b0c0;
    margin-top: 0.5rem;
  }
  .footer-nav h4,
  .footer-contact h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    border-bottom: 2px solid #3a3a5c;
    padding-bottom: 0.5rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
  }
  .footer-nav ul li {
    margin-bottom: 0.5rem;
  }
  .footer-nav ul li a {
    color: #b0b0c0;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .footer-nav ul li a:hover {
    color: #ffffff;
  }
  .footer-policy-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
  }
  .footer-policy-links a {
    color: #b0b0c0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }
  .footer-policy-links a:hover {
    color: #ffffff;
  }
  .contact-info p {
    margin: 0.3rem 0;
    font-size: 0.95rem;
  }
  .contact-info a {
    color: #b0b0c0;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .contact-info a:hover {
    color: #ffffff;
  }
  .footer-social {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
  }
  .footer-social a {
    color: #b0b0c0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }
  .footer-social a:hover {
    color: #ffffff;
  }
  .footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    border-top: 1px solid #3a3a5c;
    padding-top: 1.5rem;
    text-align: center;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #8888a0;
    margin-bottom: 0.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-copy {
    font-size: 0.85rem;
    color: #8888a0;
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-col {
      flex: 1 1 100%;
      max-width: 400px;
    }
    .footer-social {
      justify-content: center;
    }
    .footer-policy-links {
      align-items: center;
    }
  }

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

    .nfcookie-v8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        padding: calc(var(--space-y) * .9) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px var(--gap);
        align-items: center;
    }

    .nfcookie-v8__title {font-weight: 700; color: var(--fg-on-surface);}

    .nfcookie-v8 p {margin: 0; grid-column: 1 / 2; color: var(--fg-on-surface-light);}

    .nfcookie-v8__actions {
        grid-row: 1 / 3;
        grid-column: 2 / 3;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

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

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

    @media (max-width: 760px) {
        .nfcookie-v8__wrap {grid-template-columns: 1fr;}
        .nfcookie-v8 p, .nfcookie-v8__actions {grid-column: auto; grid-row: auto;}
        .nfcookie-v8__actions {justify-content: flex-start;}
    }

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

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

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

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

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

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

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

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

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

    .connect .connect__icon {
        font-size: clamp(40px, 7vw, 64px);
        width: clamp(80px, 12vw, 120px);
        height: clamp(80px, 12vw, 120px);
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-accent);
        border-radius: 50%;
    }

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

.contacts-fresh-v2 {
        padding: calc(var(--space-y) * 2.2) var(--space-x);
        background: var(--bg-alt);
        color: var(--fg-on-alt);
    }

    .contacts-fresh-v2 .shell {
        max-width: 900px;
        margin: 0 auto;
        display: grid;
        gap: var(--gap);
    }

    .contacts-fresh-v2 h2 {
        margin: 0;
        font-size: clamp(1.7rem, 3.2vw, 2.5rem);
    }

    .contacts-fresh-v2 .subtitle {
        margin: 0;
        color: var(--fg-on-surface-light);
    }

    .contacts-fresh-v2 .list {
        display: grid;
        gap: .75rem;
    }

    .contacts-fresh-v2 article {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: var(--gap);
        padding: 1rem;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
    }

    .contacts-fresh-v2 .label {
        margin: 0;
        color: var(--fg-on-surface-light);
        font-size: .9rem;
    }

    .contacts-fresh-v2 .value {
        margin: .2rem 0 0;
        font-weight: 700;
    }

    .contacts-fresh-v2 a {
        padding: .5rem .8rem;
        border-radius: var(--radius-sm);
        text-decoration: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 700;
    }

    @media (max-width: 700px) {
        .contacts-fresh-v2 article {
            flex-direction: column;
            align-items: flex-start;
        }
    }

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

  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--gap);
    padding: var(--space-y) 0;
    position: relative;
    min-height: 64px;
  }

  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    white-space: nowrap;
    flex-shrink: 0;
  }

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

  .nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.25rem;
  }

  .nav-list a {
    display: inline-block;
    padding: 0.5rem 0.75rem;
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

  .nav-list a:hover,
  .nav-list a:focus-visible {
    background: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
    outline: none;
  }

  .nav-list a:focus-visible {
    box-shadow: 0 0 0 2px var(--ring);
  }

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }

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

  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

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

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

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

  @media (max-width: 767px) {
    .header-inner {
      justify-content: center;
      padding-left: 48px;
      padding-right: 0;
    }

    .burger {
      display: flex;
    }

    .nav {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1);
      box-shadow: var(--shadow-md);
      padding: 0 var(--space-x) var(--space-y);
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
      border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    }

    .nav.open {
      max-height: 400px;
      padding-bottom: var(--space-y);
    }

    .nav-list {
      flex-direction: column;
      gap: 0.25rem;
    }

    .nav-list a {
      display: block;
      padding: 0.75rem 1rem;
      font-size: 1.05rem;
    }
  }

  @media (min-width: 768px) {
    .nav {
      position: static;
      box-shadow: none;
      padding: 0;
      max-height: none;
      overflow: visible;
      background: transparent;
    }

    .nav-list {
      flex-direction: row;
    }
  }

footer {
    background: #1a1a2e;
    color: #e0e0e0;
    padding: 3rem 1.5rem 1.5rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-col {
    flex: 1 1 250px;
    min-width: 200px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
  }
  .footer-offer {
    font-size: 0.95rem;
    color: #b0b0c0;
    margin-top: 0.5rem;
  }
  .footer-nav h4,
  .footer-contact h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    border-bottom: 2px solid #3a3a5c;
    padding-bottom: 0.5rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
  }
  .footer-nav ul li {
    margin-bottom: 0.5rem;
  }
  .footer-nav ul li a {
    color: #b0b0c0;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .footer-nav ul li a:hover {
    color: #ffffff;
  }
  .footer-policy-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
  }
  .footer-policy-links a {
    color: #b0b0c0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }
  .footer-policy-links a:hover {
    color: #ffffff;
  }
  .contact-info p {
    margin: 0.3rem 0;
    font-size: 0.95rem;
  }
  .contact-info a {
    color: #b0b0c0;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .contact-info a:hover {
    color: #ffffff;
  }
  .footer-social {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
  }
  .footer-social a {
    color: #b0b0c0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }
  .footer-social a:hover {
    color: #ffffff;
  }
  .footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    border-top: 1px solid #3a3a5c;
    padding-top: 1.5rem;
    text-align: center;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #8888a0;
    margin-bottom: 0.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-copy {
    font-size: 0.85rem;
    color: #8888a0;
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-col {
      flex: 1 1 100%;
      max-width: 400px;
    }
    .footer-social {
      justify-content: center;
    }
    .footer-policy-links {
      align-items: center;
    }
  }

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

    .nfcookie-v8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        padding: calc(var(--space-y) * .9) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px var(--gap);
        align-items: center;
    }

    .nfcookie-v8__title {font-weight: 700; color: var(--fg-on-surface);}

    .nfcookie-v8 p {margin: 0; grid-column: 1 / 2; color: var(--fg-on-surface-light);}

    .nfcookie-v8__actions {
        grid-row: 1 / 3;
        grid-column: 2 / 3;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

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

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

    @media (max-width: 760px) {
        .nfcookie-v8__wrap {grid-template-columns: 1fr;}
        .nfcookie-v8 p, .nfcookie-v8__actions {grid-column: auto; grid-row: auto;}
        .nfcookie-v8__actions {justify-content: flex-start;}
    }

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

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

    .terms-layout-c .section-head {
        margin-bottom: 14px;
    }

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

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

    .terms-layout-c details {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--surface-1);
        padding: 10px 12px;
        margin-bottom: 10px;
    }

    .terms-layout-c summary {
        cursor: pointer;
        color: var(--brand);
        font-weight: 700;
    }

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

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

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

  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--gap);
    padding: var(--space-y) 0;
    position: relative;
    min-height: 64px;
  }

  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    white-space: nowrap;
    flex-shrink: 0;
  }

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

  .nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.25rem;
  }

  .nav-list a {
    display: inline-block;
    padding: 0.5rem 0.75rem;
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

  .nav-list a:hover,
  .nav-list a:focus-visible {
    background: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
    outline: none;
  }

  .nav-list a:focus-visible {
    box-shadow: 0 0 0 2px var(--ring);
  }

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }

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

  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

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

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

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

  @media (max-width: 767px) {
    .header-inner {
      justify-content: center;
      padding-left: 48px;
      padding-right: 0;
    }

    .burger {
      display: flex;
    }

    .nav {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1);
      box-shadow: var(--shadow-md);
      padding: 0 var(--space-x) var(--space-y);
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
      border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    }

    .nav.open {
      max-height: 400px;
      padding-bottom: var(--space-y);
    }

    .nav-list {
      flex-direction: column;
      gap: 0.25rem;
    }

    .nav-list a {
      display: block;
      padding: 0.75rem 1rem;
      font-size: 1.05rem;
    }
  }

  @media (min-width: 768px) {
    .nav {
      position: static;
      box-shadow: none;
      padding: 0;
      max-height: none;
      overflow: visible;
      background: transparent;
    }

    .nav-list {
      flex-direction: row;
    }
  }

footer {
    background: #1a1a2e;
    color: #e0e0e0;
    padding: 3rem 1.5rem 1.5rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-col {
    flex: 1 1 250px;
    min-width: 200px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
  }
  .footer-offer {
    font-size: 0.95rem;
    color: #b0b0c0;
    margin-top: 0.5rem;
  }
  .footer-nav h4,
  .footer-contact h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    border-bottom: 2px solid #3a3a5c;
    padding-bottom: 0.5rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
  }
  .footer-nav ul li {
    margin-bottom: 0.5rem;
  }
  .footer-nav ul li a {
    color: #b0b0c0;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .footer-nav ul li a:hover {
    color: #ffffff;
  }
  .footer-policy-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
  }
  .footer-policy-links a {
    color: #b0b0c0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }
  .footer-policy-links a:hover {
    color: #ffffff;
  }
  .contact-info p {
    margin: 0.3rem 0;
    font-size: 0.95rem;
  }
  .contact-info a {
    color: #b0b0c0;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .contact-info a:hover {
    color: #ffffff;
  }
  .footer-social {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
  }
  .footer-social a {
    color: #b0b0c0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }
  .footer-social a:hover {
    color: #ffffff;
  }
  .footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    border-top: 1px solid #3a3a5c;
    padding-top: 1.5rem;
    text-align: center;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #8888a0;
    margin-bottom: 0.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-copy {
    font-size: 0.85rem;
    color: #8888a0;
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-col {
      flex: 1 1 100%;
      max-width: 400px;
    }
    .footer-social {
      justify-content: center;
    }
    .footer-policy-links {
      align-items: center;
    }
  }

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

    .nfcookie-v8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        padding: calc(var(--space-y) * .9) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px var(--gap);
        align-items: center;
    }

    .nfcookie-v8__title {font-weight: 700; color: var(--fg-on-surface);}

    .nfcookie-v8 p {margin: 0; grid-column: 1 / 2; color: var(--fg-on-surface-light);}

    .nfcookie-v8__actions {
        grid-row: 1 / 3;
        grid-column: 2 / 3;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

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

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

    @media (max-width: 760px) {
        .nfcookie-v8__wrap {grid-template-columns: 1fr;}
        .nfcookie-v8 p, .nfcookie-v8__actions {grid-column: auto; grid-row: auto;}
        .nfcookie-v8__actions {justify-content: flex-start;}
    }

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

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

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

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

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

    .policy-layout-b ol {
        margin: 0;
        padding-left: 18px;
        display: grid;
        gap: 10px;
    }

    .policy-layout-b li {
        background: var(--bg-alt);
        border-radius: var(--radius-md);
        border: 1px solid var(--border-on-surface);
        padding: 12px;
    }

    .policy-layout-b h3 {
        margin: 0;
        color: var(--brand);
        font-size: 1rem;
    }

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

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

  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--gap);
    padding: var(--space-y) 0;
    position: relative;
    min-height: 64px;
  }

  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    white-space: nowrap;
    flex-shrink: 0;
  }

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

  .nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.25rem;
  }

  .nav-list a {
    display: inline-block;
    padding: 0.5rem 0.75rem;
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

  .nav-list a:hover,
  .nav-list a:focus-visible {
    background: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
    outline: none;
  }

  .nav-list a:focus-visible {
    box-shadow: 0 0 0 2px var(--ring);
  }

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }

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

  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

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

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

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

  @media (max-width: 767px) {
    .header-inner {
      justify-content: center;
      padding-left: 48px;
      padding-right: 0;
    }

    .burger {
      display: flex;
    }

    .nav {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1);
      box-shadow: var(--shadow-md);
      padding: 0 var(--space-x) var(--space-y);
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
      border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    }

    .nav.open {
      max-height: 400px;
      padding-bottom: var(--space-y);
    }

    .nav-list {
      flex-direction: column;
      gap: 0.25rem;
    }

    .nav-list a {
      display: block;
      padding: 0.75rem 1rem;
      font-size: 1.05rem;
    }
  }

  @media (min-width: 768px) {
    .nav {
      position: static;
      box-shadow: none;
      padding: 0;
      max-height: none;
      overflow: visible;
      background: transparent;
    }

    .nav-list {
      flex-direction: row;
    }
  }

footer {
    background: #1a1a2e;
    color: #e0e0e0;
    padding: 3rem 1.5rem 1.5rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-col {
    flex: 1 1 250px;
    min-width: 200px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
  }
  .footer-offer {
    font-size: 0.95rem;
    color: #b0b0c0;
    margin-top: 0.5rem;
  }
  .footer-nav h4,
  .footer-contact h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    border-bottom: 2px solid #3a3a5c;
    padding-bottom: 0.5rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
  }
  .footer-nav ul li {
    margin-bottom: 0.5rem;
  }
  .footer-nav ul li a {
    color: #b0b0c0;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .footer-nav ul li a:hover {
    color: #ffffff;
  }
  .footer-policy-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
  }
  .footer-policy-links a {
    color: #b0b0c0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }
  .footer-policy-links a:hover {
    color: #ffffff;
  }
  .contact-info p {
    margin: 0.3rem 0;
    font-size: 0.95rem;
  }
  .contact-info a {
    color: #b0b0c0;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .contact-info a:hover {
    color: #ffffff;
  }
  .footer-social {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
  }
  .footer-social a {
    color: #b0b0c0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }
  .footer-social a:hover {
    color: #ffffff;
  }
  .footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    border-top: 1px solid #3a3a5c;
    padding-top: 1.5rem;
    text-align: center;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #8888a0;
    margin-bottom: 0.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-copy {
    font-size: 0.85rem;
    color: #8888a0;
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-col {
      flex: 1 1 100%;
      max-width: 400px;
    }
    .footer-social {
      justify-content: center;
    }
    .footer-policy-links {
      align-items: center;
    }
  }

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

    .nfcookie-v8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        padding: calc(var(--space-y) * .9) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px var(--gap);
        align-items: center;
    }

    .nfcookie-v8__title {font-weight: 700; color: var(--fg-on-surface);}

    .nfcookie-v8 p {margin: 0; grid-column: 1 / 2; color: var(--fg-on-surface-light);}

    .nfcookie-v8__actions {
        grid-row: 1 / 3;
        grid-column: 2 / 3;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

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

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

    @media (max-width: 760px) {
        .nfcookie-v8__wrap {grid-template-columns: 1fr;}
        .nfcookie-v8 p, .nfcookie-v8__actions {grid-column: auto; grid-row: auto;}
        .nfcookie-v8__actions {justify-content: flex-start;}
    }

.nfthank-v10 {
        padding: clamp(58px, 10vw, 114px) 18px;
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    .nfthank-v10__wrap {
        max-width: 740px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(28px, 4vw, 42px);
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-xl);
        background: linear-gradient(180deg, var(--surface-1), var(--surface-2));
    }

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

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

    .nfthank-v10 a {
        display: inline-block;
        margin-top: 16px;
        padding: 9px 14px;
        border-radius: var(--radius-sm);
        text-decoration: none;
        border: 1px solid var(--border-on-surface);
        color: var(--fg-on-page);
    }

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

  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--gap);
    padding: var(--space-y) 0;
    position: relative;
    min-height: 64px;
  }

  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    white-space: nowrap;
    flex-shrink: 0;
  }

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

  .nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.25rem;
  }

  .nav-list a {
    display: inline-block;
    padding: 0.5rem 0.75rem;
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

  .nav-list a:hover,
  .nav-list a:focus-visible {
    background: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
    outline: none;
  }

  .nav-list a:focus-visible {
    box-shadow: 0 0 0 2px var(--ring);
  }

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }

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

  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

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

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

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

  @media (max-width: 767px) {
    .header-inner {
      justify-content: center;
      padding-left: 48px;
      padding-right: 0;
    }

    .burger {
      display: flex;
    }

    .nav {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1);
      box-shadow: var(--shadow-md);
      padding: 0 var(--space-x) var(--space-y);
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
      border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    }

    .nav.open {
      max-height: 400px;
      padding-bottom: var(--space-y);
    }

    .nav-list {
      flex-direction: column;
      gap: 0.25rem;
    }

    .nav-list a {
      display: block;
      padding: 0.75rem 1rem;
      font-size: 1.05rem;
    }
  }

  @media (min-width: 768px) {
    .nav {
      position: static;
      box-shadow: none;
      padding: 0;
      max-height: none;
      overflow: visible;
      background: transparent;
    }

    .nav-list {
      flex-direction: row;
    }
  }

footer {
    background: #1a1a2e;
    color: #e0e0e0;
    padding: 3rem 1.5rem 1.5rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-col {
    flex: 1 1 250px;
    min-width: 200px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
  }
  .footer-offer {
    font-size: 0.95rem;
    color: #b0b0c0;
    margin-top: 0.5rem;
  }
  .footer-nav h4,
  .footer-contact h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    border-bottom: 2px solid #3a3a5c;
    padding-bottom: 0.5rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
  }
  .footer-nav ul li {
    margin-bottom: 0.5rem;
  }
  .footer-nav ul li a {
    color: #b0b0c0;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .footer-nav ul li a:hover {
    color: #ffffff;
  }
  .footer-policy-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
  }
  .footer-policy-links a {
    color: #b0b0c0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }
  .footer-policy-links a:hover {
    color: #ffffff;
  }
  .contact-info p {
    margin: 0.3rem 0;
    font-size: 0.95rem;
  }
  .contact-info a {
    color: #b0b0c0;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .contact-info a:hover {
    color: #ffffff;
  }
  .footer-social {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
  }
  .footer-social a {
    color: #b0b0c0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }
  .footer-social a:hover {
    color: #ffffff;
  }
  .footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    border-top: 1px solid #3a3a5c;
    padding-top: 1.5rem;
    text-align: center;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #8888a0;
    margin-bottom: 0.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-copy {
    font-size: 0.85rem;
    color: #8888a0;
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-col {
      flex: 1 1 100%;
      max-width: 400px;
    }
    .footer-social {
      justify-content: center;
    }
    .footer-policy-links {
      align-items: center;
    }
  }

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

    .nfcookie-v8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        padding: calc(var(--space-y) * .9) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px var(--gap);
        align-items: center;
    }

    .nfcookie-v8__title {font-weight: 700; color: var(--fg-on-surface);}

    .nfcookie-v8 p {margin: 0; grid-column: 1 / 2; color: var(--fg-on-surface-light);}

    .nfcookie-v8__actions {
        grid-row: 1 / 3;
        grid-column: 2 / 3;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

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

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

    @media (max-width: 760px) {
        .nfcookie-v8__wrap {grid-template-columns: 1fr;}
        .nfcookie-v8 p, .nfcookie-v8__actions {grid-column: auto; grid-row: auto;}
        .nfcookie-v8__actions {justify-content: flex-start;}
    }

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

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

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

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

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