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

  --max-w: 1380px;
  --space-x: 1.38rem;
  --space-y: 1.5rem;
  --gap: 1.41rem;

  --radius-xl: 1.33rem;
  --radius-lg: 1rem;
  --radius-md: 0.68rem;
  --radius-sm: 0.26rem;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.18);
  --shadow-md: 0 12px 20px rgba(0,0,0,0.23);
  --shadow-lg: 0 22px 64px rgba(0,0,0,0.28);

  --overlay: rgba(10, 20, 40, 0.7);
  --anim-duration: 140ms;
  --anim-ease: cubic-bezier(0.4,0,0.2,1);
  --random-number: 1;

  --brand: #1a2a4a;
  --brand-contrast: #ffffff;
  --accent: #2563eb;
  --accent-contrast: #ffffff;

  --neutral-0: #ffffff;
  --neutral-100: #f1f5f9;
  --neutral-300: #cbd5e1;
  --neutral-600: #64748b;
  --neutral-800: #1e293b;
  --neutral-900: #0f172a;

  --bg-page: #f8fafc;
  --fg-on-page: #1e293b;

  --bg-alt: #e2e8f0;
  --fg-on-alt: #334155;

  --surface-1: #ffffff;
  --surface-2: #f1f5f9;
  --fg-on-surface: #1e293b;
  --border-on-surface: #cbd5e1;

  --surface-light: #ffffff;
  --fg-on-surface-light: #334155;
  --border-on-surface-light: #e2e8f0;

  --bg-primary: #1e3a5f;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #152d4a;
  --ring: #2563eb;

  --bg-accent: #2563eb;
  --fg-on-accent: #ffffff;
  --bg-accent-hover: #1d4ed8;

  --link: #2563eb;
  --link-hover: #1d4ed8;

  --gradient-hero: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #1a2a4a 100%);
  --gradient-accent: linear-gradient(135deg, #2563eb 0%, #1d4ed8 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 {
  position: relative;
  background-color: var(--surface-1, #ffffff);
  box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.1));
  padding: var(--space-y, 1rem) var(--space-x, 1.5rem);
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: var(--max-w, 1200px);
  margin: 0 auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: calc(var(--font-size-base, 1rem) * 1.5);
  font-weight: 700;
  color: var(--brand, #1a73e8);
  text-decoration: none;
  line-height: var(--line-height-base, 1.5);
}

.burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
}

.burger-line {
  display: block;
  width: 24px;
  height: 3px;
  background-color: var(--neutral-800, #333333);
  border-radius: var(--radius-sm, 4px);
  transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, 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-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
  opacity: 0;
  width: 100%;
}

.nav-panel.open {
  max-height: 300px;
  opacity: 1;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: var(--space-y, 1rem) 0 0 0;
  display: flex;
  flex-direction: column;
  gap: var(--gap, 0.5rem);
}

.nav-link {
  display: block;
  padding: 0.5rem 0;
  color: var(--neutral-600, #666666);
  text-decoration: none;
  font-size: var(--font-size-base, 1rem);
  line-height: var(--line-height-base, 1.5);
  border-bottom: 1px solid var(--border-on-surface-light, #e0e0e0);
  transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
}

.nav-link:hover,
.nav-link:focus {
  color: var(--brand, #1a73e8);
}

@media (min-width: 768px) {
  .site-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-y, 1rem) var(--space-x, 2rem);
  }

  .header-inner {
    width: auto;
  }

  .burger {
    display: flex;
  }

  .nav-panel {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--surface-1, #ffffff);
    box-shadow: var(--shadow-md, 0 4px 6px rgba(0,0,0,0.1));
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .nav-panel.open {
    max-height: 300px;
    opacity: 1;
  }

  .nav-list {
    flex-direction: column;
    padding: var(--space-y, 1rem) var(--space-x, 2rem);
  }

  .nav-link {
    border-bottom: 1px solid var(--border-on-surface-light, #e0e0e0);
  }
}

.site-footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2.5rem 1.5rem 1.5rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.top-row {
  margin-bottom: 2rem;
  border-bottom: 1px solid #333;
  padding-bottom: 1.5rem;
}
.middle-row {
  margin-bottom: 1.5rem;
}
.bottom-row {
  border-top: 1px solid #333;
  padding-top: 1.5rem;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.footer-brand {
  flex: 1 1 200px;
  margin-bottom: 1rem;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f0a500;
  text-decoration: none;
  letter-spacing: 1px;
}
.footer-nav {
  flex: 2 1 300px;
}
.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.nav-list li a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}
.nav-list li a:hover {
  color: #f0a500;
}
.footer-contact {
  width: 100%;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
.contact-list li {
  font-size: 0.95rem;
}
.contact-list a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s ease;
}
.contact-list a:hover {
  color: #f0a500;
  text-decoration: underline;
}
.footer-legal {
  width: 100%;
}
.copyright {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
  color: #aaa;
}
.disclaimer {
  margin: 0;
  font-size: 0.85rem;
  color: #999;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.disclaimer a {
  color: #f0a500;
  text-decoration: none;
}
.disclaimer a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .top-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .nav-list {
    justify-content: center;
  }
  .contact-list {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  .footer-logo {
    margin-bottom: 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;
        }
    }

.nfintro-v10 {
        padding: calc(var(--space-y) * 2.6) var(--space-x) 0;
        background: var(--bg-page);
        color: var(--fg-on-page);
    }

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

    .nfintro-v10 h1 {
        margin: 0;
        font-size: clamp(2rem, 4.2vw, 3.4rem);
        line-height: 1.08;
        max-width: 18ch;
    }

    .nfintro-v10__subtitle {
        margin: 0;
        max-width: 58ch;
        color: var(--fg-on-surface-light);
    }

    .nfintro-v10__split {
        display: grid;
        grid-template-columns: 1.1fr .9fr;
        gap: calc(var(--gap) * 1.4);
        align-items: start;
    }

    .nfintro-v10__desc {margin: 0; max-width: 60ch;}

    .nfintro-v10__actions {
        display: grid;
        gap: .7rem;
        justify-items: start;
    }

    .nfintro-v10__actions a {
        display: inline-flex;
        padding: .66rem 1.1rem;
        border-radius: var(--radius-lg);
        text-decoration: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 700;
    }

    .nfintro-v10__media {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        padding: var(--gap);
        background: var(--surface-2);
        box-shadow: var(--shadow-sm);
    }

    .nfintro-v10__media img {
        width: 100%;
        display: block;
        border-radius: var(--radius-lg);
        aspect-ratio: 16/9;
        object-fit: cover;
    }

    .nfintro-v10__rail {
        margin-top: calc(var(--space-y) * 1.4);
        background: var(--surface-2);
        border-top: 1px solid var(--border-on-surface);
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1px;
    }

    .nfintro-v10__rail div {
        padding: 1rem var(--space-x);
        background: var(--surface-1);
        display: grid;
        gap: .3rem;
    }

    .nfintro-v10__rail em {
        font-style: normal;
        color: var(--fg-on-surface-light);
        font-size: .88rem;
    }

    .nfintro-v10__rail strong {font-size: 1.05rem;}

    @media (max-width: 900px) {
        .nfintro-v10__split {grid-template-columns: 1fr;}
        .nfintro-v10__rail {grid-template-columns: repeat(2, minmax(0, 1fr));}
    }

.next-ux20 {
        padding: calc(var(--space-y) * 1.9) var(--space-x);
        background: var(--bg-primary);
        color: var(--fg-on-primary)
    }

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

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

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

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

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

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

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

    .next-ux20 .actions a, .next-ux20 .center a, .next-ux20 .banner > a, .next-ux20 .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-ux20 .banner {
        display: grid;
        gap: .6rem
    }

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

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

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

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

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

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

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

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

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

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

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

.rec-lx6{padding:calc(var(--space-y)*2.65) var(--space-x)}
.rec-lx6 .rec-grid{max-width:var(--max-w);margin:0 auto;display:grid;grid-template-columns:repeat(12,minmax(0,1fr));gap:.6rem}
.rec-lx6 .rec-main{grid-column:span 12;padding:1rem;border-radius:var(--radius-xl);border:1px solid var(--border-on-surface);background:var(--surface-1)}
.rec-lx6 .rec-main h2{margin:0;font-size:clamp(1.75rem,3.1vw,2.45rem)}
.rec-lx6 .rec-main p{margin:.38rem 0 0;color:var(--fg-on-surface-light)}
.rec-lx6 .rec-item{grid-column:span 4;padding:.9rem;border-radius:var(--radius-md);border:1px solid var(--border-on-surface);background:var(--surface-2)}
.rec-lx6 .rec-item:nth-child(odd){background:var(--surface-1)}
.rec-lx6 h3{margin:0 0 .22rem;font-size:1rem}
.rec-lx6 .rec-item p{margin:0 0 .55rem;color:var(--fg-on-surface-light)}
.rec-lx6 a{text-decoration:none;color:var(--link);font-weight:700}
@media (max-width:920px){.rec-lx6 .rec-item{grid-column:span 6}}@media (max-width:620px){.rec-lx6 .rec-item{grid-column:1/-1}}

.social-c1 {

        padding: clamp(18px, 3vw, 44px);
        background: var(--gradient-accent);
        color: var(--accent-contrast);
        overflow: hidden;
    }

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

    .social-c1__h {
        margin-bottom: clamp(14px, 2.2vw, 22px);
    }

    .social-c1__title {
        margin: 0;
        font-size: clamp(24px, 4.6vw, 44px);
        letter-spacing: -.02em;
        line-height: 1.1;
    }

    .social-c1__sub {
        margin: 10px 0 0;
        max-width: 70ch;
        color: rgba(255, 255, 255, .9);
    }

    .social-c1__band {
        margin-top: 18px;
        border-radius: var(--radius-xl);
        border: 1px solid rgba(255, 255, 255, 0.22);
        background: rgba(255, 255, 255, 0.10);
        box-shadow: var(--shadow-lg);
        overflow: hidden;
        position: relative;
    }

    .social-c1__band::before,
    .social-c1__band::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        width: 90px;
        pointer-events: none;
        z-index: 1;
    }

    .social-c1__band::before {
        left: 0;
        background: linear-gradient(90deg, rgba(229, 90, 43, 1), rgba(229, 90, 43, 0));
    }

    .social-c1__band::after {
        right: 0;
        background: linear-gradient(270deg, rgba(229, 90, 43, 1), rgba(229, 90, 43, 0));
    }

    .social-c1__track {
        display: flex;
        gap: 18px;
        padding: var(--space-y) var(--space-x);
        width: max-content;
        animation: socialC1Marquee 18s linear infinite;
    }

    @keyframes socialC1Marquee {
        0% {
            transform: translateX(0)
        }
        100% {
            transform: translateX(-50%)
        }
    }

    .social-c1__logo {
        width: 140px;
        height: 86px;
        border-radius: var(--radius-lg);
        background: rgba(0, 0, 0, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.16);
        display: grid;
        place-items: center;
        flex: 0 0 auto;
    }

    .social-c1__logo img {
        max-width: 78%;
        max-height: 70%;
        opacity: .92;
        filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.18));
    }

    .social-c1__stats {
        margin-top: 18px;
        display: grid;
        grid-template-columns:repeat(12, 1fr);
        gap: 12px;
    }

    .social-c1__stat {
        grid-column: span 4;
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, 0.10);
        border: 1px solid rgba(255, 255, 255, 0.18);
        box-shadow: var(--shadow-md);
        padding: 14px 16px;
    }

    .social-c1__num {
        font-weight: 900;
        font-size: clamp(18px, 2.4vw, 28px);
    }

    .social-c1__lbl {
        margin-top: 6px;
        color: rgba(255, 255, 255, .9);
    }

    @media (max-width: 900px) {
        .social-c1__stat {
            grid-column: span 6;
        }
    }

    @media (max-width: 640px) {
        .social-c1__stat {
            grid-column: span 12;
        }
    }

    @media (prefers-reduced-motion: reduce) {
        .social-c1__track {
            animation: none;
            transform: none;
        }
    }

.site-header {
  position: relative;
  background-color: var(--surface-1, #ffffff);
  box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.1));
  padding: var(--space-y, 1rem) var(--space-x, 1.5rem);
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: var(--max-w, 1200px);
  margin: 0 auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: calc(var(--font-size-base, 1rem) * 1.5);
  font-weight: 700;
  color: var(--brand, #1a73e8);
  text-decoration: none;
  line-height: var(--line-height-base, 1.5);
}

.burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
}

.burger-line {
  display: block;
  width: 24px;
  height: 3px;
  background-color: var(--neutral-800, #333333);
  border-radius: var(--radius-sm, 4px);
  transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, 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-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
  opacity: 0;
  width: 100%;
}

.nav-panel.open {
  max-height: 300px;
  opacity: 1;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: var(--space-y, 1rem) 0 0 0;
  display: flex;
  flex-direction: column;
  gap: var(--gap, 0.5rem);
}

.nav-link {
  display: block;
  padding: 0.5rem 0;
  color: var(--neutral-600, #666666);
  text-decoration: none;
  font-size: var(--font-size-base, 1rem);
  line-height: var(--line-height-base, 1.5);
  border-bottom: 1px solid var(--border-on-surface-light, #e0e0e0);
  transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
}

.nav-link:hover,
.nav-link:focus {
  color: var(--brand, #1a73e8);
}

@media (min-width: 768px) {
  .site-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-y, 1rem) var(--space-x, 2rem);
  }

  .header-inner {
    width: auto;
  }

  .burger {
    display: flex;
  }

  .nav-panel {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--surface-1, #ffffff);
    box-shadow: var(--shadow-md, 0 4px 6px rgba(0,0,0,0.1));
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .nav-panel.open {
    max-height: 300px;
    opacity: 1;
  }

  .nav-list {
    flex-direction: column;
    padding: var(--space-y, 1rem) var(--space-x, 2rem);
  }

  .nav-link {
    border-bottom: 1px solid var(--border-on-surface-light, #e0e0e0);
  }
}

.site-footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2.5rem 1.5rem 1.5rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.top-row {
  margin-bottom: 2rem;
  border-bottom: 1px solid #333;
  padding-bottom: 1.5rem;
}
.middle-row {
  margin-bottom: 1.5rem;
}
.bottom-row {
  border-top: 1px solid #333;
  padding-top: 1.5rem;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.footer-brand {
  flex: 1 1 200px;
  margin-bottom: 1rem;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f0a500;
  text-decoration: none;
  letter-spacing: 1px;
}
.footer-nav {
  flex: 2 1 300px;
}
.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.nav-list li a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}
.nav-list li a:hover {
  color: #f0a500;
}
.footer-contact {
  width: 100%;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
.contact-list li {
  font-size: 0.95rem;
}
.contact-list a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s ease;
}
.contact-list a:hover {
  color: #f0a500;
  text-decoration: underline;
}
.footer-legal {
  width: 100%;
}
.copyright {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
  color: #aaa;
}
.disclaimer {
  margin: 0;
  font-size: 0.85rem;
  color: #999;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.disclaimer a {
  color: #f0a500;
  text-decoration: none;
}
.disclaimer a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .top-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .nav-list {
    justify-content: center;
  }
  .contact-list {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  .footer-logo {
    margin-bottom: 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;
        }
    }

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

.faq-fresh-v6 {
        padding: calc(var(--space-y) * 2.8) var(--space-x);
        background: var(--surface-2);
        color: var(--fg-on-surface);
    }

    .faq-fresh-v6 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: 1rem;
    }

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

    .faq-fresh-v6 .bands {
        display: grid;
        grid-template-columns:repeat(3, minmax(0, 1fr));
        gap: var(--gap);
    }

    .faq-fresh-v6 article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        box-shadow: var(--shadow-sm);
    }

    .faq-fresh-v6 h3 {
        margin: 0 0 .45rem;
        font-size: 1rem;
    }

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

    @media (max-width: 980px) {
        .faq-fresh-v6 .bands {
            grid-template-columns:repeat(2, minmax(0, 1fr));
        }
    }

    @media (max-width: 680px) {
        .faq-fresh-v6 .bands {
            grid-template-columns:1fr;
        }
    }

.identity-cv5 {
        padding: clamp(52px, 8vw, 96px) clamp(16px, 4vw, 40px);
        background: linear-gradient(145deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
    }

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

    .identity-cv5__hero {
        position: relative;
        border-radius: var(--radius-xl);
        overflow: hidden;
        min-height: 220px;
    }

    .identity-cv5__hero img {
        width: 100%;
        height: 100%;
        min-height: 220px;
        object-fit: cover;
        display: block;
    }

    .identity-cv5__overlay {
        position: absolute;
        inset: auto 0 0 0;
        padding: var(--space-y) var(--space-x);
        background: linear-gradient(180deg, rgba(0, 0, 0, 0), var(--overlay));
    }

    .identity-cv5__overlay h2 {
        margin: 0;
        font-size: clamp(26px, 4vw, 42px);
    }

    .identity-cv5__overlay span {
        opacity: .92;
    }

    .identity-cv5__grid {
        margin-top: 14px;
        display: grid;
        grid-template-columns: 1.2fr .8fr;
        gap: var(--gap);
    }

    .identity-cv5__grid p {
        margin: 0 0 10px;
    }

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

    .identity-cv5__grid li {
        background: rgba(255, 255, 255, 0.16);
        border: 1px solid rgba(255, 255, 255, 0.24);
        border-radius: var(--radius-md);
        padding: 10px 12px;
    }

    @media (max-width: 800px) {
        .identity-cv5__grid {
            grid-template-columns: 1fr;
        }
    }

.site-header {
  position: relative;
  background-color: var(--surface-1, #ffffff);
  box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.1));
  padding: var(--space-y, 1rem) var(--space-x, 1.5rem);
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: var(--max-w, 1200px);
  margin: 0 auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: calc(var(--font-size-base, 1rem) * 1.5);
  font-weight: 700;
  color: var(--brand, #1a73e8);
  text-decoration: none;
  line-height: var(--line-height-base, 1.5);
}

.burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
}

.burger-line {
  display: block;
  width: 24px;
  height: 3px;
  background-color: var(--neutral-800, #333333);
  border-radius: var(--radius-sm, 4px);
  transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, 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-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
  opacity: 0;
  width: 100%;
}

.nav-panel.open {
  max-height: 300px;
  opacity: 1;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: var(--space-y, 1rem) 0 0 0;
  display: flex;
  flex-direction: column;
  gap: var(--gap, 0.5rem);
}

.nav-link {
  display: block;
  padding: 0.5rem 0;
  color: var(--neutral-600, #666666);
  text-decoration: none;
  font-size: var(--font-size-base, 1rem);
  line-height: var(--line-height-base, 1.5);
  border-bottom: 1px solid var(--border-on-surface-light, #e0e0e0);
  transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
}

.nav-link:hover,
.nav-link:focus {
  color: var(--brand, #1a73e8);
}

@media (min-width: 768px) {
  .site-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-y, 1rem) var(--space-x, 2rem);
  }

  .header-inner {
    width: auto;
  }

  .burger {
    display: flex;
  }

  .nav-panel {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--surface-1, #ffffff);
    box-shadow: var(--shadow-md, 0 4px 6px rgba(0,0,0,0.1));
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .nav-panel.open {
    max-height: 300px;
    opacity: 1;
  }

  .nav-list {
    flex-direction: column;
    padding: var(--space-y, 1rem) var(--space-x, 2rem);
  }

  .nav-link {
    border-bottom: 1px solid var(--border-on-surface-light, #e0e0e0);
  }
}

.site-footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2.5rem 1.5rem 1.5rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.top-row {
  margin-bottom: 2rem;
  border-bottom: 1px solid #333;
  padding-bottom: 1.5rem;
}
.middle-row {
  margin-bottom: 1.5rem;
}
.bottom-row {
  border-top: 1px solid #333;
  padding-top: 1.5rem;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.footer-brand {
  flex: 1 1 200px;
  margin-bottom: 1rem;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f0a500;
  text-decoration: none;
  letter-spacing: 1px;
}
.footer-nav {
  flex: 2 1 300px;
}
.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.nav-list li a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}
.nav-list li a:hover {
  color: #f0a500;
}
.footer-contact {
  width: 100%;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
.contact-list li {
  font-size: 0.95rem;
}
.contact-list a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s ease;
}
.contact-list a:hover {
  color: #f0a500;
  text-decoration: underline;
}
.footer-legal {
  width: 100%;
}
.copyright {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
  color: #aaa;
}
.disclaimer {
  margin: 0;
  font-size: 0.85rem;
  color: #999;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.disclaimer a {
  color: #f0a500;
  text-decoration: none;
}
.disclaimer a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .top-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .nav-list {
    justify-content: center;
  }
  .contact-list {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  .footer-logo {
    margin-bottom: 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;
        }
    }

.social-c1 {

        padding: clamp(18px, 3vw, 44px);
        background: var(--gradient-accent);
        color: var(--accent-contrast);
        overflow: hidden;
    }

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

    .social-c1__h {
        margin-bottom: clamp(14px, 2.2vw, 22px);
    }

    .social-c1__title {
        margin: 0;
        font-size: clamp(24px, 4.6vw, 44px);
        letter-spacing: -.02em;
        line-height: 1.1;
    }

    .social-c1__sub {
        margin: 10px 0 0;
        max-width: 70ch;
        color: rgba(255, 255, 255, .9);
    }

    .social-c1__band {
        margin-top: 18px;
        border-radius: var(--radius-xl);
        border: 1px solid rgba(255, 255, 255, 0.22);
        background: rgba(255, 255, 255, 0.10);
        box-shadow: var(--shadow-lg);
        overflow: hidden;
        position: relative;
    }

    .social-c1__band::before,
    .social-c1__band::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        width: 90px;
        pointer-events: none;
        z-index: 1;
    }

    .social-c1__band::before {
        left: 0;
        background: linear-gradient(90deg, rgba(229, 90, 43, 1), rgba(229, 90, 43, 0));
    }

    .social-c1__band::after {
        right: 0;
        background: linear-gradient(270deg, rgba(229, 90, 43, 1), rgba(229, 90, 43, 0));
    }

    .social-c1__track {
        display: flex;
        gap: 18px;
        padding: var(--space-y) var(--space-x);
        width: max-content;
        animation: socialC1Marquee 18s linear infinite;
    }

    @keyframes socialC1Marquee {
        0% {
            transform: translateX(0)
        }
        100% {
            transform: translateX(-50%)
        }
    }

    .social-c1__logo {
        width: 140px;
        height: 86px;
        border-radius: var(--radius-lg);
        background: rgba(0, 0, 0, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.16);
        display: grid;
        place-items: center;
        flex: 0 0 auto;
    }

    .social-c1__logo img {
        max-width: 78%;
        max-height: 70%;
        opacity: .92;
        filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.18));
    }

    .social-c1__stats {
        margin-top: 18px;
        display: grid;
        grid-template-columns:repeat(12, 1fr);
        gap: 12px;
    }

    .social-c1__stat {
        grid-column: span 4;
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, 0.10);
        border: 1px solid rgba(255, 255, 255, 0.18);
        box-shadow: var(--shadow-md);
        padding: 14px 16px;
    }

    .social-c1__num {
        font-weight: 900;
        font-size: clamp(18px, 2.4vw, 28px);
    }

    .social-c1__lbl {
        margin-top: 6px;
        color: rgba(255, 255, 255, .9);
    }

    @media (max-width: 900px) {
        .social-c1__stat {
            grid-column: span 6;
        }
    }

    @media (max-width: 640px) {
        .social-c1__stat {
            grid-column: span 12;
        }
    }

    @media (prefers-reduced-motion: reduce) {
        .social-c1__track {
            animation: none;
            transform: none;
        }
    }

.cap-lx1{padding:calc(var(--space-y)*2.6) var(--space-x)}
.cap-lx1 .cap-wrap{max-width:var(--max-w);margin:0 auto;display:grid;gap:calc(var(--gap)*1.2)}
.cap-lx1 .cap-top h2{margin:0;font-size:clamp(1.8rem,3.5vw,2.7rem)}
.cap-lx1 .cap-top p{margin:.45rem 0 0;color:var(--fg-on-surface-light);max-width:56ch}
.cap-lx1 .cap-rows{display:grid;gap:.72rem}
.cap-lx1 .cap-row{display:grid;grid-template-columns:190px 1fr auto;gap:.9rem;align-items:center;padding:.95rem;border:1px solid var(--border-on-surface);background:var(--surface-1);border-radius:var(--radius-lg)}
.cap-lx1 .cap-meta{display:grid;gap:.2rem}
.cap-lx1 .cap-meta span{font-size:.8rem;color:var(--fg-on-surface-light)}
.cap-lx1 .cap-meta strong{font-size:1.2rem}
.cap-lx1 h3{margin:0 0 .2rem}
.cap-lx1 .cap-main p{margin:0;color:var(--fg-on-surface-light)}
.cap-lx1 a{justify-self:end;text-decoration:none;color:var(--link);font-weight:700}
.cap-lx1 a:hover{color:var(--link-hover)}
@media (max-width:780px){.cap-lx1 .cap-row{grid-template-columns:1fr}.cap-lx1 a{justify-self:start}}

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

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

    .hiw-ribbon-c1__head {
        margin-bottom: 1.25rem;
    }

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

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

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

    .hiw-ribbon-c1__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-ribbon-c1__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-ribbon-c1__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-ribbon-c1__track h3 {
        margin: .8rem 0 .35rem;
    }

    .hiw-ribbon-c1__track p {
        margin: 0;
    }

.site-header {
  position: relative;
  background-color: var(--surface-1, #ffffff);
  box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.1));
  padding: var(--space-y, 1rem) var(--space-x, 1.5rem);
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: var(--max-w, 1200px);
  margin: 0 auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: calc(var(--font-size-base, 1rem) * 1.5);
  font-weight: 700;
  color: var(--brand, #1a73e8);
  text-decoration: none;
  line-height: var(--line-height-base, 1.5);
}

.burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
}

.burger-line {
  display: block;
  width: 24px;
  height: 3px;
  background-color: var(--neutral-800, #333333);
  border-radius: var(--radius-sm, 4px);
  transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, 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-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
  opacity: 0;
  width: 100%;
}

.nav-panel.open {
  max-height: 300px;
  opacity: 1;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: var(--space-y, 1rem) 0 0 0;
  display: flex;
  flex-direction: column;
  gap: var(--gap, 0.5rem);
}

.nav-link {
  display: block;
  padding: 0.5rem 0;
  color: var(--neutral-600, #666666);
  text-decoration: none;
  font-size: var(--font-size-base, 1rem);
  line-height: var(--line-height-base, 1.5);
  border-bottom: 1px solid var(--border-on-surface-light, #e0e0e0);
  transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
}

.nav-link:hover,
.nav-link:focus {
  color: var(--brand, #1a73e8);
}

@media (min-width: 768px) {
  .site-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-y, 1rem) var(--space-x, 2rem);
  }

  .header-inner {
    width: auto;
  }

  .burger {
    display: flex;
  }

  .nav-panel {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--surface-1, #ffffff);
    box-shadow: var(--shadow-md, 0 4px 6px rgba(0,0,0,0.1));
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .nav-panel.open {
    max-height: 300px;
    opacity: 1;
  }

  .nav-list {
    flex-direction: column;
    padding: var(--space-y, 1rem) var(--space-x, 2rem);
  }

  .nav-link {
    border-bottom: 1px solid var(--border-on-surface-light, #e0e0e0);
  }
}

.site-footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2.5rem 1.5rem 1.5rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.top-row {
  margin-bottom: 2rem;
  border-bottom: 1px solid #333;
  padding-bottom: 1.5rem;
}
.middle-row {
  margin-bottom: 1.5rem;
}
.bottom-row {
  border-top: 1px solid #333;
  padding-top: 1.5rem;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.footer-brand {
  flex: 1 1 200px;
  margin-bottom: 1rem;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f0a500;
  text-decoration: none;
  letter-spacing: 1px;
}
.footer-nav {
  flex: 2 1 300px;
}
.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.nav-list li a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}
.nav-list li a:hover {
  color: #f0a500;
}
.footer-contact {
  width: 100%;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
.contact-list li {
  font-size: 0.95rem;
}
.contact-list a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s ease;
}
.contact-list a:hover {
  color: #f0a500;
  text-decoration: underline;
}
.footer-legal {
  width: 100%;
}
.copyright {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
  color: #aaa;
}
.disclaimer {
  margin: 0;
  font-size: 0.85rem;
  color: #999;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.disclaimer a {
  color: #f0a500;
  text-decoration: none;
}
.disclaimer a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .top-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .nav-list {
    justify-content: center;
  }
  .contact-list {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  .footer-logo {
    margin-bottom: 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;
        }
    }

.frm-lx8{padding:calc(var(--space-y)*3) var(--space-x);background:var(--bg-alt)}
.frm-lx8 .frm-shell{max-width:var(--max-w);margin:0 auto}
.frm-lx8 h2{margin:0 0 .9rem;font-size:clamp(1.8rem,3.4vw,2.6rem)}
.frm-lx8 .frm-sheet{padding:1rem;border:1px solid var(--border-on-surface);border-radius:var(--radius-xl);background:var(--surface-1);display:grid;gap:.75rem}
.frm-lx8 .frm-inline{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:.6rem}
.frm-lx8 label{display:grid;gap:.24rem}
.frm-lx8 span{font-size:.82rem;font-weight:700;color:var(--fg-on-surface-light)}
.frm-lx8 input,.frm-lx8 textarea{width:100%;padding:.74rem;border:1px solid var(--border-on-surface-light);border-radius:var(--radius-md);font:inherit;background:var(--surface-1);color:var(--fg-on-surface)}
.frm-lx8 input:focus,.frm-lx8 textarea:focus{outline:2px solid color-mix(in srgb,var(--ring) 32%, transparent);outline-offset:1px}
.frm-lx8 textarea{min-height:120px;resize:vertical}
.frm-lx8 .frm-actions{display:flex;justify-content:space-between;gap:.8rem;align-items:center}
.frm-lx8 .frm-actions p{margin:0;color:var(--fg-on-surface-light)}
.frm-lx8 button{padding:.78rem 1.2rem;border:0;border-radius:999px;background:var(--bg-primary);color:var(--fg-on-primary);font-weight:700;cursor:pointer}
.frm-lx8 button:hover{background:var(--bg-primary-hover)}
@media (max-width:900px){.frm-lx8 .frm-inline{grid-template-columns:1fr 1fr}}@media (max-width:620px){.frm-lx8 .frm-inline,.frm-lx8 .frm-actions{grid-template-columns:1fr;display:grid}}

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

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

    .touch-gridline .wrap {
        max-width: 900px;
        margin: 0 auto;
    }

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

    .touch-gridline .lead {
        margin: 10px 0 14px;
        color: var(--neutral-600);
    }

    .touch-gridline .list {
        display: grid;
        gap: 8px;
    }

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

    .touch-gridline .title {
        margin: 0 0 4px;
        font-weight: 600;
    }

    .touch-gridline .text {
        margin: 0;
        color: var(--neutral-600);
    }

    .touch-gridline .row a {
        color: var(--link);
        text-decoration: none;
    }

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

.site-header {
  position: relative;
  background-color: var(--surface-1, #ffffff);
  box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.1));
  padding: var(--space-y, 1rem) var(--space-x, 1.5rem);
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: var(--max-w, 1200px);
  margin: 0 auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: calc(var(--font-size-base, 1rem) * 1.5);
  font-weight: 700;
  color: var(--brand, #1a73e8);
  text-decoration: none;
  line-height: var(--line-height-base, 1.5);
}

.burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
}

.burger-line {
  display: block;
  width: 24px;
  height: 3px;
  background-color: var(--neutral-800, #333333);
  border-radius: var(--radius-sm, 4px);
  transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, 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-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
  opacity: 0;
  width: 100%;
}

.nav-panel.open {
  max-height: 300px;
  opacity: 1;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: var(--space-y, 1rem) 0 0 0;
  display: flex;
  flex-direction: column;
  gap: var(--gap, 0.5rem);
}

.nav-link {
  display: block;
  padding: 0.5rem 0;
  color: var(--neutral-600, #666666);
  text-decoration: none;
  font-size: var(--font-size-base, 1rem);
  line-height: var(--line-height-base, 1.5);
  border-bottom: 1px solid var(--border-on-surface-light, #e0e0e0);
  transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
}

.nav-link:hover,
.nav-link:focus {
  color: var(--brand, #1a73e8);
}

@media (min-width: 768px) {
  .site-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-y, 1rem) var(--space-x, 2rem);
  }

  .header-inner {
    width: auto;
  }

  .burger {
    display: flex;
  }

  .nav-panel {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--surface-1, #ffffff);
    box-shadow: var(--shadow-md, 0 4px 6px rgba(0,0,0,0.1));
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .nav-panel.open {
    max-height: 300px;
    opacity: 1;
  }

  .nav-list {
    flex-direction: column;
    padding: var(--space-y, 1rem) var(--space-x, 2rem);
  }

  .nav-link {
    border-bottom: 1px solid var(--border-on-surface-light, #e0e0e0);
  }
}

.site-footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2.5rem 1.5rem 1.5rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.top-row {
  margin-bottom: 2rem;
  border-bottom: 1px solid #333;
  padding-bottom: 1.5rem;
}
.middle-row {
  margin-bottom: 1.5rem;
}
.bottom-row {
  border-top: 1px solid #333;
  padding-top: 1.5rem;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.footer-brand {
  flex: 1 1 200px;
  margin-bottom: 1rem;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f0a500;
  text-decoration: none;
  letter-spacing: 1px;
}
.footer-nav {
  flex: 2 1 300px;
}
.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.nav-list li a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}
.nav-list li a:hover {
  color: #f0a500;
}
.footer-contact {
  width: 100%;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
.contact-list li {
  font-size: 0.95rem;
}
.contact-list a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s ease;
}
.contact-list a:hover {
  color: #f0a500;
  text-decoration: underline;
}
.footer-legal {
  width: 100%;
}
.copyright {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
  color: #aaa;
}
.disclaimer {
  margin: 0;
  font-size: 0.85rem;
  color: #999;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.disclaimer a {
  color: #f0a500;
  text-decoration: none;
}
.disclaimer a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .top-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .nav-list {
    justify-content: center;
  }
  .contact-list {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  .footer-logo {
    margin-bottom: 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)}

.site-header {
  position: relative;
  background-color: var(--surface-1, #ffffff);
  box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.1));
  padding: var(--space-y, 1rem) var(--space-x, 1.5rem);
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: var(--max-w, 1200px);
  margin: 0 auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: calc(var(--font-size-base, 1rem) * 1.5);
  font-weight: 700;
  color: var(--brand, #1a73e8);
  text-decoration: none;
  line-height: var(--line-height-base, 1.5);
}

.burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
}

.burger-line {
  display: block;
  width: 24px;
  height: 3px;
  background-color: var(--neutral-800, #333333);
  border-radius: var(--radius-sm, 4px);
  transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, 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-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
  opacity: 0;
  width: 100%;
}

.nav-panel.open {
  max-height: 300px;
  opacity: 1;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: var(--space-y, 1rem) 0 0 0;
  display: flex;
  flex-direction: column;
  gap: var(--gap, 0.5rem);
}

.nav-link {
  display: block;
  padding: 0.5rem 0;
  color: var(--neutral-600, #666666);
  text-decoration: none;
  font-size: var(--font-size-base, 1rem);
  line-height: var(--line-height-base, 1.5);
  border-bottom: 1px solid var(--border-on-surface-light, #e0e0e0);
  transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
}

.nav-link:hover,
.nav-link:focus {
  color: var(--brand, #1a73e8);
}

@media (min-width: 768px) {
  .site-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-y, 1rem) var(--space-x, 2rem);
  }

  .header-inner {
    width: auto;
  }

  .burger {
    display: flex;
  }

  .nav-panel {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--surface-1, #ffffff);
    box-shadow: var(--shadow-md, 0 4px 6px rgba(0,0,0,0.1));
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .nav-panel.open {
    max-height: 300px;
    opacity: 1;
  }

  .nav-list {
    flex-direction: column;
    padding: var(--space-y, 1rem) var(--space-x, 2rem);
  }

  .nav-link {
    border-bottom: 1px solid var(--border-on-surface-light, #e0e0e0);
  }
}

.site-footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2.5rem 1.5rem 1.5rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.top-row {
  margin-bottom: 2rem;
  border-bottom: 1px solid #333;
  padding-bottom: 1.5rem;
}
.middle-row {
  margin-bottom: 1.5rem;
}
.bottom-row {
  border-top: 1px solid #333;
  padding-top: 1.5rem;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.footer-brand {
  flex: 1 1 200px;
  margin-bottom: 1rem;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f0a500;
  text-decoration: none;
  letter-spacing: 1px;
}
.footer-nav {
  flex: 2 1 300px;
}
.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.nav-list li a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}
.nav-list li a:hover {
  color: #f0a500;
}
.footer-contact {
  width: 100%;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
.contact-list li {
  font-size: 0.95rem;
}
.contact-list a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s ease;
}
.contact-list a:hover {
  color: #f0a500;
  text-decoration: underline;
}
.footer-legal {
  width: 100%;
}
.copyright {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
  color: #aaa;
}
.disclaimer {
  margin: 0;
  font-size: 0.85rem;
  color: #999;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.disclaimer a {
  color: #f0a500;
  text-decoration: none;
}
.disclaimer a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .top-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .nav-list {
    justify-content: center;
  }
  .contact-list {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  .footer-logo {
    margin-bottom: 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;
        }
    }

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

    .terms-layout-a .wrap {
        max-width: 920px;
        margin: 0 auto;
    }

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

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

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

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

    .terms-layout-a h3, .terms-layout-a h4 {
        margin: 0 0 8px;
    }

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

.site-header {
  position: relative;
  background-color: var(--surface-1, #ffffff);
  box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.1));
  padding: var(--space-y, 1rem) var(--space-x, 1.5rem);
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: var(--max-w, 1200px);
  margin: 0 auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: calc(var(--font-size-base, 1rem) * 1.5);
  font-weight: 700;
  color: var(--brand, #1a73e8);
  text-decoration: none;
  line-height: var(--line-height-base, 1.5);
}

.burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
}

.burger-line {
  display: block;
  width: 24px;
  height: 3px;
  background-color: var(--neutral-800, #333333);
  border-radius: var(--radius-sm, 4px);
  transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, 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-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
  opacity: 0;
  width: 100%;
}

.nav-panel.open {
  max-height: 300px;
  opacity: 1;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: var(--space-y, 1rem) 0 0 0;
  display: flex;
  flex-direction: column;
  gap: var(--gap, 0.5rem);
}

.nav-link {
  display: block;
  padding: 0.5rem 0;
  color: var(--neutral-600, #666666);
  text-decoration: none;
  font-size: var(--font-size-base, 1rem);
  line-height: var(--line-height-base, 1.5);
  border-bottom: 1px solid var(--border-on-surface-light, #e0e0e0);
  transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
}

.nav-link:hover,
.nav-link:focus {
  color: var(--brand, #1a73e8);
}

@media (min-width: 768px) {
  .site-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-y, 1rem) var(--space-x, 2rem);
  }

  .header-inner {
    width: auto;
  }

  .burger {
    display: flex;
  }

  .nav-panel {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--surface-1, #ffffff);
    box-shadow: var(--shadow-md, 0 4px 6px rgba(0,0,0,0.1));
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .nav-panel.open {
    max-height: 300px;
    opacity: 1;
  }

  .nav-list {
    flex-direction: column;
    padding: var(--space-y, 1rem) var(--space-x, 2rem);
  }

  .nav-link {
    border-bottom: 1px solid var(--border-on-surface-light, #e0e0e0);
  }
}

.site-footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2.5rem 1.5rem 1.5rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.top-row {
  margin-bottom: 2rem;
  border-bottom: 1px solid #333;
  padding-bottom: 1.5rem;
}
.middle-row {
  margin-bottom: 1.5rem;
}
.bottom-row {
  border-top: 1px solid #333;
  padding-top: 1.5rem;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.footer-brand {
  flex: 1 1 200px;
  margin-bottom: 1rem;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f0a500;
  text-decoration: none;
  letter-spacing: 1px;
}
.footer-nav {
  flex: 2 1 300px;
}
.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.nav-list li a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}
.nav-list li a:hover {
  color: #f0a500;
}
.footer-contact {
  width: 100%;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
.contact-list li {
  font-size: 0.95rem;
}
.contact-list a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s ease;
}
.contact-list a:hover {
  color: #f0a500;
  text-decoration: underline;
}
.footer-legal {
  width: 100%;
}
.copyright {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
  color: #aaa;
}
.disclaimer {
  margin: 0;
  font-size: 0.85rem;
  color: #999;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.disclaimer a {
  color: #f0a500;
  text-decoration: none;
}
.disclaimer a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .top-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .nav-list {
    justify-content: center;
  }
  .contact-list {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  .footer-logo {
    margin-bottom: 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;
        }
    }

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

.site-header {
  position: relative;
  background-color: var(--surface-1, #ffffff);
  box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.1));
  padding: var(--space-y, 1rem) var(--space-x, 1.5rem);
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: var(--max-w, 1200px);
  margin: 0 auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: calc(var(--font-size-base, 1rem) * 1.5);
  font-weight: 700;
  color: var(--brand, #1a73e8);
  text-decoration: none;
  line-height: var(--line-height-base, 1.5);
}

.burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
}

.burger-line {
  display: block;
  width: 24px;
  height: 3px;
  background-color: var(--neutral-800, #333333);
  border-radius: var(--radius-sm, 4px);
  transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, 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-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
  opacity: 0;
  width: 100%;
}

.nav-panel.open {
  max-height: 300px;
  opacity: 1;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: var(--space-y, 1rem) 0 0 0;
  display: flex;
  flex-direction: column;
  gap: var(--gap, 0.5rem);
}

.nav-link {
  display: block;
  padding: 0.5rem 0;
  color: var(--neutral-600, #666666);
  text-decoration: none;
  font-size: var(--font-size-base, 1rem);
  line-height: var(--line-height-base, 1.5);
  border-bottom: 1px solid var(--border-on-surface-light, #e0e0e0);
  transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
}

.nav-link:hover,
.nav-link:focus {
  color: var(--brand, #1a73e8);
}

@media (min-width: 768px) {
  .site-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-y, 1rem) var(--space-x, 2rem);
  }

  .header-inner {
    width: auto;
  }

  .burger {
    display: flex;
  }

  .nav-panel {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--surface-1, #ffffff);
    box-shadow: var(--shadow-md, 0 4px 6px rgba(0,0,0,0.1));
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .nav-panel.open {
    max-height: 300px;
    opacity: 1;
  }

  .nav-list {
    flex-direction: column;
    padding: var(--space-y, 1rem) var(--space-x, 2rem);
  }

  .nav-link {
    border-bottom: 1px solid var(--border-on-surface-light, #e0e0e0);
  }
}

.site-footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2.5rem 1.5rem 1.5rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.top-row {
  margin-bottom: 2rem;
  border-bottom: 1px solid #333;
  padding-bottom: 1.5rem;
}
.middle-row {
  margin-bottom: 1.5rem;
}
.bottom-row {
  border-top: 1px solid #333;
  padding-top: 1.5rem;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.footer-brand {
  flex: 1 1 200px;
  margin-bottom: 1rem;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f0a500;
  text-decoration: none;
  letter-spacing: 1px;
}
.footer-nav {
  flex: 2 1 300px;
}
.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.nav-list li a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}
.nav-list li a:hover {
  color: #f0a500;
}
.footer-contact {
  width: 100%;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
.contact-list li {
  font-size: 0.95rem;
}
.contact-list a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s ease;
}
.contact-list a:hover {
  color: #f0a500;
  text-decoration: underline;
}
.footer-legal {
  width: 100%;
}
.copyright {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
  color: #aaa;
}
.disclaimer {
  margin: 0;
  font-size: 0.85rem;
  color: #999;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.disclaimer a {
  color: #f0a500;
  text-decoration: none;
}
.disclaimer a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .top-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .nav-list {
    justify-content: center;
  }
  .contact-list {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  .footer-logo {
    margin-bottom: 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-v9 {
        padding: clamp(56px, 10vw, 112px) 20px;
        background: var(--accent);
        color: var(--accent-contrast);
    }

    .nf404-v9__card {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        border-radius: var(--radius-xl);
        border: 1px solid rgba(255, 255, 255, .26);
        background: rgba(255, 255, 255, .08);
        padding: clamp(28px, 4vw, 46px);
    }

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

    .nf404-v9 p {
        margin: 12px 0 0;
        opacity: .92;
    }

    .nf404-v9 a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 16px;
        border-radius: var(--radius-md);
        color: var(--accent-contrast);
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, .45);
    }