:root {
  --font-family: "Roboto", sans-serif;
  --font-size-base: 18.2px;
  --line-height-base: 1.78;

  --max-w: 1600px;
  --space-x: 1.87rem;
  --space-y: 1.5rem;
  --gap: 2.18rem;

  --radius-xl: 1.05rem;
  --radius-lg: 0.93rem;
  --radius-md: 0.42rem;
  --radius-sm: 0.24rem;

  --shadow-sm: 0 2px 5px rgba(0,0,0,0.1);
  --shadow-md: 0 6px 22px rgba(0,0,0,0.13);
  --shadow-lg: 0 28px 52px rgba(0,0,0,0.15);

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

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

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

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

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

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

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

  --bg-primary: #2980B9;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #1F618D;
  --ring: #2980B9;

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

  --link: #2980B9;
  --link-hover: #1F618D;

  --gradient-hero: linear-gradient(135deg, #1E3A5F 0%, #2980B9 100%);
  --gradient-accent: linear-gradient(135deg, #E67E22 0%, #F39C12 100%);

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

header {
    background: var(--surface-1);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: var(--space-y) var(--space-x);
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: var(--btn-ghost-bg);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    padding: 10px;
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--fg-on-page);
    border-radius: 2px;
    transition: all var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .nav {
    display: flex;
    align-items: center;
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }
  .nav-list a {
    text-decoration: none;
    color: var(--fg-on-page);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    font-weight: 500;
  }
  .nav-list a:hover,
  .nav-list a:focus-visible {
    background: var(--bg-primary-hover);
    color: var(--fg-on-primary);
    outline: none;
  }
  .nav-list a:focus-visible {
    box-shadow: 0 0 0 2px var(--ring);
  }
  @media (max-width: 767px) {
    .burger {
      display: flex;
    }
    .nav {
      position: fixed;
      top: 0;
      right: 0;
      width: 280px;
      height: 100vh;
      background: var(--surface-2);
      box-shadow: var(--shadow-lg);
      transform: translateX(100%);
      transition: transform var(--anim-duration) var(--anim-ease);
      padding: calc(var(--space-y) * 2) var(--space-x);
      flex-direction: column;
      align-items: flex-start;
      z-index: 200;
      overflow-y: auto;
    }
    .nav.open {
      transform: translateX(0);
    }
    .nav-list {
      flex-direction: column;
      width: 100%;
      gap: 0.5rem;
    }
    .nav-list a {
      display: block;
      width: 100%;
      padding: 0.75rem 1rem;
      font-size: calc(var(--font-size-base) * 1.1);
    }
    /* overlay */
    .nav::before {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background: var(--overlay);
      z-index: -1;
      opacity: 0;
      pointer-events: none;
      transition: opacity var(--anim-duration) var(--anim-ease);
    }
    .nav.open::before {
      opacity: 1;
      pointer-events: auto;
    }
  }

footer {
  background-color: #2c3e50;
  color: #ecf0f1;
  padding: 2rem 1rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: space-between;
}
.footer-left {
  flex: 1 1 300px;
  min-width: 250px;
}
.footer-right {
  flex: 2 1 400px;
  min-width: 280px;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f39c12;
  display: block;
  margin-bottom: 1.2rem;
}
.footer-contact p {
  margin: 0.4rem 0;
}
.footer-contact a {
  color: #ecf0f1;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact a:hover {
  color: #f39c12;
  text-decoration: underline;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.5rem;
}
.footer-nav a {
  color: #ecf0f1;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #f39c12;
  text-decoration: underline;
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  margin-bottom: 1rem;
}
.footer-legal a {
  color: #bdc3c7;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-legal a:hover {
  color: #f39c12;
  text-decoration: underline;
}
.footer-disclaimer {
  font-size: 0.85rem;
  color: #95a5a6;
  margin: 0.8rem 0 0 0;
  font-style: italic;
  border-top: 1px solid #7f8c8d;
  padding-top: 0.8rem;
}
.footer-bottom {
  text-align: center;
  margin-top: 1.5rem;
  border-top: 1px solid #7f8c8d;
  padding-top: 1rem;
  font-size: 0.85rem;
  color: #bdc3c7;
}
@media (max-width: 600px) {
  .footer-container {
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-legal {
    flex-direction: column;
    gap: 0.5rem;
  }
}

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

    .cookie-cv15__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

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

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

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

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

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

.wp-lang-switcher-v5 {
        position: fixed;
        right: clamp(16px, 2vw, var(--space-x, 24px));
        bottom: clamp(16px, 2vw, var(--space-y, 20px));
        z-index: 99999;

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

    .wp-lang-switcher-v5__btn {
        background: var(--surface-1, #fff);
        color: var(--fg-on-surface, #111827);
        padding: calc(8px + var(--local-random) * 1px) calc(12px + var(--local-random) * 2px);
        border: 1px solid var(--border-on-surface, #e5e7eb);
        border-radius: calc(var(--radius-md, 12px) - var(--local-random) * 1px);
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 8px;
        box-shadow: var(--shadow-sm, 0 2px 4px rgba(0, 0, 0, 0.05));
        transition: all var(--anim-duration, 0.3s) var(--anim-ease, ease-in-out);

        font-size: 14px;
        font-weight: 500;
    }

    .wp-lang-switcher-v5__btn:hover {
        background: var(--bg-alt, #f9fafb);
        border-color: var(--neutral-300, #d1d5db);
        box-shadow: var(--shadow-md, 0 4px 12px rgba(0, 0, 0, 0.08));
    }

    .wp-lang-switcher-v5__current {
        color: var(--fg-on-surface, #111827);
        font-weight: 600;
        letter-spacing: calc(0.3px + var(--local-random) * 0.1px);
    }

    .wp-lang-switcher-v5__arrow {
        transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease-in-out);
        color: var(--neutral-600, #4b5563);
    }

    .wp-lang-switcher-v5__panel.open ~ .wp-lang-switcher-v5__btn .wp-lang-switcher-v5__arrow,
    .wp-lang-switcher-v5__btn:has(~ .wp-lang-switcher-v5__panel.open) .wp-lang-switcher-v5__arrow {
        transform: rotate(180deg);
    }

    .wp-lang-switcher-v5__panel {
        display: none;
        position: absolute;
        right: 0;
        bottom: calc(100% + 6px);
        background: var(--surface-1, #fff);
        border: 1px solid var(--border-on-surface, #e5e7eb);
        border-radius: calc(var(--radius-md, 12px) + var(--local-random) * 1px);
        box-shadow: var(--shadow-lg, 0 8px 24px rgba(0, 0, 0, 0.12));
        min-width: calc(160px + var(--local-random) * 10px);
        overflow: hidden;

        transform: translateY(4px);
        transition: all var(--anim-duration, 0.3s) var(--anim-ease, ease-in-out);
    }

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

    .wp-lang-switcher-v5__panel button,
    .wp-lang-switcher-v5__panel a {
        width: 100%;
        text-align: left;
        padding: calc(10px + var(--local-random) * 1px) calc(14px + var(--local-random) * 2px);
        border: 0;
        background: var(--surface-1, #fff);
        color: var(--fg-on-surface, #111827);
        cursor: pointer;

        font-size: 14px;
        transition: background var(--anim-duration, 0.3s) var(--anim-ease, ease-in-out);
        border-bottom: 1px solid var(--neutral-100, #f9fafb);
        text-decoration: none;
        display: block;
    }

    .wp-lang-switcher-v5__panel button:last-child,
    .wp-lang-switcher-v5__panel a:last-child {
        border-bottom: none;
    }

    .wp-lang-switcher-v5__panel button:hover,
    .wp-lang-switcher-v5__panel a:hover {
        background: var(--bg-alt, #f9fafb);
        color: var(--bg-primary, #3b82f6);
    }

.intro-banner-c5 {
        padding: clamp(4rem, 9vw, 7rem) var(--space-x);
        background: linear-gradient(120deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
    }

    .intro-banner-c5__wrap {
        max-width: 62rem;
        margin: 0 auto;
        text-align: center;
    }

    .intro-banner-c5__over {
        display: inline-flex;
        padding: .45rem .8rem;
        border-radius: 999px;
        background: var(--chip-bg);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .intro-banner-c5__wrap h1 {
        margin: .8rem 0 0;
        font-size: clamp(2.6rem, 5vw, 4.8rem);
        line-height: 1;
    }

    .intro-banner-c5__sub {
        margin: 1rem auto 0;
        max-width: 40rem;
        color: rgba(255, 255, 255, .88);
    }

    .intro-banner-c5__bar {
        margin-top: 1.25rem;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: .75rem;
    }

    .intro-banner-c5__bar div {
        padding: .85rem;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .12);
    }

    .intro-banner-c5__cta {
        margin-top: 1rem;
        padding: .9rem 1rem;
        border-radius: var(--radius-md);
        background: rgba(17, 24, 39, .2);
    }

    @media (max-width: 640px) {
        .intro-banner-c5__bar {
            grid-template-columns: 1fr;
        }
    }

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

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

    .next-ux24__copy {
        margin-bottom: 1rem;
        text-align: center;
    }

    .next-ux24__copy p {
        margin: 0;
        color: var(--neutral-600);
    }

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

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

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

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

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

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

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

    .next-ux24__foot {
        margin-top: 1rem;
        text-align: center;
    }

    .next-ux24__foot a {
        display: inline-flex;
        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;
    }

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

.nftouch-v8 {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 3vw, 36px);
        background: var(--bg-page);
        color: var(--fg-on-page);
    }

    .nftouch-v8__wrap {
        max-width: 900px;
        margin: 0 auto;
    }

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

    .nftouch-v8__lead {
        margin: 10px 0 14px;
        color: var(--neutral-600);
    }

    .nftouch-v8__list {
        display: grid;
        gap: 8px;
    }

    .nftouch-v8__row {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
        background: var(--surface-1);
        padding: 10px 12px;
        display: flex;
        justify-content: space-between;
        gap: 10px;
        align-items: center;
    }

    .nftouch-v8__title {
        margin: 0 0 4px;
        font-weight: 600;
    }

    .nftouch-v8__text {
        margin: 0;
        color: var(--neutral-600);
    }

    .nftouch-v8__row a {
        color: var(--link);
        text-decoration: none;
        white-space: nowrap;
    }

    .nftouch-v8__cta {
        display: inline-block;
        margin-top: 12px;
        text-decoration: none;
        padding: 10px 16px;
        border-radius: var(--radius-md);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    @media (max-width: 700px) {
        .nftouch-v8__row {
            flex-direction: column;
            align-items: flex-start;
        }

        .nftouch-v8__row a {
            white-space: normal;
        }
    }

header {
    background: var(--surface-1);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: var(--space-y) var(--space-x);
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: var(--btn-ghost-bg);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    padding: 10px;
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--fg-on-page);
    border-radius: 2px;
    transition: all var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .nav {
    display: flex;
    align-items: center;
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }
  .nav-list a {
    text-decoration: none;
    color: var(--fg-on-page);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    font-weight: 500;
  }
  .nav-list a:hover,
  .nav-list a:focus-visible {
    background: var(--bg-primary-hover);
    color: var(--fg-on-primary);
    outline: none;
  }
  .nav-list a:focus-visible {
    box-shadow: 0 0 0 2px var(--ring);
  }
  @media (max-width: 767px) {
    .burger {
      display: flex;
    }
    .nav {
      position: fixed;
      top: 0;
      right: 0;
      width: 280px;
      height: 100vh;
      background: var(--surface-2);
      box-shadow: var(--shadow-lg);
      transform: translateX(100%);
      transition: transform var(--anim-duration) var(--anim-ease);
      padding: calc(var(--space-y) * 2) var(--space-x);
      flex-direction: column;
      align-items: flex-start;
      z-index: 200;
      overflow-y: auto;
    }
    .nav.open {
      transform: translateX(0);
    }
    .nav-list {
      flex-direction: column;
      width: 100%;
      gap: 0.5rem;
    }
    .nav-list a {
      display: block;
      width: 100%;
      padding: 0.75rem 1rem;
      font-size: calc(var(--font-size-base) * 1.1);
    }
    /* overlay */
    .nav::before {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background: var(--overlay);
      z-index: -1;
      opacity: 0;
      pointer-events: none;
      transition: opacity var(--anim-duration) var(--anim-ease);
    }
    .nav.open::before {
      opacity: 1;
      pointer-events: auto;
    }
  }

footer {
  background-color: #2c3e50;
  color: #ecf0f1;
  padding: 2rem 1rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: space-between;
}
.footer-left {
  flex: 1 1 300px;
  min-width: 250px;
}
.footer-right {
  flex: 2 1 400px;
  min-width: 280px;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f39c12;
  display: block;
  margin-bottom: 1.2rem;
}
.footer-contact p {
  margin: 0.4rem 0;
}
.footer-contact a {
  color: #ecf0f1;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact a:hover {
  color: #f39c12;
  text-decoration: underline;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.5rem;
}
.footer-nav a {
  color: #ecf0f1;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #f39c12;
  text-decoration: underline;
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  margin-bottom: 1rem;
}
.footer-legal a {
  color: #bdc3c7;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-legal a:hover {
  color: #f39c12;
  text-decoration: underline;
}
.footer-disclaimer {
  font-size: 0.85rem;
  color: #95a5a6;
  margin: 0.8rem 0 0 0;
  font-style: italic;
  border-top: 1px solid #7f8c8d;
  padding-top: 0.8rem;
}
.footer-bottom {
  text-align: center;
  margin-top: 1.5rem;
  border-top: 1px solid #7f8c8d;
  padding-top: 1rem;
  font-size: 0.85rem;
  color: #bdc3c7;
}
@media (max-width: 600px) {
  .footer-container {
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-legal {
    flex-direction: column;
    gap: 0.5rem;
  }
}

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

    .cookie-cv15__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

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

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

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

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

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

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

.mis-lx4{padding:calc(var(--space-y)*3) var(--space-x);background:var(--bg-alt)}
.mis-lx4 .mis-wrap{max-width:var(--max-w);margin:0 auto;display:grid;gap:.8rem}
.mis-lx4 h2{margin:0;font-size:clamp(1.75rem,3vw,2.4rem)}
.mis-lx4 .mis-head p{margin:.4rem 0 0;color:var(--fg-on-surface-light)}
.mis-lx4 .mis-line{margin:0;padding:0;list-style:none;display:grid;gap:.6rem;counter-reset:step}
.mis-lx4 .mis-line li{counter-increment:step;display:grid;grid-template-columns:50px 1fr;gap:.8rem;padding:.9rem;border-radius:var(--radius-md);background:var(--surface-1);border:1px solid var(--border-on-surface)}
.mis-lx4 .mis-line li::before{content:counter(step);display:grid;place-items:center;width:2rem;height:2rem;border-radius:50%;background:var(--bg-accent);color:var(--fg-on-accent);font-weight:700}
.mis-lx4 h3{margin:0 0 .25rem}
.mis-lx4 li p{margin:0;color:var(--fg-on-surface-light)}
.mis-lx4 small{display:block;margin-top:.45rem;color:var(--fg-on-surface)}

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

.story-scene-l8 {
        padding: clamp(3.2rem, 7vw, 5.7rem) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    .story-scene-l8__wrap {
        max-width: 58rem;
        margin: 0 auto;
    }

    .story-scene-l8__panel {
        padding: 1rem;
        border-radius: var(--radius-xl);
        background: var(--bg-alt);
        border: 1px solid var(--border-on-surface-light);
    }

    .story-scene-l8__top {
        display: grid;
        grid-template-columns: 14rem 1fr;
        gap: 1rem;
        align-items: center;
    }

    .story-scene-l8__top img {
        display: block;
        width: 100%;
        border-radius: var(--radius-lg);
    }

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

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

    .story-scene-l8__copy {
        margin: .8rem 0 0;
        color: var(--neutral-600);
    }

    .story-scene-l8__panel a {
        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;
    }

    @media (max-width: 700px) {
        .story-scene-l8__top {
            grid-template-columns: 1fr;
        }
    }

header {
    background: var(--surface-1);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: var(--space-y) var(--space-x);
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: var(--btn-ghost-bg);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    padding: 10px;
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--fg-on-page);
    border-radius: 2px;
    transition: all var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .nav {
    display: flex;
    align-items: center;
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }
  .nav-list a {
    text-decoration: none;
    color: var(--fg-on-page);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    font-weight: 500;
  }
  .nav-list a:hover,
  .nav-list a:focus-visible {
    background: var(--bg-primary-hover);
    color: var(--fg-on-primary);
    outline: none;
  }
  .nav-list a:focus-visible {
    box-shadow: 0 0 0 2px var(--ring);
  }
  @media (max-width: 767px) {
    .burger {
      display: flex;
    }
    .nav {
      position: fixed;
      top: 0;
      right: 0;
      width: 280px;
      height: 100vh;
      background: var(--surface-2);
      box-shadow: var(--shadow-lg);
      transform: translateX(100%);
      transition: transform var(--anim-duration) var(--anim-ease);
      padding: calc(var(--space-y) * 2) var(--space-x);
      flex-direction: column;
      align-items: flex-start;
      z-index: 200;
      overflow-y: auto;
    }
    .nav.open {
      transform: translateX(0);
    }
    .nav-list {
      flex-direction: column;
      width: 100%;
      gap: 0.5rem;
    }
    .nav-list a {
      display: block;
      width: 100%;
      padding: 0.75rem 1rem;
      font-size: calc(var(--font-size-base) * 1.1);
    }
    /* overlay */
    .nav::before {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background: var(--overlay);
      z-index: -1;
      opacity: 0;
      pointer-events: none;
      transition: opacity var(--anim-duration) var(--anim-ease);
    }
    .nav.open::before {
      opacity: 1;
      pointer-events: auto;
    }
  }

footer {
  background-color: #2c3e50;
  color: #ecf0f1;
  padding: 2rem 1rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: space-between;
}
.footer-left {
  flex: 1 1 300px;
  min-width: 250px;
}
.footer-right {
  flex: 2 1 400px;
  min-width: 280px;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f39c12;
  display: block;
  margin-bottom: 1.2rem;
}
.footer-contact p {
  margin: 0.4rem 0;
}
.footer-contact a {
  color: #ecf0f1;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact a:hover {
  color: #f39c12;
  text-decoration: underline;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.5rem;
}
.footer-nav a {
  color: #ecf0f1;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #f39c12;
  text-decoration: underline;
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  margin-bottom: 1rem;
}
.footer-legal a {
  color: #bdc3c7;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-legal a:hover {
  color: #f39c12;
  text-decoration: underline;
}
.footer-disclaimer {
  font-size: 0.85rem;
  color: #95a5a6;
  margin: 0.8rem 0 0 0;
  font-style: italic;
  border-top: 1px solid #7f8c8d;
  padding-top: 0.8rem;
}
.footer-bottom {
  text-align: center;
  margin-top: 1.5rem;
  border-top: 1px solid #7f8c8d;
  padding-top: 1rem;
  font-size: 0.85rem;
  color: #bdc3c7;
}
@media (max-width: 600px) {
  .footer-container {
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-legal {
    flex-direction: column;
    gap: 0.5rem;
  }
}

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

    .cookie-cv15__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

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

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

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

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

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

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

.feedback-ux4 {
        background: radial-gradient(circle at 20% 25%, rgba(255, 255, 255, 0.7), transparent 60%),
        radial-gradient(circle at 85% 65%, rgba(212, 165, 165, 0.35), transparent 55%),
        var(--gradient-accent);
        color: var(--fg-on-primary);
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 40px);
        overflow: hidden;
    }

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

    .feedback-ux4__h {
        text-align: center;
        margin-bottom: clamp(28px, 6vw, 60px);

        transform: translateY(-18px);
    }

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

    .feedback-ux4__h h2 {
        margin: 0;
        font-size: clamp(28px, 4.6vw, 48px);
        letter-spacing: -0.02em;
    }

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

    .feedback-ux4__card {
        border-radius: var(--radius-xl);
        border: 1px solid rgba(58, 46, 61, 0.12);
        background: rgba(255, 255, 255, 0.6);
        box-shadow: var(--shadow-lg);
        padding: clamp(18px, 3vw, 26px);
        backdrop-filter: blur(10px);

        transform: translateY(28px);
        position: relative;
        overflow: hidden;
    }

    .feedback-ux4__card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.6), transparent 55%);
        opacity: 0.6;
        pointer-events: none;
    }

    .feedback-ux4__top {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 14px;
        position: relative;
        z-index: 1;
    }

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

    .feedback-ux4__name {
        margin: 0;
        font-size: 16px;
        font-weight: 700;
        color: var(--fg-on-page);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 18ch;
    }

    .feedback-ux4__meta {
        margin: 2px 0 0;
        font-size: 13px;
        color: rgba(58, 46, 61, 0.7);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 22ch;
    }

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

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

    .feedback-ux4__score {
        font-size: 12px;
        font-weight: 700;
        color: var(--fg-on-page);
    }

    .feedback-ux4__quote {
        margin: 14px 0 0;
        position: relative;
        z-index: 1;
        color: rgba(58, 46, 61, 0.88);
        font-size: 14px;
        line-height: 1.65;
    }

    .feedback-ux4__badge {
        display: inline-flex;
        margin-top: 12px;
        position: relative;
        z-index: 1;
        padding: 6px 10px;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border: 1px solid var(--border-on-surface-light);
        font-size: 11px;
        letter-spacing: 0.14em;
        text-transform: uppercase;
    }

.plans-ux8{padding:clamp(50px,7vw,92px) clamp(16px,4vw,36px);background:var(--neutral-100);color:var(--neutral-900)}.plans-ux8__wrap{max-width:var(--max-w);margin:0 auto}.plans-ux8__head p{margin:8px 0 12px;color:var(--neutral-600)}.plans-ux8__stack{display:grid;gap:10px}.plans-ux8__stack article{border:1px solid var(--neutral-300);border-radius:var(--radius-md);background:var(--neutral-0);padding:12px}.plans-ux8__line{display:flex;justify-content:space-between;gap:8px}.plans-ux8__line span{font-size:.84rem;color:var(--brand)}.plans-ux8__stack p{margin:7px 0;color:var(--neutral-800)}.plans-ux8__chips{display:flex;flex-wrap:wrap;gap:6px}.plans-ux8__chips i{font-style:normal;border:1px solid var(--neutral-300);border-radius:999px;padding:4px 8px;background:var(--neutral-100)}.plans-ux8 button{margin-top:8px;border:1px solid var(--neutral-300);border-radius:var(--radius-sm);padding:8px 10px;background:var(--neutral-100);color:var(--neutral-900)}

.hiw-ux8 {
        padding: clamp(3.5rem, 7vw, 6rem) var(--space-x);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

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

    .hiw-ux8__head {
        margin-bottom: 1.25rem;
    }

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

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

    .hiw-ux8__track {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
        gap: var(--gap);
    }

    .hiw-ux8__track article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--fg-on-primary);
        color:  var(--bg-primary);
        border: 1px solid rgba(255, 255, 255, .18);
        box-shadow: var(--shadow-md);
        position: relative;
    }

    .hiw-ux8__track article::after {
        content: '';
        position: absolute;
        inset: auto 1rem 0.7rem 1rem;
        height: 2px;
        background: linear-gradient(90deg, rgba(255, 255, 255, .45), transparent);
    }

    .hiw-ux8__track span {
        display: inline-flex;
        width: 2.4rem;
        height: 2.4rem;
        align-items: center;
        justify-content: center;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-weight: 700;
    }

    .hiw-ux8__track h3 {
        margin: .8rem 0 .35rem;
    }

    .hiw-ux8__track p {
        margin: 0;
    }

header {
    background: var(--surface-1);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: var(--space-y) var(--space-x);
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: var(--btn-ghost-bg);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    padding: 10px;
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--fg-on-page);
    border-radius: 2px;
    transition: all var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .nav {
    display: flex;
    align-items: center;
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }
  .nav-list a {
    text-decoration: none;
    color: var(--fg-on-page);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    font-weight: 500;
  }
  .nav-list a:hover,
  .nav-list a:focus-visible {
    background: var(--bg-primary-hover);
    color: var(--fg-on-primary);
    outline: none;
  }
  .nav-list a:focus-visible {
    box-shadow: 0 0 0 2px var(--ring);
  }
  @media (max-width: 767px) {
    .burger {
      display: flex;
    }
    .nav {
      position: fixed;
      top: 0;
      right: 0;
      width: 280px;
      height: 100vh;
      background: var(--surface-2);
      box-shadow: var(--shadow-lg);
      transform: translateX(100%);
      transition: transform var(--anim-duration) var(--anim-ease);
      padding: calc(var(--space-y) * 2) var(--space-x);
      flex-direction: column;
      align-items: flex-start;
      z-index: 200;
      overflow-y: auto;
    }
    .nav.open {
      transform: translateX(0);
    }
    .nav-list {
      flex-direction: column;
      width: 100%;
      gap: 0.5rem;
    }
    .nav-list a {
      display: block;
      width: 100%;
      padding: 0.75rem 1rem;
      font-size: calc(var(--font-size-base) * 1.1);
    }
    /* overlay */
    .nav::before {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background: var(--overlay);
      z-index: -1;
      opacity: 0;
      pointer-events: none;
      transition: opacity var(--anim-duration) var(--anim-ease);
    }
    .nav.open::before {
      opacity: 1;
      pointer-events: auto;
    }
  }

footer {
  background-color: #2c3e50;
  color: #ecf0f1;
  padding: 2rem 1rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: space-between;
}
.footer-left {
  flex: 1 1 300px;
  min-width: 250px;
}
.footer-right {
  flex: 2 1 400px;
  min-width: 280px;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f39c12;
  display: block;
  margin-bottom: 1.2rem;
}
.footer-contact p {
  margin: 0.4rem 0;
}
.footer-contact a {
  color: #ecf0f1;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact a:hover {
  color: #f39c12;
  text-decoration: underline;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.5rem;
}
.footer-nav a {
  color: #ecf0f1;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #f39c12;
  text-decoration: underline;
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  margin-bottom: 1rem;
}
.footer-legal a {
  color: #bdc3c7;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-legal a:hover {
  color: #f39c12;
  text-decoration: underline;
}
.footer-disclaimer {
  font-size: 0.85rem;
  color: #95a5a6;
  margin: 0.8rem 0 0 0;
  font-style: italic;
  border-top: 1px solid #7f8c8d;
  padding-top: 0.8rem;
}
.footer-bottom {
  text-align: center;
  margin-top: 1.5rem;
  border-top: 1px solid #7f8c8d;
  padding-top: 1rem;
  font-size: 0.85rem;
  color: #bdc3c7;
}
@media (max-width: 600px) {
  .footer-container {
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-legal {
    flex-direction: column;
    gap: 0.5rem;
  }
}

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

    .cookie-cv15__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

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

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

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

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

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

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

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

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

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

    .connect .connect__item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: clamp(12px, 2vw, 16px);
        padding: var(--space-x);
        background: var(--surface-1);
        border-radius: var(--radius-xl);
        border: 2px solid var(--border-on-surface);
        text-decoration: none;
        color: inherit;
        transition: all 0.3s;
    }

    .connect .connect__item:hover {
        transform: translateY(-6px);
        border-color: var(--bg-accent);
        box-shadow: var(--shadow-md);
    }

    .connect .connect__item span {
        font-size: clamp(17px, 2.8vw, 20px);
        font-weight: 600;
        color: var(--fg-on-surface);
    }

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

.frm-lx4{padding:calc(var(--space-y)*2.7) var(--space-x);background:var(--bg-alt)}
.frm-lx4 .frm-wrap{max-width:860px;margin:0 auto;padding:1.1rem;border-radius:var(--radius-xl);background:var(--surface-1);border:1px solid var(--border-on-surface)}
.frm-lx4 h2{margin:0;font-size:clamp(1.75rem,3.1vw,2.45rem)}
.frm-lx4 p{margin:.45rem 0 .95rem;color:var(--fg-on-surface-light)}
.frm-lx4 .frm-rows{display:grid;gap:.58rem}
.frm-lx4 .frm-row{display:grid;grid-template-columns:160px 1fr;gap:.75rem;align-items:center;padding:.62rem;border-radius:var(--radius-md);background:var(--surface-2)}
.frm-lx4 .frm-row span{font-size:.85rem;font-weight:700}
.frm-lx4 input,.frm-lx4 textarea{width:100%;border:1px solid var(--border-on-surface-light);border-radius:var(--radius-sm);padding:.72rem .75rem;font:inherit;background:var(--surface-1);color:var(--fg-on-surface)}
.frm-lx4 .frm-row--message{align-items:start}
.frm-lx4 textarea{min-height:132px;resize:vertical}
.frm-lx4 button{margin-top:.25rem;padding:.84rem 1.2rem;border:1px solid var(--bg-primary);border-radius:var(--radius-md);background:var(--bg-primary);color:var(--fg-on-primary);font-weight:700;cursor:pointer}
.frm-lx4 button:hover{background:var(--bg-primary-hover)}
@media (max-width:720px){.frm-lx4 .frm-row{grid-template-columns:1fr}}

header {
    background: var(--surface-1);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: var(--space-y) var(--space-x);
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: var(--btn-ghost-bg);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    padding: 10px;
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--fg-on-page);
    border-radius: 2px;
    transition: all var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .nav {
    display: flex;
    align-items: center;
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }
  .nav-list a {
    text-decoration: none;
    color: var(--fg-on-page);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    font-weight: 500;
  }
  .nav-list a:hover,
  .nav-list a:focus-visible {
    background: var(--bg-primary-hover);
    color: var(--fg-on-primary);
    outline: none;
  }
  .nav-list a:focus-visible {
    box-shadow: 0 0 0 2px var(--ring);
  }
  @media (max-width: 767px) {
    .burger {
      display: flex;
    }
    .nav {
      position: fixed;
      top: 0;
      right: 0;
      width: 280px;
      height: 100vh;
      background: var(--surface-2);
      box-shadow: var(--shadow-lg);
      transform: translateX(100%);
      transition: transform var(--anim-duration) var(--anim-ease);
      padding: calc(var(--space-y) * 2) var(--space-x);
      flex-direction: column;
      align-items: flex-start;
      z-index: 200;
      overflow-y: auto;
    }
    .nav.open {
      transform: translateX(0);
    }
    .nav-list {
      flex-direction: column;
      width: 100%;
      gap: 0.5rem;
    }
    .nav-list a {
      display: block;
      width: 100%;
      padding: 0.75rem 1rem;
      font-size: calc(var(--font-size-base) * 1.1);
    }
    /* overlay */
    .nav::before {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background: var(--overlay);
      z-index: -1;
      opacity: 0;
      pointer-events: none;
      transition: opacity var(--anim-duration) var(--anim-ease);
    }
    .nav.open::before {
      opacity: 1;
      pointer-events: auto;
    }
  }

footer {
  background-color: #2c3e50;
  color: #ecf0f1;
  padding: 2rem 1rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: space-between;
}
.footer-left {
  flex: 1 1 300px;
  min-width: 250px;
}
.footer-right {
  flex: 2 1 400px;
  min-width: 280px;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f39c12;
  display: block;
  margin-bottom: 1.2rem;
}
.footer-contact p {
  margin: 0.4rem 0;
}
.footer-contact a {
  color: #ecf0f1;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact a:hover {
  color: #f39c12;
  text-decoration: underline;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.5rem;
}
.footer-nav a {
  color: #ecf0f1;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #f39c12;
  text-decoration: underline;
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  margin-bottom: 1rem;
}
.footer-legal a {
  color: #bdc3c7;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-legal a:hover {
  color: #f39c12;
  text-decoration: underline;
}
.footer-disclaimer {
  font-size: 0.85rem;
  color: #95a5a6;
  margin: 0.8rem 0 0 0;
  font-style: italic;
  border-top: 1px solid #7f8c8d;
  padding-top: 0.8rem;
}
.footer-bottom {
  text-align: center;
  margin-top: 1.5rem;
  border-top: 1px solid #7f8c8d;
  padding-top: 1rem;
  font-size: 0.85rem;
  color: #bdc3c7;
}
@media (max-width: 600px) {
  .footer-container {
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-legal {
    flex-direction: column;
    gap: 0.5rem;
  }
}

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

    .cookie-cv15__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

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

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

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

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

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

.pol-lx4{padding:calc(var(--space-y)*3) var(--space-x);background:var(--bg-alt)}
.pol-lx4 .pol-max{max-width:var(--max-w);margin:0 auto;display:grid;gap:.82rem}
.pol-lx4 h2{margin:0;font-size:clamp(1.72rem,3.1vw,2.42rem)}
.pol-lx4 .pol-head p{margin:.38rem 0 0;color:var(--fg-on-surface-light)}
.pol-lx4 .pol-stream{display:grid;gap:.54rem}
.pol-lx4 article{padding:.85rem .9rem;border-inline-start:4px solid var(--bg-primary);border-radius:var(--radius-sm);background:var(--surface-1);border:1px solid var(--border-on-surface)}
.pol-lx4 h3{margin:0 0 .24rem;font-size:1rem}
.pol-lx4 article p{margin:0;color:var(--fg-on-surface-light)}
.pol-lx4 .pol-contact{margin:0;padding:.85rem;border-radius:var(--radius-md);background:var(--surface-1);border:1px dashed var(--border-on-surface-light)}

header {
    background: var(--surface-1);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: var(--space-y) var(--space-x);
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: var(--btn-ghost-bg);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    padding: 10px;
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--fg-on-page);
    border-radius: 2px;
    transition: all var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .nav {
    display: flex;
    align-items: center;
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }
  .nav-list a {
    text-decoration: none;
    color: var(--fg-on-page);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    font-weight: 500;
  }
  .nav-list a:hover,
  .nav-list a:focus-visible {
    background: var(--bg-primary-hover);
    color: var(--fg-on-primary);
    outline: none;
  }
  .nav-list a:focus-visible {
    box-shadow: 0 0 0 2px var(--ring);
  }
  @media (max-width: 767px) {
    .burger {
      display: flex;
    }
    .nav {
      position: fixed;
      top: 0;
      right: 0;
      width: 280px;
      height: 100vh;
      background: var(--surface-2);
      box-shadow: var(--shadow-lg);
      transform: translateX(100%);
      transition: transform var(--anim-duration) var(--anim-ease);
      padding: calc(var(--space-y) * 2) var(--space-x);
      flex-direction: column;
      align-items: flex-start;
      z-index: 200;
      overflow-y: auto;
    }
    .nav.open {
      transform: translateX(0);
    }
    .nav-list {
      flex-direction: column;
      width: 100%;
      gap: 0.5rem;
    }
    .nav-list a {
      display: block;
      width: 100%;
      padding: 0.75rem 1rem;
      font-size: calc(var(--font-size-base) * 1.1);
    }
    /* overlay */
    .nav::before {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background: var(--overlay);
      z-index: -1;
      opacity: 0;
      pointer-events: none;
      transition: opacity var(--anim-duration) var(--anim-ease);
    }
    .nav.open::before {
      opacity: 1;
      pointer-events: auto;
    }
  }

footer {
  background-color: #2c3e50;
  color: #ecf0f1;
  padding: 2rem 1rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: space-between;
}
.footer-left {
  flex: 1 1 300px;
  min-width: 250px;
}
.footer-right {
  flex: 2 1 400px;
  min-width: 280px;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f39c12;
  display: block;
  margin-bottom: 1.2rem;
}
.footer-contact p {
  margin: 0.4rem 0;
}
.footer-contact a {
  color: #ecf0f1;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact a:hover {
  color: #f39c12;
  text-decoration: underline;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.5rem;
}
.footer-nav a {
  color: #ecf0f1;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #f39c12;
  text-decoration: underline;
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  margin-bottom: 1rem;
}
.footer-legal a {
  color: #bdc3c7;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-legal a:hover {
  color: #f39c12;
  text-decoration: underline;
}
.footer-disclaimer {
  font-size: 0.85rem;
  color: #95a5a6;
  margin: 0.8rem 0 0 0;
  font-style: italic;
  border-top: 1px solid #7f8c8d;
  padding-top: 0.8rem;
}
.footer-bottom {
  text-align: center;
  margin-top: 1.5rem;
  border-top: 1px solid #7f8c8d;
  padding-top: 1rem;
  font-size: 0.85rem;
  color: #bdc3c7;
}
@media (max-width: 600px) {
  .footer-container {
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-legal {
    flex-direction: column;
    gap: 0.5rem;
  }
}

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

    .cookie-cv15__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

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

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

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

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

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

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

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

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

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

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

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

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

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

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

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

header {
    background: var(--surface-1);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: var(--space-y) var(--space-x);
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: var(--btn-ghost-bg);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    padding: 10px;
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--fg-on-page);
    border-radius: 2px;
    transition: all var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .nav {
    display: flex;
    align-items: center;
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }
  .nav-list a {
    text-decoration: none;
    color: var(--fg-on-page);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    font-weight: 500;
  }
  .nav-list a:hover,
  .nav-list a:focus-visible {
    background: var(--bg-primary-hover);
    color: var(--fg-on-primary);
    outline: none;
  }
  .nav-list a:focus-visible {
    box-shadow: 0 0 0 2px var(--ring);
  }
  @media (max-width: 767px) {
    .burger {
      display: flex;
    }
    .nav {
      position: fixed;
      top: 0;
      right: 0;
      width: 280px;
      height: 100vh;
      background: var(--surface-2);
      box-shadow: var(--shadow-lg);
      transform: translateX(100%);
      transition: transform var(--anim-duration) var(--anim-ease);
      padding: calc(var(--space-y) * 2) var(--space-x);
      flex-direction: column;
      align-items: flex-start;
      z-index: 200;
      overflow-y: auto;
    }
    .nav.open {
      transform: translateX(0);
    }
    .nav-list {
      flex-direction: column;
      width: 100%;
      gap: 0.5rem;
    }
    .nav-list a {
      display: block;
      width: 100%;
      padding: 0.75rem 1rem;
      font-size: calc(var(--font-size-base) * 1.1);
    }
    /* overlay */
    .nav::before {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background: var(--overlay);
      z-index: -1;
      opacity: 0;
      pointer-events: none;
      transition: opacity var(--anim-duration) var(--anim-ease);
    }
    .nav.open::before {
      opacity: 1;
      pointer-events: auto;
    }
  }

footer {
  background-color: #2c3e50;
  color: #ecf0f1;
  padding: 2rem 1rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: space-between;
}
.footer-left {
  flex: 1 1 300px;
  min-width: 250px;
}
.footer-right {
  flex: 2 1 400px;
  min-width: 280px;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f39c12;
  display: block;
  margin-bottom: 1.2rem;
}
.footer-contact p {
  margin: 0.4rem 0;
}
.footer-contact a {
  color: #ecf0f1;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact a:hover {
  color: #f39c12;
  text-decoration: underline;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.5rem;
}
.footer-nav a {
  color: #ecf0f1;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #f39c12;
  text-decoration: underline;
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  margin-bottom: 1rem;
}
.footer-legal a {
  color: #bdc3c7;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-legal a:hover {
  color: #f39c12;
  text-decoration: underline;
}
.footer-disclaimer {
  font-size: 0.85rem;
  color: #95a5a6;
  margin: 0.8rem 0 0 0;
  font-style: italic;
  border-top: 1px solid #7f8c8d;
  padding-top: 0.8rem;
}
.footer-bottom {
  text-align: center;
  margin-top: 1.5rem;
  border-top: 1px solid #7f8c8d;
  padding-top: 1rem;
  font-size: 0.85rem;
  color: #bdc3c7;
}
@media (max-width: 600px) {
  .footer-container {
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-legal {
    flex-direction: column;
    gap: 0.5rem;
  }
}

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

    .cookie-cv15__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

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

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

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

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

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

.thx-lx2{padding:calc(var(--space-y)*2.8) var(--space-x)}
.thx-lx2 .thx-shell{max-width:880px;margin:0 auto;display:grid;gap:.65rem;text-align:center}
.thx-lx2 h2{margin:0;font-size:clamp(1.85rem,3.6vw,2.75rem)}
.thx-lx2 .thx-sub{margin:0;color:var(--fg-on-surface-light)}
.thx-lx2 .thx-next,.thx-lx2 .thx-contact{padding:.9rem;border-radius:var(--radius-lg);background:var(--surface-1);border:1px solid var(--border-on-surface)}
.thx-lx2 h3{margin:0 0 .22rem;font-size:1rem}
.thx-lx2 p{margin:0;color:var(--fg-on-surface-light)}

header {
    background: var(--surface-1);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: var(--space-y) var(--space-x);
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: var(--btn-ghost-bg);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    padding: 10px;
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--fg-on-page);
    border-radius: 2px;
    transition: all var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .nav {
    display: flex;
    align-items: center;
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }
  .nav-list a {
    text-decoration: none;
    color: var(--fg-on-page);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    font-weight: 500;
  }
  .nav-list a:hover,
  .nav-list a:focus-visible {
    background: var(--bg-primary-hover);
    color: var(--fg-on-primary);
    outline: none;
  }
  .nav-list a:focus-visible {
    box-shadow: 0 0 0 2px var(--ring);
  }
  @media (max-width: 767px) {
    .burger {
      display: flex;
    }
    .nav {
      position: fixed;
      top: 0;
      right: 0;
      width: 280px;
      height: 100vh;
      background: var(--surface-2);
      box-shadow: var(--shadow-lg);
      transform: translateX(100%);
      transition: transform var(--anim-duration) var(--anim-ease);
      padding: calc(var(--space-y) * 2) var(--space-x);
      flex-direction: column;
      align-items: flex-start;
      z-index: 200;
      overflow-y: auto;
    }
    .nav.open {
      transform: translateX(0);
    }
    .nav-list {
      flex-direction: column;
      width: 100%;
      gap: 0.5rem;
    }
    .nav-list a {
      display: block;
      width: 100%;
      padding: 0.75rem 1rem;
      font-size: calc(var(--font-size-base) * 1.1);
    }
    /* overlay */
    .nav::before {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background: var(--overlay);
      z-index: -1;
      opacity: 0;
      pointer-events: none;
      transition: opacity var(--anim-duration) var(--anim-ease);
    }
    .nav.open::before {
      opacity: 1;
      pointer-events: auto;
    }
  }

footer {
  background-color: #2c3e50;
  color: #ecf0f1;
  padding: 2rem 1rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: space-between;
}
.footer-left {
  flex: 1 1 300px;
  min-width: 250px;
}
.footer-right {
  flex: 2 1 400px;
  min-width: 280px;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f39c12;
  display: block;
  margin-bottom: 1.2rem;
}
.footer-contact p {
  margin: 0.4rem 0;
}
.footer-contact a {
  color: #ecf0f1;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact a:hover {
  color: #f39c12;
  text-decoration: underline;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.5rem;
}
.footer-nav a {
  color: #ecf0f1;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #f39c12;
  text-decoration: underline;
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  margin-bottom: 1rem;
}
.footer-legal a {
  color: #bdc3c7;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-legal a:hover {
  color: #f39c12;
  text-decoration: underline;
}
.footer-disclaimer {
  font-size: 0.85rem;
  color: #95a5a6;
  margin: 0.8rem 0 0 0;
  font-style: italic;
  border-top: 1px solid #7f8c8d;
  padding-top: 0.8rem;
}
.footer-bottom {
  text-align: center;
  margin-top: 1.5rem;
  border-top: 1px solid #7f8c8d;
  padding-top: 1rem;
  font-size: 0.85rem;
  color: #bdc3c7;
}
@media (max-width: 600px) {
  .footer-container {
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-legal {
    flex-direction: column;
    gap: 0.5rem;
  }
}

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

    .cookie-cv15__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

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

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

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

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

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

.nf404-v11 {
        padding: clamp(56px, 10vw, 112px) 20px;
        background: linear-gradient(150deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
    }

    .nf404-v11__shell {
        max-width: 700px;
        margin: 0 auto;
        text-align: center;
        border-radius: var(--radius-xl);
        padding: clamp(28px, 4vw, 44px);
        background: rgba(15, 23, 42, .24);
        border: 1px solid rgba(255, 255, 255, .24);
    }

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

    .nf404-v11 p {
        margin: 12px 0 0;
        opacity: .9;
    }

    .nf404-v11 a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 16px;
        border-radius: var(--radius-sm);
        background: var(--neutral-0);
        color: var(--neutral-900);
        text-decoration: none;
    }