:root {
  --font-family: "DM Sans", sans-serif;
  --font-size-base: 19.8px;
  --line-height-base: 1.66;

  --max-w: 1580px;
  --space-x: 2.06rem;
  --space-y: 1.5rem;
  --gap: 2.13rem;

  --radius-xl: 1.26rem;
  --radius-lg: 1rem;
  --radius-md: 0.54rem;
  --radius-sm: 0.33rem;

  --shadow-sm: 0 1px 5px rgba(0,0,0,0.11);
  --shadow-md: 0 12px 16px rgba(0,0,0,0.14);
  --shadow-lg: 0 28px 46px rgba(0,0,0,0.17);

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

  --brand: #1A73E8;
  --brand-contrast: #FFFFFF;
  --accent: #FF6B35;
  --accent-contrast: #FFFFFF;

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

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

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

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

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

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

  --bg-accent: #FF6B35;
  --fg-on-accent: #FFFFFF;
  --bg-accent-hover: #E55A2B;

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

  --gradient-hero: linear-gradient(135deg, #1A73E8 0%, #FF6B35 100%);
  --gradient-accent: linear-gradient(135deg, #FF6B35 0%, #E55A2B 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;}

.site-header {
  background-color: var(--surface-1);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 100;
}

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

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

.nav {
  flex: 1;
}

.nav-left {
  text-align: right;
  order: 0;
}

.nav-right {
  text-align: left;
  order: 2;
}

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

.nav-link {
  text-decoration: none;
  color: var(--fg-on-surface);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  padding: 0.375rem 0;
  border-bottom: 2px solid transparent;
  transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--brand);
  border-bottom-color: var(--brand);
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2.25rem;
  height: 2.25rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.375rem;
  gap: 4px;
  order: 3;
  z-index: 110;
  border-radius: var(--radius-sm);
  transition: background var(--anim-duration) var(--anim-ease);
}

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

.burger-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: 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(6px) rotate(45deg);
}

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

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

@media (max-width: 767px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
  }

  .logo {
    order: 1;
    margin: 0 auto;
  }

  .burger {
    display: flex;
    position: absolute;
    left: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
  }

  .nav {
    display: none;
    flex: 0 0 100%;
    order: 3;
    text-align: center;
    padding-top: var(--space-y);
  }

  .nav.open {
    display: block;
  }

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

  .nav-link {
    display: block;
    padding: 0.5rem 0;
    border-bottom: none;
    font-size: 1.125rem;
  }

  .nav-link:hover,
  .nav-link:focus-visible {
    border-bottom: none;
    color: var(--brand);
  }
}

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 2rem 1rem;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid #4a6274;
    padding-bottom: 1.5rem;
  }
  .footer-logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f39c12;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .footer-logo a:hover {
    color: #e67e22;
  }
  .footer-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
  }
  .footer-nav a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  .footer-nav a:hover {
    color: #f39c12;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
  }
  .footer-contact {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .contact-item {
    display: block;
  }
  .footer-contact a {
    color: #f39c12;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    flex: 1;
    min-width: 250px;
  }
  .disclaimer {
    font-size: 0.85rem;
    color: #95a5a6;
    margin: 0 0 1rem 0;
    line-height: 1.5;
  }
  .legal-links {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 0.8rem;
    flex-wrap: wrap;
  }
  .legal-links a {
    color: #f39c12;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .legal-links a:hover {
    text-decoration: underline;
  }
  .copyright {
    font-size: 0.85rem;
    color: #7f8c8d;
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      text-align: center;
      gap: 1rem;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-bottom {
      flex-direction: column;
      text-align: center;
    }
    .footer-contact {
      align-items: center;
    }
    .legal-links {
      justify-content: center;
    }
  }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: end;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

    .cookie-cv9__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

    .cookie-cv9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

.nflang-v12 {
        position: fixed;
        left: clamp(14px, 2vw, 24px);
        bottom: clamp(14px, 2vw, 24px);
        z-index: 99999;
    }

    .nflang-v12__control {
        border: 0;
        border-radius: 14px;
        padding: 10px 13px;
        background: linear-gradient(145deg, #111827, #0f766e);
        color: #ecfeff;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: .06em;
        cursor: pointer;
        box-shadow: var(--shadow-lg);
        min-width: 54px;
    }

    .nflang-v12__sheet {
        margin-top: 8px;
        padding: 8px;
        border-radius: 14px;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        width: min(220px, 80vw);
        opacity: 0;
        pointer-events: none;
        transform: translateY(10px);
        transition: opacity var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
    }

    .nflang-v12__sheet.open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nflang-v12__sheet button,
    .nflang-v12__sheet a {
        flex: 1 1 calc(50% - 3px);
        min-height: 34px;
        border-radius: var(--radius-sm);
        border: 1px solid var(--border-on-surface);
        background: var(--surface-2);
        color: var(--fg-on-surface);
        text-decoration: none;
        font-size: 11px;
        font-weight: 700;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        letter-spacing: .04em;
    }

    .nflang-v12__sheet button:hover,
    .nflang-v12__sheet a:hover {
        background: var(--accent);
        border-color: transparent;
        color: var(--accent-contrast);
    }

.hero-arc-v3 {
        padding: calc(var(--space-y) * 2.8) var(--space-x);
        background: var(--bg-alt);
        color: var(--fg-on-alt);
    }

    .hero-arc-v3 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns:minmax(0, .82fr) minmax(0, 1.18fr);
        gap: calc(var(--gap) * 2);
        align-items: stretch;
    }

    .hero-arc-v3 .media {
        padding: var(--gap);
        background: var(--surface-1);
        border-radius: var(--radius-xl);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
    }

    .hero-arc-v3 img {
        width: 100%;
        height: 100%;
        min-height: 320px;
        object-fit: cover;
        border-radius: var(--radius-lg);
    }

    .hero-arc-v3 .copy {
        display: grid;
        gap: var(--gap);
        align-content: start;
    }

    .hero-arc-v3 h1 {
        margin: .2rem 0;
        font-size: clamp(2rem, 4vw, 3.2rem);
        line-height: 1.1;
    }

    .hero-arc-v3 .subtitle {
        margin: 0;
        color: var(--fg-on-surface-light);
    }

    .hero-arc-v3 .stats {
        display: grid;
        grid-template-columns:repeat(2, minmax(0, 1fr));
        gap: var(--gap);
    }

    .hero-arc-v3 .stats article {
        padding: 1rem;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
    }

    .hero-arc-v3 .stats p {
        margin: .3rem 0 0;
        color: var(--fg-on-surface-light);
        font-size: .92rem;
    }

    .hero-arc-v3 .actions {
        display: flex;
        flex-wrap: wrap;
        gap: var(--gap);
    }

    .hero-arc-v3 .actions a {
        text-decoration: none;
        padding: .7rem 1rem;
        border-radius: var(--radius-md);
        border: 1px solid var(--border-on-surface);
        color: var(--fg-on-surface);
        background: var(--surface-1);
    }

    .hero-arc-v3 .actions a:first-child {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-color: var(--bg-primary);
    }

    @media (max-width: 940px) {
        .hero-arc-v3 .shell {
            grid-template-columns:1fr;
        }

        .hero-arc-v3 .stats {
            grid-template-columns:1fr;
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.rec-lx8{padding:calc(var(--space-y)*2.85) var(--space-x);background:var(--bg-alt)}
.rec-lx8 .rec-shell{max-width:var(--max-w);margin:0 auto}
.rec-lx8 h2{margin:0 0 .85rem;font-size:clamp(1.76rem,3.2vw,2.48rem)}
.rec-lx8 .rec-lanes{display:grid;grid-template-columns:.86fr 1.14fr;gap:var(--gap)}
.rec-lx8 .rec-side{padding:1rem;border-radius:var(--radius-lg);background:var(--surface-1);border:1px solid var(--border-on-surface)}
.rec-lx8 .rec-side p{margin:0 0 .45rem;color:var(--fg-on-surface-light)}
.rec-lx8 .rec-side p b{color:var(--fg-on-surface)}
.rec-lx8 .rec-list{display:grid;gap:.55rem}
.rec-lx8 .rec-list article{padding:.85rem;border-radius:var(--radius-md);background:var(--surface-1);border:1px solid var(--border-on-surface)}
.rec-lx8 h3{margin:0 0 .22rem}
.rec-lx8 article p{margin:0 0 .5rem;color:var(--fg-on-surface-light)}
.rec-lx8 a{text-decoration:none;color:var(--link);font-weight:700}
@media (max-width:860px){.rec-lx8 .rec-lanes{grid-template-columns:1fr}}

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

.site-header {
  background-color: var(--surface-1);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 100;
}

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

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

.nav {
  flex: 1;
}

.nav-left {
  text-align: right;
  order: 0;
}

.nav-right {
  text-align: left;
  order: 2;
}

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

.nav-link {
  text-decoration: none;
  color: var(--fg-on-surface);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  padding: 0.375rem 0;
  border-bottom: 2px solid transparent;
  transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--brand);
  border-bottom-color: var(--brand);
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2.25rem;
  height: 2.25rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.375rem;
  gap: 4px;
  order: 3;
  z-index: 110;
  border-radius: var(--radius-sm);
  transition: background var(--anim-duration) var(--anim-ease);
}

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

.burger-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: 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(6px) rotate(45deg);
}

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

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

@media (max-width: 767px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
  }

  .logo {
    order: 1;
    margin: 0 auto;
  }

  .burger {
    display: flex;
    position: absolute;
    left: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
  }

  .nav {
    display: none;
    flex: 0 0 100%;
    order: 3;
    text-align: center;
    padding-top: var(--space-y);
  }

  .nav.open {
    display: block;
  }

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

  .nav-link {
    display: block;
    padding: 0.5rem 0;
    border-bottom: none;
    font-size: 1.125rem;
  }

  .nav-link:hover,
  .nav-link:focus-visible {
    border-bottom: none;
    color: var(--brand);
  }
}

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 2rem 1rem;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid #4a6274;
    padding-bottom: 1.5rem;
  }
  .footer-logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f39c12;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .footer-logo a:hover {
    color: #e67e22;
  }
  .footer-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
  }
  .footer-nav a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  .footer-nav a:hover {
    color: #f39c12;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
  }
  .footer-contact {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .contact-item {
    display: block;
  }
  .footer-contact a {
    color: #f39c12;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    flex: 1;
    min-width: 250px;
  }
  .disclaimer {
    font-size: 0.85rem;
    color: #95a5a6;
    margin: 0 0 1rem 0;
    line-height: 1.5;
  }
  .legal-links {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 0.8rem;
    flex-wrap: wrap;
  }
  .legal-links a {
    color: #f39c12;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .legal-links a:hover {
    text-decoration: underline;
  }
  .copyright {
    font-size: 0.85rem;
    color: #7f8c8d;
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      text-align: center;
      gap: 1rem;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-bottom {
      flex-direction: column;
      text-align: center;
    }
    .footer-contact {
      align-items: center;
    }
    .legal-links {
      justify-content: center;
    }
  }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: end;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

    .cookie-cv9__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

    .cookie-cv9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

.partners {

        color: var(--fg-on-page);
        background: var(--bg-page);
        padding: clamp(32px, 5vw, 64px) clamp(16px, 4vw, 40px);
    }

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

    .partners .partners__title {
        font-size: clamp(28px, 5vw, 48px);
        text-align: center;
        margin: 0 0 clamp(48px, 7vw, 72px);
        color: var(--fg-on-page);
    }

    .partners .partners__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: clamp(32px, 5vw, 48px);
    }

    .partners .partners__item {
        display: flex;
        flex-direction: column;
        gap: clamp(20px, 3vw, 28px);
        align-items: center;
        padding: clamp(24px, 4vw, 32px);
        background: var(--surface-1);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface);
    }

    .partners .partners__logo {
        flex-shrink: 0;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .partners .partners__logo img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

    .partners .partners__info h3 {
        font-size: clamp(20px, 3vw, 24px);
        margin: 0 0 0.75rem;
        color: var(--fg-on-surface);
    }

    .partners .partners__info p {
        font-size: clamp(15px, 2.2vw, 17px);
        line-height: 1.6;
        color: var(--neutral-600);
        margin: 0;
    }

    @media (max-width: 768px) {
        .partners .partners__item {
            flex-direction: column;
            text-align: center;
        }
    }

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

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

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

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

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

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

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

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

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

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

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

.mis-lx6{padding:calc(var(--space-y)*2.7) var(--space-x)}
.mis-lx6 .mis-grid{max-width:var(--max-w);margin:0 auto;display:grid;grid-template-columns:repeat(12,minmax(0,1fr));gap:.65rem}
.mis-lx6 .mis-intro{grid-column:span 12;padding:1rem;border:1px solid var(--border-on-surface);border-radius:var(--radius-xl);background:var(--surface-1)}
.mis-lx6 .mis-intro h2{margin:0;font-size:clamp(1.8rem,3.4vw,2.55rem)}
.mis-lx6 .mis-intro p{margin:.42rem 0 0;color:var(--fg-on-surface-light)}
.mis-lx6 .mis-card{grid-column:span 4;padding:.95rem;border-radius:var(--radius-lg);background:var(--surface-2);border:1px solid var(--border-on-surface)}
.mis-lx6 .mis-card:nth-child(3n){background:color-mix(in srgb,var(--surface-1) 85%, var(--bg-accent) 15%)}
.mis-lx6 h3{margin:0 0 .3rem}
.mis-lx6 .mis-card p{margin:0;color:var(--fg-on-surface-light)}
@media (max-width:920px){.mis-lx6 .mis-card{grid-column:span 6}}@media (max-width:640px){.mis-lx6 .mis-card{grid-column:1/-1}}

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

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

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

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

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

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

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

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

    .identity-ux15__grid h3 {
        margin: 0;
    }

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

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

.site-header {
  background-color: var(--surface-1);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 100;
}

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

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

.nav {
  flex: 1;
}

.nav-left {
  text-align: right;
  order: 0;
}

.nav-right {
  text-align: left;
  order: 2;
}

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

.nav-link {
  text-decoration: none;
  color: var(--fg-on-surface);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  padding: 0.375rem 0;
  border-bottom: 2px solid transparent;
  transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--brand);
  border-bottom-color: var(--brand);
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2.25rem;
  height: 2.25rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.375rem;
  gap: 4px;
  order: 3;
  z-index: 110;
  border-radius: var(--radius-sm);
  transition: background var(--anim-duration) var(--anim-ease);
}

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

.burger-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: 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(6px) rotate(45deg);
}

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

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

@media (max-width: 767px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
  }

  .logo {
    order: 1;
    margin: 0 auto;
  }

  .burger {
    display: flex;
    position: absolute;
    left: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
  }

  .nav {
    display: none;
    flex: 0 0 100%;
    order: 3;
    text-align: center;
    padding-top: var(--space-y);
  }

  .nav.open {
    display: block;
  }

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

  .nav-link {
    display: block;
    padding: 0.5rem 0;
    border-bottom: none;
    font-size: 1.125rem;
  }

  .nav-link:hover,
  .nav-link:focus-visible {
    border-bottom: none;
    color: var(--brand);
  }
}

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 2rem 1rem;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid #4a6274;
    padding-bottom: 1.5rem;
  }
  .footer-logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f39c12;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .footer-logo a:hover {
    color: #e67e22;
  }
  .footer-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
  }
  .footer-nav a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  .footer-nav a:hover {
    color: #f39c12;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
  }
  .footer-contact {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .contact-item {
    display: block;
  }
  .footer-contact a {
    color: #f39c12;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    flex: 1;
    min-width: 250px;
  }
  .disclaimer {
    font-size: 0.85rem;
    color: #95a5a6;
    margin: 0 0 1rem 0;
    line-height: 1.5;
  }
  .legal-links {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 0.8rem;
    flex-wrap: wrap;
  }
  .legal-links a {
    color: #f39c12;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .legal-links a:hover {
    text-decoration: underline;
  }
  .copyright {
    font-size: 0.85rem;
    color: #7f8c8d;
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      text-align: center;
      gap: 1rem;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-bottom {
      flex-direction: column;
      text-align: center;
    }
    .footer-contact {
      align-items: center;
    }
    .legal-links {
      justify-content: center;
    }
  }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: end;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

    .cookie-cv9__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

    .cookie-cv9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

.feedback-ux5 {
        background: radial-gradient(circle at 15% 25%, rgba(255, 255, 255, 0.65), transparent 60%), linear-gradient(135deg, rgba(212, 165, 165, 0.55), rgba(248, 225, 231, 0.9)), var(--gradient-hero);
        color: var(--fg-on-primary);
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 40px);
        overflow: hidden;
    }

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

    .feedback-ux5__h {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        gap: 16px;
        margin-bottom: clamp(20px, 5vw, 44px);

        transform: translateY(-18px);
    }

    .feedback-ux5__eyebrow {
        margin: 0 0 10px;
        text-transform: uppercase;
        letter-spacing: 0.22em;
        font-size: 12px;
        color: rgba(58, 46, 61, 0.72);
    }

    .feedback-ux5__h h2 {
        margin: 0;
        font-size: clamp(26px, 4.2vw, 42px);
        letter-spacing: -0.02em;
    }

    .feedback-ux5__controls {
        display: flex;
        gap: 10px;
        flex: 0 0 auto;
    }

    .feedback-ux5__btn {
        border: 1px solid rgba(58, 46, 61, 0.18);
        background: rgba(255, 255, 255, 0.55);
        color: var(--fg-on-page);
        border-radius: 999px;
        padding: 10px 14px;
        cursor: pointer;
        box-shadow: var(--shadow-sm);
        font-weight: 700;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        font-size: 11px;
        transition: transform var(--anim-duration) var(--anim-ease);
        backdrop-filter: blur(10px);
    }

    .feedback-ux5__btn:hover {
        transform: translateY(-2px);
    }

    .feedback-ux5__track {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: minmax(260px, 340px);
        gap: 16px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding: 6px 2px 10px;
        
    }

    .feedback-ux5__card {
        scroll-snap-align: start;
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, 0.62);
        border: 1px solid rgba(58, 46, 61, 0.12);
        box-shadow: var(--shadow-sm);
        padding: 18px 18px 16px;

        transform: translateY(24px);
        backdrop-filter: blur(10px);
    }

    .feedback-ux5__bar {
        display: flex;
        align-items: center;
        gap: 10px;
        justify-content: space-between;
        margin-bottom: 12px;
    }

    .feedback-ux5__stars {
        color: var(--accent);
        letter-spacing: 0.08em;
        font-size: 24px;
        flex: 0 0 auto;
    }

    .feedback-ux5__score {
        font-size: 12px;
        font-weight: 800;
        color: var(--fg-on-page);
        flex: 0 0 auto;
    }

    .feedback-ux5__chip {
        margin-left: auto;
        padding: 6px 10px;
        border-radius: 999px;
        background: var(--bg-accent);
        border: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-accent);
        font-size: 10px;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        flex: 0 0 auto;
    }

    .feedback-ux5__quote {
        margin: 0 0 14px;
        color: rgba(58, 46, 61, 0.88);
        font-size: 14px;
        line-height: 1.65;
    }

    .feedback-ux5__who {
        display: flex;
        align-items: center;
        gap: 10px;
        padding-top: 10px;
        border-top: 1px solid rgba(58, 46, 61, 0.12);
    }

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

    .feedback-ux5__who h3 {
        margin: 0;
        font-size: 14px;
        font-weight: 800;
        color: var(--fg-on-page);
    }

    .feedback-ux5__who p {
        margin: 2px 0 0;
        font-size: 12px;
        color: rgba(58, 46, 61, 0.7);
    }

    @media (max-width: 560px) {
        .feedback-ux5__h {
            flex-direction: column;
            align-items: flex-start;
        }
    }

.cap-lx3{padding:calc(var(--space-y)*3) var(--space-x)}
.cap-lx3 .cap-shell{max-width:var(--max-w);margin:0 auto}
.cap-lx3 h2{margin:0;font-size:clamp(1.9rem,3.7vw,2.8rem)}
.cap-lx3 .cap-sub{margin:.4rem 0 1rem;color:var(--fg-on-surface-light);max-width:60ch}
.cap-lx3 .cap-track{display:grid;grid-auto-flow:column;grid-auto-columns:minmax(220px,1fr);gap:.75rem;overflow:auto;padding-bottom:.4rem;scroll-snap-type:x mandatory}
.cap-lx3 article{scroll-snap-align:start;padding:1rem;border-radius:var(--radius-lg);border:1px solid var(--border-on-surface);background:var(--surface-1);min-height:180px;display:grid;align-content:start}
.cap-lx3 article:nth-child(odd){background:color-mix(in srgb,var(--surface-1) 86%, var(--bg-accent) 14%)}
.cap-lx3 h3{margin:0 0 .4rem}
.cap-lx3 article p{margin:0 0 .6rem;color:var(--fg-on-surface-light)}
.cap-lx3 article small{font-weight:700;color:var(--link)}

.hiw-ux9 {
        padding: clamp(3.6rem, 8vw, 6.1rem) var(--space-x);
        background: var(--gradient-accent);
        color: var(--accent-contrast);
    }

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

    .hiw-ux9__head {
        max-width: 42rem;
        margin: 0 auto 1.25rem;
        text-align: center;
    }

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

    .hiw-ux9__head p {
        margin: .55rem 0 0;
    }

    .hiw-ux9__grid {
        display: grid;
        gap: var(--gap);
    }

    .hiw-ux9__grid article {
        width: min(40rem, 60%);
        padding: 1rem;
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, .2);
        backdrop-filter: blur(8px);
    }

    .hiw-ux9__grid article:nth-child(odd) {
        margin-right: auto;
    }

    .hiw-ux9__grid article:nth-child(even) {
        margin-left: auto;
    }

    .hiw-ux9__num {
        display: inline-flex;
        min-width: 2.6rem;
        height: 2.6rem;
        align-items: center;
        justify-content: center;
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        font-weight: 700;
    }

    .hiw-ux9__grid h3 {
        margin: .75rem 0 .35rem;
    }

    .hiw-ux9__grid p {
        margin: 0;
        color: rgba(255, 255, 255, .9);
    }

.site-header {
  background-color: var(--surface-1);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 100;
}

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

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

.nav {
  flex: 1;
}

.nav-left {
  text-align: right;
  order: 0;
}

.nav-right {
  text-align: left;
  order: 2;
}

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

.nav-link {
  text-decoration: none;
  color: var(--fg-on-surface);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  padding: 0.375rem 0;
  border-bottom: 2px solid transparent;
  transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--brand);
  border-bottom-color: var(--brand);
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2.25rem;
  height: 2.25rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.375rem;
  gap: 4px;
  order: 3;
  z-index: 110;
  border-radius: var(--radius-sm);
  transition: background var(--anim-duration) var(--anim-ease);
}

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

.burger-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: 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(6px) rotate(45deg);
}

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

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

@media (max-width: 767px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
  }

  .logo {
    order: 1;
    margin: 0 auto;
  }

  .burger {
    display: flex;
    position: absolute;
    left: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
  }

  .nav {
    display: none;
    flex: 0 0 100%;
    order: 3;
    text-align: center;
    padding-top: var(--space-y);
  }

  .nav.open {
    display: block;
  }

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

  .nav-link {
    display: block;
    padding: 0.5rem 0;
    border-bottom: none;
    font-size: 1.125rem;
  }

  .nav-link:hover,
  .nav-link:focus-visible {
    border-bottom: none;
    color: var(--brand);
  }
}

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 2rem 1rem;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid #4a6274;
    padding-bottom: 1.5rem;
  }
  .footer-logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f39c12;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .footer-logo a:hover {
    color: #e67e22;
  }
  .footer-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
  }
  .footer-nav a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  .footer-nav a:hover {
    color: #f39c12;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
  }
  .footer-contact {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .contact-item {
    display: block;
  }
  .footer-contact a {
    color: #f39c12;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    flex: 1;
    min-width: 250px;
  }
  .disclaimer {
    font-size: 0.85rem;
    color: #95a5a6;
    margin: 0 0 1rem 0;
    line-height: 1.5;
  }
  .legal-links {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 0.8rem;
    flex-wrap: wrap;
  }
  .legal-links a {
    color: #f39c12;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .legal-links a:hover {
    text-decoration: underline;
  }
  .copyright {
    font-size: 0.85rem;
    color: #7f8c8d;
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      text-align: center;
      gap: 1rem;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-bottom {
      flex-direction: column;
      text-align: center;
    }
    .footer-contact {
      align-items: center;
    }
    .legal-links {
      justify-content: center;
    }
  }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: end;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

    .cookie-cv9__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

    .cookie-cv9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

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

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

.connect--colored-v5 {
        padding: 64px 20px;
        background: radial-gradient(circle at top left, rgba(59, 130, 246, 0.35), transparent),
        radial-gradient(circle at bottom right, rgba(139, 92, 246, 0.45), transparent),
        var(--neutral-900);
        color: var(--neutral-0);
    }

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

    .connect__header {
        text-align: center;
        margin-bottom: 32px;
    }

    .connect__eyebrow {
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 0.16em;
        color: rgba(191, 219, 254, 0.9);
        margin: 0 0 0.5rem;
    }

    .connect__header h2 {
        margin: 0 0 0.5rem;
        font-size: clamp(24px, 4vw, 32px);
        color: var(--brand-contrast);
    }

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

    .connect__channels {
        margin-top: 24px;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 18px;
    }

    .connect__channel {
        background: rgba(15, 23, 42, 0.95);
        border-radius: var(--radius-xl);
        padding: 16px 18px;
        border: 1px solid rgba(148, 163, 184, 0.7);
        display: grid;
        gap: 8px;
        box-shadow: var(--shadow-md);
    }

    .connect__icon {
        width: 36px;
        height: 36px;
        border-radius: 12px;
        background: rgba(17, 24, 39, 0.96);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .connect__channel-title {
        margin: 0;
        font-size: 1rem;
        color: var(--brand-contrast);
    }

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

    .connect__channel-link {
        margin-top: 4px;
        font-size: 0.88rem;
        color: var(--bg-accent);
        text-decoration: none;
    }

    .connect__channel-link:hover {
        text-decoration: underline;
    }

.con-lx4{padding:calc(var(--space-y)*3) var(--space-x);background:var(--bg-alt)}
.con-lx4 .con-wrap{max-width:var(--max-w);margin:0 auto}
.con-lx4 h2{margin:0;font-size:clamp(1.75rem,3.2vw,2.5rem)}
.con-lx4 .con-sub{margin:.42rem 0 1rem;color:var(--fg-on-surface-light)}
.con-lx4 .con-strips{display:grid;gap:.55rem}
.con-lx4 .con-strips article{display:flex;justify-content:space-between;gap:1rem;align-items:center;padding:.85rem 1rem;border-radius:var(--radius-lg);background:var(--surface-1);border-left:4px solid var(--bg-primary)}
.con-lx4 h3{margin:0;font-size:1rem}
.con-lx4 .con-strips p{margin:0;color:var(--fg-on-surface-light)}
.con-lx4 a{text-decoration:none;color:var(--link)}
.con-lx4 .con-flow{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.6rem;margin-top:.8rem}
.con-lx4 .con-flow a{display:flex;justify-content:space-between;gap:.75rem;padding:.75rem .9rem;border-radius:var(--radius-md);background:var(--surface-1);border:1px solid var(--border-on-surface)}
.con-lx4 .con-flow span{color:var(--fg-on-surface-light)}
@media (max-width:760px){.con-lx4 .con-strips article{display:grid}.con-lx4 .con-flow{grid-template-columns:1fr}}

.site-header {
  background-color: var(--surface-1);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 100;
}

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

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

.nav {
  flex: 1;
}

.nav-left {
  text-align: right;
  order: 0;
}

.nav-right {
  text-align: left;
  order: 2;
}

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

.nav-link {
  text-decoration: none;
  color: var(--fg-on-surface);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  padding: 0.375rem 0;
  border-bottom: 2px solid transparent;
  transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--brand);
  border-bottom-color: var(--brand);
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2.25rem;
  height: 2.25rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.375rem;
  gap: 4px;
  order: 3;
  z-index: 110;
  border-radius: var(--radius-sm);
  transition: background var(--anim-duration) var(--anim-ease);
}

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

.burger-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: 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(6px) rotate(45deg);
}

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

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

@media (max-width: 767px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
  }

  .logo {
    order: 1;
    margin: 0 auto;
  }

  .burger {
    display: flex;
    position: absolute;
    left: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
  }

  .nav {
    display: none;
    flex: 0 0 100%;
    order: 3;
    text-align: center;
    padding-top: var(--space-y);
  }

  .nav.open {
    display: block;
  }

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

  .nav-link {
    display: block;
    padding: 0.5rem 0;
    border-bottom: none;
    font-size: 1.125rem;
  }

  .nav-link:hover,
  .nav-link:focus-visible {
    border-bottom: none;
    color: var(--brand);
  }
}

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 2rem 1rem;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid #4a6274;
    padding-bottom: 1.5rem;
  }
  .footer-logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f39c12;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .footer-logo a:hover {
    color: #e67e22;
  }
  .footer-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
  }
  .footer-nav a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  .footer-nav a:hover {
    color: #f39c12;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
  }
  .footer-contact {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .contact-item {
    display: block;
  }
  .footer-contact a {
    color: #f39c12;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    flex: 1;
    min-width: 250px;
  }
  .disclaimer {
    font-size: 0.85rem;
    color: #95a5a6;
    margin: 0 0 1rem 0;
    line-height: 1.5;
  }
  .legal-links {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 0.8rem;
    flex-wrap: wrap;
  }
  .legal-links a {
    color: #f39c12;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .legal-links a:hover {
    text-decoration: underline;
  }
  .copyright {
    font-size: 0.85rem;
    color: #7f8c8d;
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      text-align: center;
      gap: 1rem;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-bottom {
      flex-direction: column;
      text-align: center;
    }
    .footer-contact {
      align-items: center;
    }
    .legal-links {
      justify-content: center;
    }
  }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: end;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

    .cookie-cv9__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

    .cookie-cv9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

.pol-lx6{padding:calc(var(--space-y)*2.65) var(--space-x)}
.pol-lx6 .pol-grid{max-width:var(--max-w);margin:0 auto;display:grid;grid-template-columns:repeat(12,minmax(0,1fr));gap:.6rem}
.pol-lx6 .pol-main{grid-column:span 12;padding:1rem;border-radius:var(--radius-xl);background:var(--surface-1);border:1px solid var(--border-on-surface)}
.pol-lx6 .pol-main h2{margin:0;font-size:clamp(1.75rem,3.2vw,2.45rem)}
.pol-lx6 .pol-main p{margin:.38rem 0 0;color:var(--fg-on-surface-light)}
.pol-lx6 .pol-card{grid-column:span 4;padding:.85rem;border-radius:var(--radius-md);background:var(--surface-2);border:1px solid var(--border-on-surface)}
.pol-lx6 .pol-card h3{margin:0 0 .22rem;font-size:1rem}
.pol-lx6 .pol-card p{margin:0;color:var(--fg-on-surface-light)}
.pol-lx6 .pol-foot{grid-column:span 12;padding:.85rem;border-radius:var(--radius-md);background:color-mix(in srgb,var(--surface-1) 86%, var(--bg-accent) 14%);border:1px solid var(--border-on-surface)}
.pol-lx6 .pol-foot h3{margin:0 0 .2rem}
.pol-lx6 .pol-foot p{margin:0}
@media (max-width:920px){.pol-lx6 .pol-card{grid-column:span 6}}@media (max-width:620px){.pol-lx6 .pol-card{grid-column:1/-1}}

.site-header {
  background-color: var(--surface-1);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 100;
}

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

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

.nav {
  flex: 1;
}

.nav-left {
  text-align: right;
  order: 0;
}

.nav-right {
  text-align: left;
  order: 2;
}

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

.nav-link {
  text-decoration: none;
  color: var(--fg-on-surface);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  padding: 0.375rem 0;
  border-bottom: 2px solid transparent;
  transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--brand);
  border-bottom-color: var(--brand);
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2.25rem;
  height: 2.25rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.375rem;
  gap: 4px;
  order: 3;
  z-index: 110;
  border-radius: var(--radius-sm);
  transition: background var(--anim-duration) var(--anim-ease);
}

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

.burger-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: 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(6px) rotate(45deg);
}

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

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

@media (max-width: 767px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
  }

  .logo {
    order: 1;
    margin: 0 auto;
  }

  .burger {
    display: flex;
    position: absolute;
    left: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
  }

  .nav {
    display: none;
    flex: 0 0 100%;
    order: 3;
    text-align: center;
    padding-top: var(--space-y);
  }

  .nav.open {
    display: block;
  }

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

  .nav-link {
    display: block;
    padding: 0.5rem 0;
    border-bottom: none;
    font-size: 1.125rem;
  }

  .nav-link:hover,
  .nav-link:focus-visible {
    border-bottom: none;
    color: var(--brand);
  }
}

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 2rem 1rem;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid #4a6274;
    padding-bottom: 1.5rem;
  }
  .footer-logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f39c12;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .footer-logo a:hover {
    color: #e67e22;
  }
  .footer-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
  }
  .footer-nav a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  .footer-nav a:hover {
    color: #f39c12;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
  }
  .footer-contact {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .contact-item {
    display: block;
  }
  .footer-contact a {
    color: #f39c12;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    flex: 1;
    min-width: 250px;
  }
  .disclaimer {
    font-size: 0.85rem;
    color: #95a5a6;
    margin: 0 0 1rem 0;
    line-height: 1.5;
  }
  .legal-links {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 0.8rem;
    flex-wrap: wrap;
  }
  .legal-links a {
    color: #f39c12;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .legal-links a:hover {
    text-decoration: underline;
  }
  .copyright {
    font-size: 0.85rem;
    color: #7f8c8d;
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      text-align: center;
      gap: 1rem;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-bottom {
      flex-direction: column;
      text-align: center;
    }
    .footer-contact {
      align-items: center;
    }
    .legal-links {
      justify-content: center;
    }
  }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: end;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

    .cookie-cv9__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

    .cookie-cv9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

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

.site-header {
  background-color: var(--surface-1);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 100;
}

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

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

.nav {
  flex: 1;
}

.nav-left {
  text-align: right;
  order: 0;
}

.nav-right {
  text-align: left;
  order: 2;
}

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

.nav-link {
  text-decoration: none;
  color: var(--fg-on-surface);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  padding: 0.375rem 0;
  border-bottom: 2px solid transparent;
  transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--brand);
  border-bottom-color: var(--brand);
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2.25rem;
  height: 2.25rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.375rem;
  gap: 4px;
  order: 3;
  z-index: 110;
  border-radius: var(--radius-sm);
  transition: background var(--anim-duration) var(--anim-ease);
}

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

.burger-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: 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(6px) rotate(45deg);
}

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

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

@media (max-width: 767px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
  }

  .logo {
    order: 1;
    margin: 0 auto;
  }

  .burger {
    display: flex;
    position: absolute;
    left: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
  }

  .nav {
    display: none;
    flex: 0 0 100%;
    order: 3;
    text-align: center;
    padding-top: var(--space-y);
  }

  .nav.open {
    display: block;
  }

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

  .nav-link {
    display: block;
    padding: 0.5rem 0;
    border-bottom: none;
    font-size: 1.125rem;
  }

  .nav-link:hover,
  .nav-link:focus-visible {
    border-bottom: none;
    color: var(--brand);
  }
}

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 2rem 1rem;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid #4a6274;
    padding-bottom: 1.5rem;
  }
  .footer-logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f39c12;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .footer-logo a:hover {
    color: #e67e22;
  }
  .footer-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
  }
  .footer-nav a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  .footer-nav a:hover {
    color: #f39c12;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
  }
  .footer-contact {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .contact-item {
    display: block;
  }
  .footer-contact a {
    color: #f39c12;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    flex: 1;
    min-width: 250px;
  }
  .disclaimer {
    font-size: 0.85rem;
    color: #95a5a6;
    margin: 0 0 1rem 0;
    line-height: 1.5;
  }
  .legal-links {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 0.8rem;
    flex-wrap: wrap;
  }
  .legal-links a {
    color: #f39c12;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .legal-links a:hover {
    text-decoration: underline;
  }
  .copyright {
    font-size: 0.85rem;
    color: #7f8c8d;
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      text-align: center;
      gap: 1rem;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-bottom {
      flex-direction: column;
      text-align: center;
    }
    .footer-contact {
      align-items: center;
    }
    .legal-links {
      justify-content: center;
    }
  }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: end;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

    .cookie-cv9__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

    .cookie-cv9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

.thx-lx6{padding:calc(var(--space-y)*2.65) var(--space-x)}
.thx-lx6 .thx-grid{max-width:980px;margin:0 auto;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.62rem}
.thx-lx6 .thx-main{grid-column:1/-1;padding:1rem;border-radius:var(--radius-xl);background:var(--surface-1);border:1px solid var(--border-on-surface)}
.thx-lx6 h2{margin:0;font-size:clamp(1.78rem,3.3vw,2.52rem)}
.thx-lx6 .thx-main p{margin:.38rem 0 0;color:var(--fg-on-surface-light)}
.thx-lx6 article:not(.thx-main){padding:.88rem;border-radius:var(--radius-md);background:var(--surface-2);border:1px solid var(--border-on-surface)}
.thx-lx6 h3{margin:0 0 .22rem;font-size:1rem}
.thx-lx6 article p{margin:0;color:var(--fg-on-surface-light)}
@media (max-width:700px){.thx-lx6 .thx-grid{grid-template-columns:1fr}}

.site-header {
  background-color: var(--surface-1);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 100;
}

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

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

.nav {
  flex: 1;
}

.nav-left {
  text-align: right;
  order: 0;
}

.nav-right {
  text-align: left;
  order: 2;
}

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

.nav-link {
  text-decoration: none;
  color: var(--fg-on-surface);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  padding: 0.375rem 0;
  border-bottom: 2px solid transparent;
  transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--brand);
  border-bottom-color: var(--brand);
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2.25rem;
  height: 2.25rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.375rem;
  gap: 4px;
  order: 3;
  z-index: 110;
  border-radius: var(--radius-sm);
  transition: background var(--anim-duration) var(--anim-ease);
}

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

.burger-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: 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(6px) rotate(45deg);
}

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

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

@media (max-width: 767px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
  }

  .logo {
    order: 1;
    margin: 0 auto;
  }

  .burger {
    display: flex;
    position: absolute;
    left: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
  }

  .nav {
    display: none;
    flex: 0 0 100%;
    order: 3;
    text-align: center;
    padding-top: var(--space-y);
  }

  .nav.open {
    display: block;
  }

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

  .nav-link {
    display: block;
    padding: 0.5rem 0;
    border-bottom: none;
    font-size: 1.125rem;
  }

  .nav-link:hover,
  .nav-link:focus-visible {
    border-bottom: none;
    color: var(--brand);
  }
}

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 2rem 1rem;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid #4a6274;
    padding-bottom: 1.5rem;
  }
  .footer-logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f39c12;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .footer-logo a:hover {
    color: #e67e22;
  }
  .footer-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
  }
  .footer-nav a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  .footer-nav a:hover {
    color: #f39c12;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
  }
  .footer-contact {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .contact-item {
    display: block;
  }
  .footer-contact a {
    color: #f39c12;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    flex: 1;
    min-width: 250px;
  }
  .disclaimer {
    font-size: 0.85rem;
    color: #95a5a6;
    margin: 0 0 1rem 0;
    line-height: 1.5;
  }
  .legal-links {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 0.8rem;
    flex-wrap: wrap;
  }
  .legal-links a {
    color: #f39c12;
    text-decoration: none;
    font-size: 0.9rem;
  }
  .legal-links a:hover {
    text-decoration: underline;
  }
  .copyright {
    font-size: 0.85rem;
    color: #7f8c8d;
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      text-align: center;
      gap: 1rem;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-bottom {
      flex-direction: column;
      text-align: center;
    }
    .footer-contact {
      align-items: center;
    }
    .legal-links {
      justify-content: center;
    }
  }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: end;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

    .cookie-cv9__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

    .cookie-cv9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

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

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

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

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

    .nf404-v10 a {
        display: inline-block;
        margin-top: 18px;
        color: var(--link);
        text-decoration: none;
        border-bottom: 2px solid var(--link);
        padding-bottom: 2px;
    }