:root {
  --font-family: "Raleway", sans-serif;
  --font-size-base: 16.8px;
  --line-height-base: 1.8;

  --max-w: 820px;
  --space-x: 1.03rem;
  --space-y: 1.5rem;
  --gap: 1.06rem;

  --radius-xl: 0.63rem;
  --radius-lg: 0.48rem;
  --radius-md: 0.36rem;
  --radius-sm: 0.27rem;

  --shadow-sm: 0 0px 3px rgba(0,0,0,0.04);
  --shadow-md: 0 3px 16px rgba(0,0,0,0.05);
  --shadow-lg: 0 10px 24px rgba(0,0,0,0.07);

  --overlay: rgba(0,0,0,0.5);
  --anim-duration: 420ms;
  --anim-ease: ease-in-out;
  --random-number: 1;

  --brand: #1a3a5c;
  --brand-contrast: #ffffff;
  --accent: #e67e22;
  --accent-contrast: #ffffff;

  --neutral-0: #ffffff;
  --neutral-100: #f5f7fa;
  --neutral-300: #d1d5db;
  --neutral-600: #6b7280;
  --neutral-800: #1f2937;
  --neutral-900: #111827;

  --bg-page: #f5f7fa;
  --fg-on-page: #1f2937;

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

  --surface-1: #ffffff;
  --surface-2: #f9fafb;
  --fg-on-surface: #1f2937;
  --border-on-surface: #e5e7eb;

  --surface-light: #ffffff;
  --fg-on-surface-light: #374151;
  --border-on-surface-light: #e5e7eb;

  --bg-primary: #1a3a5c;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #142c47;
  --ring: #e67e22;

  --bg-accent: #e67e22;
  --fg-on-accent: #ffffff;
  --bg-accent-hover: #d35400;

  --link: #1a3a5c;
  --link-hover: #e67e22;

  --gradient-hero: linear-gradient(135deg, #1a3a5c 0%, #2c5f8a 100%);
  --gradient-accent: linear-gradient(135deg, #e67e22 0%, #d35400 100%);

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

.site-header {
  position: relative;
  background: var(--surface-1, #ffffff);
  box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.1));
  padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
  z-index: 100;
}

.header-inner {
  max-width: var(--max-w, 1200px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap, 1rem);
}

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

.burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 40px;
  height: 40px;
  background: var(--btn-ghost-bg, transparent);
  border: 1px solid var(--border-on-surface, #d1d5db);
  border-radius: var(--radius-md, 8px);
  cursor: pointer;
  padding: 8px;
  transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
}

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

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

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

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

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

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

.nav-menu.open {
  max-height: 400px;
  padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
}

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

.nav-list a {
  display: block;
  padding: 0.5rem 0;
  color: var(--fg-on-surface, #1f2937);
  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, #e5e7eb);
  transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
}

.nav-list a:hover,
.nav-list a:focus-visible {
  color: var(--brand, #2563eb);
}

.nav-list li:last-child a {
  border-bottom: none;
}

@media (min-width: 768px) {
  .site-header {
    padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
  }

  .burger {
    display: flex;
  }

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

  .nav-menu.open {
    max-height: 400px;
    padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
  }

  .nav-list {
    flex-direction: column;
    gap: var(--gap, 0.75rem);
  }

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

  .nav-list li:last-child a {
    border-bottom: none;
  }
}

footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1rem;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
  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;
  margin-bottom: 1.5rem;
}
.footer-row:last-child {
  margin-bottom: 0;
}
.footer-brand {
  flex: 1 1 100%;
  margin-bottom: 1rem;
}
.footer-logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #f0a500;
  text-decoration: none;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-nav a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #f0a500;
}
.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-contact li {
  margin-bottom: 0.3rem;
}
.footer-contact a {
  color: #e0e0e0;
  text-decoration: none;
}
.footer-contact a:hover {
  color: #f0a500;
}
.footer-bottom {
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 1rem;
}
.footer-copy {
  margin: 0 0 0.5rem 0;
  font-size: 0.85rem;
}
.footer-disclaimer {
  margin: 0;
  font-size: 0.8rem;
  color: #aaa;
}
.footer-disclaimer a {
  color: #f0a500;
  text-decoration: none;
}
.footer-disclaimer a:hover {
  text-decoration: underline;
}
@media (min-width: 768px) {
  .footer-row {
    flex-wrap: nowrap;
  }
  .footer-brand {
    flex: 0 0 auto;
    margin-bottom: 0;
  }
  .footer-nav ul {
    justify-content: flex-end;
  }
}

.cookie-cv5 {
        position: fixed;
        inset: auto 0 0 0;
        z-index: 1200;
        background: linear-gradient(90deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    }

    .cookie-cv5__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 10px var(--space-x);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

    .cookie-cv5__inner p {
        margin: 0;
    }

    .cookie-cv5__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv5__actions button {
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.12);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 7px 10px;
        cursor: pointer;
    }

    .cookie-cv5__actions button[data-choice='accept'] {
        background: var(--neutral-0);
        color: var(--fg-on-page);
    }

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

.cta-struct-v5 {
        padding: calc(var(--space-y) * 1.9) var(--space-x);
        background: var(--gradient-accent);
        color: var(--accent-contrast)
    }

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

    .cta-struct-v5 h2, .cta-struct-v5 h3, .cta-struct-v5 p {
        margin: 0
    }

    .cta-struct-v5 a {
        text-decoration: none
    }

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

    .cta-struct-v5 .center {
        display: grid;
        gap: .5rem;
        justify-items: center;
        text-align: center
    }

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

    .cta-struct-v5 .actions {
        display: flex;
        gap: .45rem;
        flex-wrap: wrap
    }

    .cta-struct-v5 .actions a, .cta-struct-v5 .center a, .cta-struct-v5 .banner > a, .cta-struct-v5 .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)
    }

    .cta-struct-v5 .banner {
        display: grid;
        gap: .6rem
    }

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

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

    .cta-struct-v5 .duo {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: var(--gap)
    }

    .cta-struct-v5 .duo article {
        display: grid;
        gap: .45rem
    }

    .cta-struct-v5 .stack {
        display: grid;
        gap: .6rem;
        justify-items: start
    }

    .cta-struct-v5 .chips {
        display: flex;
        gap: .35rem;
        flex-wrap: wrap
    }

    .cta-struct-v5 .chips span {
        padding: .28rem .5rem;
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--neutral-900);
        border: 1px solid var(--border-on-surface-light)
    }

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

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

        .cta-struct-v5 .numbers {
            grid-template-columns:1fr 1fr
        }
    }

    @media (max-width: 620px) {
        .cta-struct-v5 .numbers {
            grid-template-columns:1fr
        }
    }

.why-choose {

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

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

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

    .why-choose__wrap {
        border-radius: var(--radius-xl);
        padding: clamp(16px, 2.6vw, 26px);
        background: var(--bg-alt);
        border: 1px solid var(--neutral-300);
        box-shadow: var(--shadow-md);
    }

    .why-choose__h {
        margin-bottom: clamp(14px, 2vw, 22px);
    }

    .why-choose__pill {
        display: inline-flex;
        padding: 7px 12px;
        border-radius: 999px;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-sm);
        margin-bottom: 12px;
        font-size: 0.9rem;
    }

    .why-choose__title {
        margin: 0;
        font-size: clamp(24px, 4.2vw, 40px);
        line-height: 1.1;
        color: var(--bg-primary);
        letter-spacing: -0.02em;
    }

    .why-choose__subtitle {
        margin: 10px 0 0;
        color: var(--neutral-600);
        max-width: 70ch;
    }

    .why-choose__cards {
        display: grid;
        grid-template-columns:repeat(12, 1fr);
        gap: 14px;
    }

    .why-choose__card {
        grid-column: span 6;
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-sm);
        overflow: hidden;
        transform: perspective(900px) rotateX(0) rotateY(0) translateY(0);
        transition: transform 180ms var(--anim-ease),
        box-shadow 180ms var(--anim-ease),
        border-color 180ms var(--anim-ease);
        will-change: transform;
        position: relative;
    }

    .why-choose__cardHead {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 16px;
        background: rgba(0, 0, 0, 0.03);
        border-bottom: 1px solid var(--border-on-surface);
    }

    .why-choose__num {
        width: 36px;
        height: 36px;
        border-radius: 12px;
        display: grid;
        place-items: center;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-weight: 700;
    }

    .why-choose__mini {
        color: var(--neutral-600);
        font-size: 0.9rem;
    }

    .why-choose__cardBody {
        padding: 14px 16px;
    }

    .why-choose__cardTitle {
        margin: 0 0 8px;
        color: var(--bg-primary);
        font-size: clamp(18px, 2.2vw, 20px);
    }

    .why-choose__cardText {
        margin: 0;
        color: var(--neutral-600);
        line-height: var(--line-height-base);
    }

    @media (max-width: 860px) {
        .why-choose__card {
            grid-column: span 12;
        }
    }

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

.two-column-section {
    padding: clamp(48px, 8vw, 80px) 0;
}

.two-column-section__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
}

.two-column-section__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: calc(var(--gap) * 2);
    align-items: start;
}

.two-column-section--split .two-column-section__text {
    padding: 0 0 0 0;
    border-left: 2px solid var(--border-on-surface);
    padding-left: var(--space-x);
}

.two-column-section--split .two-column-section__text:first-child {
    border-left: 0;
    padding-left: 0;
}

.two-column-section__text h2 {
    margin-bottom: var(--space-y);
    color: var(--fg-on-page);
}

.two-column-section__text p {
    margin-bottom: var(--space-y);
    color: var(--neutral-600);
}

.clar-ux9{padding:clamp(20px,3vw,44px);background:var(--neutral-100);color:var(--neutral-900)}.clar-ux9__wrap{max-width:var(--max-w);margin:0 auto;display:grid;grid-template-columns:.9fr 1.1fr;gap:12px}.clar-ux9__left p{margin:8px 0 0;color:var(--neutral-600)}.clar-ux9__right{display:grid;gap:10px}.clar-ux9__right article{border:1px solid var(--neutral-300);border-radius:var(--radius-md);background:var(--neutral-0);padding:12px}.clar-ux9__right span{display:inline-flex;font-size:.84rem;color:var(--brand)}.clar-ux9__right h3{margin:6px 0}.clar-ux9__right p{margin:0;color:var(--neutral-800)}@media(max-width:780px){.clar-ux9__wrap{grid-template-columns:1fr}}

.site-header {
  position: relative;
  background: var(--surface-1, #ffffff);
  box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.1));
  padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
  z-index: 100;
}

.header-inner {
  max-width: var(--max-w, 1200px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap, 1rem);
}

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

.burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 40px;
  height: 40px;
  background: var(--btn-ghost-bg, transparent);
  border: 1px solid var(--border-on-surface, #d1d5db);
  border-radius: var(--radius-md, 8px);
  cursor: pointer;
  padding: 8px;
  transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
}

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

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

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

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

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

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

.nav-menu.open {
  max-height: 400px;
  padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
}

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

.nav-list a {
  display: block;
  padding: 0.5rem 0;
  color: var(--fg-on-surface, #1f2937);
  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, #e5e7eb);
  transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
}

.nav-list a:hover,
.nav-list a:focus-visible {
  color: var(--brand, #2563eb);
}

.nav-list li:last-child a {
  border-bottom: none;
}

@media (min-width: 768px) {
  .site-header {
    padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
  }

  .burger {
    display: flex;
  }

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

  .nav-menu.open {
    max-height: 400px;
    padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
  }

  .nav-list {
    flex-direction: column;
    gap: var(--gap, 0.75rem);
  }

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

  .nav-list li:last-child a {
    border-bottom: none;
  }
}

footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1rem;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
  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;
  margin-bottom: 1.5rem;
}
.footer-row:last-child {
  margin-bottom: 0;
}
.footer-brand {
  flex: 1 1 100%;
  margin-bottom: 1rem;
}
.footer-logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #f0a500;
  text-decoration: none;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-nav a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #f0a500;
}
.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-contact li {
  margin-bottom: 0.3rem;
}
.footer-contact a {
  color: #e0e0e0;
  text-decoration: none;
}
.footer-contact a:hover {
  color: #f0a500;
}
.footer-bottom {
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 1rem;
}
.footer-copy {
  margin: 0 0 0.5rem 0;
  font-size: 0.85rem;
}
.footer-disclaimer {
  margin: 0;
  font-size: 0.8rem;
  color: #aaa;
}
.footer-disclaimer a {
  color: #f0a500;
  text-decoration: none;
}
.footer-disclaimer a:hover {
  text-decoration: underline;
}
@media (min-width: 768px) {
  .footer-row {
    flex-wrap: nowrap;
  }
  .footer-brand {
    flex: 0 0 auto;
    margin-bottom: 0;
  }
  .footer-nav ul {
    justify-content: flex-end;
  }
}

.cookie-cv5 {
        position: fixed;
        inset: auto 0 0 0;
        z-index: 1200;
        background: linear-gradient(90deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    }

    .cookie-cv5__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 10px var(--space-x);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

    .cookie-cv5__inner p {
        margin: 0;
    }

    .cookie-cv5__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv5__actions button {
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.12);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 7px 10px;
        cursor: pointer;
    }

    .cookie-cv5__actions button[data-choice='accept'] {
        background: var(--neutral-0);
        color: var(--fg-on-page);
    }

.messages {

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

    .messages .messages__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: var(--space-x);

    }

    @media (max-width: 767px) {
        .messages .messages__c {
            grid-template-columns: 1fr;
            height: auto;
        }

        .messages .messages__chat-form {
            flex-direction: column;
        }
    }

    @media (min-width: 1024px) {
        .messages .messages__c {
            grid-template-columns: 300px 1fr;
        }
    }

    .messages .messages__list {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, 0.2);
        padding: 1rem;
        overflow-y: auto;
    }

    .messages h2 {
        margin: 0 0 1rem;
        color: var(--fg-on-page);
        font-size: 1.25rem;
    }

    .messages .messages__items {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .messages .messages__item {
        display: flex;
        gap: 1rem;
        padding: 1rem;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, 0.1);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .messages .messages__item:hover {
        background: rgba(255, 255, 255, 0.2);
    }

    .messages .messages__avatar {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
        color: var(--fg-on-page);
        flex-shrink: 0;
    }

    .messages .messages__info {
        flex: 1;
        min-width: 0;
    }

    .messages h4 {
        margin: 0 0 0.25rem;
        color: var(--fg-on-page);
        font-size: 1rem;
    }

    .messages .messages__info p {
        margin: 0 0 0.25rem;

        font-size: 0.875rem;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .messages .messages__time {
        font-size: 0.75rem;

    }

    .messages .messages__chat {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, 0.2);
        display: flex;
        flex-direction: column;
    }

    .messages .messages__chat-header {
        padding: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .messages h3 {
        margin: 0;
        color: var(--fg-on-page);
    }

    .messages .messages__chat-messages {
        flex: 1;
        padding: 1rem;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .messages .messages__message {
        background: rgba(255, 255, 255, 0.1);
        padding: 0.875rem 1rem;
        border-radius: var(--radius-md);
        max-width: 70%;
    }

    .messages .messages__message-text {
        color: var(--fg-on-page);
        margin-bottom: 0.25rem;
    }

    .messages .messages__message-time {
        font-size: 0.75rem;

    }

    .messages .messages__chat-form {
        display: flex;
        gap: 0.5rem;
        padding: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .messages .messages__chat-form input {
        flex: 1;
        padding: 0.875rem;
        border-radius: var(--radius-md);
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.1);
        color: var(--fg-on-page);
        outline: none;
    }

    .messages .messages__chat-form input::placeholder {

    }

    .messages .messages__chat-form button {
        padding: 0.875rem 1.5rem;
        border-radius: var(--radius-md);
        border: none;
        background: var(--bg-page);
        color: var(--bg-primary);
        font-weight: 600;
        cursor: pointer;
    }

.index-feedback {
        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;
    }

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

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

        transform: translateY(-18px);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.clar-ux9{padding:clamp(20px,3vw,44px);background:var(--neutral-100);color:var(--neutral-900)}.clar-ux9__wrap{max-width:var(--max-w);margin:0 auto;display:grid;grid-template-columns:.9fr 1.1fr;gap:12px}.clar-ux9__left p{margin:8px 0 0;color:var(--neutral-600)}.clar-ux9__right{display:grid;gap:10px}.clar-ux9__right article{border:1px solid var(--neutral-300);border-radius:var(--radius-md);background:var(--neutral-0);padding:12px}.clar-ux9__right span{display:inline-flex;font-size:.84rem;color:var(--brand)}.clar-ux9__right h3{margin:6px 0}.clar-ux9__right p{margin:0;color:var(--neutral-800)}@media(max-width:780px){.clar-ux9__wrap{grid-template-columns:1fr}}

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

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

    .faq-layout-c .section-head {
        margin-bottom: 16px;
    }

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

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

    .faq-layout-c .faq-list {
        margin: 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 12px;
        counter-reset: faq;
    }

    .faq-layout-c .row {
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        overflow: hidden;
    }

    .faq-layout-c .q {
        width: 100%;
        border: 0;
        background: transparent;
        text-align: left;
        padding: 12px;
        font: inherit;
        cursor: pointer;
    }

    .faq-layout-c .q span {
        display: inline-block;
        min-width: 50px;
        color: var(--brand);
        font-weight: 700;
    }

    .faq-layout-c .a {
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease);
    }

    .faq-layout-c .a p {
        margin: 0;
        padding: 0 12px 12px;
        color: var(--neutral-600);
    }

    .faq-layout-c .row.open .a {
        max-height: 240px;
    }

.site-header {
  position: relative;
  background: var(--surface-1, #ffffff);
  box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.1));
  padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
  z-index: 100;
}

.header-inner {
  max-width: var(--max-w, 1200px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap, 1rem);
}

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

.burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 40px;
  height: 40px;
  background: var(--btn-ghost-bg, transparent);
  border: 1px solid var(--border-on-surface, #d1d5db);
  border-radius: var(--radius-md, 8px);
  cursor: pointer;
  padding: 8px;
  transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
}

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

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

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

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

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

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

.nav-menu.open {
  max-height: 400px;
  padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
}

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

.nav-list a {
  display: block;
  padding: 0.5rem 0;
  color: var(--fg-on-surface, #1f2937);
  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, #e5e7eb);
  transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
}

.nav-list a:hover,
.nav-list a:focus-visible {
  color: var(--brand, #2563eb);
}

.nav-list li:last-child a {
  border-bottom: none;
}

@media (min-width: 768px) {
  .site-header {
    padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
  }

  .burger {
    display: flex;
  }

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

  .nav-menu.open {
    max-height: 400px;
    padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
  }

  .nav-list {
    flex-direction: column;
    gap: var(--gap, 0.75rem);
  }

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

  .nav-list li:last-child a {
    border-bottom: none;
  }
}

footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1rem;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
  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;
  margin-bottom: 1.5rem;
}
.footer-row:last-child {
  margin-bottom: 0;
}
.footer-brand {
  flex: 1 1 100%;
  margin-bottom: 1rem;
}
.footer-logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #f0a500;
  text-decoration: none;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-nav a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #f0a500;
}
.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-contact li {
  margin-bottom: 0.3rem;
}
.footer-contact a {
  color: #e0e0e0;
  text-decoration: none;
}
.footer-contact a:hover {
  color: #f0a500;
}
.footer-bottom {
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 1rem;
}
.footer-copy {
  margin: 0 0 0.5rem 0;
  font-size: 0.85rem;
}
.footer-disclaimer {
  margin: 0;
  font-size: 0.8rem;
  color: #aaa;
}
.footer-disclaimer a {
  color: #f0a500;
  text-decoration: none;
}
.footer-disclaimer a:hover {
  text-decoration: underline;
}
@media (min-width: 768px) {
  .footer-row {
    flex-wrap: nowrap;
  }
  .footer-brand {
    flex: 0 0 auto;
    margin-bottom: 0;
  }
  .footer-nav ul {
    justify-content: flex-end;
  }
}

.cookie-cv5 {
        position: fixed;
        inset: auto 0 0 0;
        z-index: 1200;
        background: linear-gradient(90deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    }

    .cookie-cv5__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 10px var(--space-x);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

    .cookie-cv5__inner p {
        margin: 0;
    }

    .cookie-cv5__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv5__actions button {
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.12);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 7px 10px;
        cursor: pointer;
    }

    .cookie-cv5__actions button[data-choice='accept'] {
        background: var(--neutral-0);
        color: var(--fg-on-page);
    }

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

    .touch-column .wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .touch-column .head {
        margin-bottom: 14px;
    }

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

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

    .touch-column .cols {
        display: grid;
        grid-template-columns: 1.2fr .8fr;
        gap: 12px;
    }

    .touch-column .left,
    .touch-column .right {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        padding: 12px;
    }

    .touch-column .list-title {
        margin: 0 0 8px;
        color: var(--neutral-600);
    }

    .touch-column article {
        padding: 8px 0;
        border-bottom: 1px solid var(--border-on-surface-light);
    }

    .touch-column article:last-child {
        border-bottom: 0;
    }

    .touch-column h3 {
        margin: 0 0 6px;
    }

    .touch-column article p {
        margin: 0 0 6px;
        color: var(--neutral-600);
    }

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

    .touch-column .right img {
        width: 100%;
        border-radius: var(--radius-md);
        border: 1px solid var(--border-on-surface-light);
    }

    .touch-column .right a {
        display: inline-block;
        margin-top: 10px;
        text-decoration: none;
        padding: 10px 14px;
        border-radius: var(--radius-md);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    @media (max-width: 860px) {
        .touch-column .cols {
            grid-template-columns: 1fr;
        }
    }

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

.site-header {
  position: relative;
  background: var(--surface-1, #ffffff);
  box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.1));
  padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
  z-index: 100;
}

.header-inner {
  max-width: var(--max-w, 1200px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap, 1rem);
}

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

.burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 40px;
  height: 40px;
  background: var(--btn-ghost-bg, transparent);
  border: 1px solid var(--border-on-surface, #d1d5db);
  border-radius: var(--radius-md, 8px);
  cursor: pointer;
  padding: 8px;
  transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
}

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

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

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

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

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

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

.nav-menu.open {
  max-height: 400px;
  padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
}

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

.nav-list a {
  display: block;
  padding: 0.5rem 0;
  color: var(--fg-on-surface, #1f2937);
  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, #e5e7eb);
  transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
}

.nav-list a:hover,
.nav-list a:focus-visible {
  color: var(--brand, #2563eb);
}

.nav-list li:last-child a {
  border-bottom: none;
}

@media (min-width: 768px) {
  .site-header {
    padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
  }

  .burger {
    display: flex;
  }

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

  .nav-menu.open {
    max-height: 400px;
    padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
  }

  .nav-list {
    flex-direction: column;
    gap: var(--gap, 0.75rem);
  }

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

  .nav-list li:last-child a {
    border-bottom: none;
  }
}

footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1rem;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
  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;
  margin-bottom: 1.5rem;
}
.footer-row:last-child {
  margin-bottom: 0;
}
.footer-brand {
  flex: 1 1 100%;
  margin-bottom: 1rem;
}
.footer-logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #f0a500;
  text-decoration: none;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-nav a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #f0a500;
}
.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-contact li {
  margin-bottom: 0.3rem;
}
.footer-contact a {
  color: #e0e0e0;
  text-decoration: none;
}
.footer-contact a:hover {
  color: #f0a500;
}
.footer-bottom {
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 1rem;
}
.footer-copy {
  margin: 0 0 0.5rem 0;
  font-size: 0.85rem;
}
.footer-disclaimer {
  margin: 0;
  font-size: 0.8rem;
  color: #aaa;
}
.footer-disclaimer a {
  color: #f0a500;
  text-decoration: none;
}
.footer-disclaimer a:hover {
  text-decoration: underline;
}
@media (min-width: 768px) {
  .footer-row {
    flex-wrap: nowrap;
  }
  .footer-brand {
    flex: 0 0 auto;
    margin-bottom: 0;
  }
  .footer-nav ul {
    justify-content: flex-end;
  }
}

.cookie-cv5 {
        position: fixed;
        inset: auto 0 0 0;
        z-index: 1200;
        background: linear-gradient(90deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    }

    .cookie-cv5__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 10px var(--space-x);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

    .cookie-cv5__inner p {
        margin: 0;
    }

    .cookie-cv5__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv5__actions button {
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.12);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 7px 10px;
        cursor: pointer;
    }

    .cookie-cv5__actions button[data-choice='accept'] {
        background: var(--neutral-0);
        color: var(--fg-on-page);
    }

.support-cv2 {
        padding: clamp(56px, 7vw, 96px) clamp(16px, 4vw, 36px);
        background: linear-gradient(140deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
    }

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

    .support-cv2__box {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: var(--gap);
        border-radius: var(--radius-xl);
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.12);
        padding: 16px;
    }

    .support-cv2__box h2 {
        margin: 0;
        font-size: clamp(26px, 4vw, 40px);
    }

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

    .support-cv2__box a {
        text-decoration: none;
        white-space: nowrap;
        padding: 10px 16px;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .support-cv2__box {
            flex-direction: column;
            align-items: flex-start;
        }
    }

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

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

    .faq-layout-c .section-head {
        margin-bottom: 16px;
    }

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

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

    .faq-layout-c .faq-list {
        margin: 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 12px;
        counter-reset: faq;
    }

    .faq-layout-c .row {
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        overflow: hidden;
    }

    .faq-layout-c .q {
        width: 100%;
        border: 0;
        background: transparent;
        text-align: left;
        padding: 12px;
        font: inherit;
        cursor: pointer;
    }

    .faq-layout-c .q span {
        display: inline-block;
        min-width: 50px;
        color: var(--brand);
        font-weight: 700;
    }

    .faq-layout-c .a {
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease);
    }

    .faq-layout-c .a p {
        margin: 0;
        padding: 0 12px 12px;
        color: var(--neutral-600);
    }

    .faq-layout-c .row.open .a {
        max-height: 240px;
    }

.site-header {
  position: relative;
  background: var(--surface-1, #ffffff);
  box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.1));
  padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
  z-index: 100;
}

.header-inner {
  max-width: var(--max-w, 1200px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap, 1rem);
}

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

.burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 40px;
  height: 40px;
  background: var(--btn-ghost-bg, transparent);
  border: 1px solid var(--border-on-surface, #d1d5db);
  border-radius: var(--radius-md, 8px);
  cursor: pointer;
  padding: 8px;
  transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
}

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

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

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

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

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

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

.nav-menu.open {
  max-height: 400px;
  padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
}

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

.nav-list a {
  display: block;
  padding: 0.5rem 0;
  color: var(--fg-on-surface, #1f2937);
  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, #e5e7eb);
  transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
}

.nav-list a:hover,
.nav-list a:focus-visible {
  color: var(--brand, #2563eb);
}

.nav-list li:last-child a {
  border-bottom: none;
}

@media (min-width: 768px) {
  .site-header {
    padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
  }

  .burger {
    display: flex;
  }

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

  .nav-menu.open {
    max-height: 400px;
    padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
  }

  .nav-list {
    flex-direction: column;
    gap: var(--gap, 0.75rem);
  }

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

  .nav-list li:last-child a {
    border-bottom: none;
  }
}

footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1rem;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
  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;
  margin-bottom: 1.5rem;
}
.footer-row:last-child {
  margin-bottom: 0;
}
.footer-brand {
  flex: 1 1 100%;
  margin-bottom: 1rem;
}
.footer-logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #f0a500;
  text-decoration: none;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-nav a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #f0a500;
}
.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-contact li {
  margin-bottom: 0.3rem;
}
.footer-contact a {
  color: #e0e0e0;
  text-decoration: none;
}
.footer-contact a:hover {
  color: #f0a500;
}
.footer-bottom {
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 1rem;
}
.footer-copy {
  margin: 0 0 0.5rem 0;
  font-size: 0.85rem;
}
.footer-disclaimer {
  margin: 0;
  font-size: 0.8rem;
  color: #aaa;
}
.footer-disclaimer a {
  color: #f0a500;
  text-decoration: none;
}
.footer-disclaimer a:hover {
  text-decoration: underline;
}
@media (min-width: 768px) {
  .footer-row {
    flex-wrap: nowrap;
  }
  .footer-brand {
    flex: 0 0 auto;
    margin-bottom: 0;
  }
  .footer-nav ul {
    justify-content: flex-end;
  }
}

.cookie-cv5 {
        position: fixed;
        inset: auto 0 0 0;
        z-index: 1200;
        background: linear-gradient(90deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    }

    .cookie-cv5__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 10px var(--space-x);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

    .cookie-cv5__inner p {
        margin: 0;
    }

    .cookie-cv5__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv5__actions button {
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.12);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 7px 10px;
        cursor: pointer;
    }

    .cookie-cv5__actions button[data-choice='accept'] {
        background: var(--neutral-0);
        color: var(--fg-on-page);
    }

.support-cv2 {
        padding: clamp(56px, 7vw, 96px) clamp(16px, 4vw, 36px);
        background: linear-gradient(140deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
    }

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

    .support-cv2__box {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: var(--gap);
        border-radius: var(--radius-xl);
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.12);
        padding: 16px;
    }

    .support-cv2__box h2 {
        margin: 0;
        font-size: clamp(26px, 4vw, 40px);
    }

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

    .support-cv2__box a {
        text-decoration: none;
        white-space: nowrap;
        padding: 10px 16px;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .support-cv2__box {
            flex-direction: column;
            align-items: flex-start;
        }
    }

body{margin:0;padding:0;font-family:var(--font-family);font-size:var(--font-size-base);line-height:var(--line-height-base);box-sizing:border-box;background:var(--bg-page);color:var(--fg-on-page)}
*{box-sizing:border-box;}
.frm-lx2{padding:calc(var(--space-y)*2.9) var(--space-x)}
.frm-lx2 .frm-shell{max-width:var(--max-w);margin:0 auto;display:grid;grid-template-columns:.9fr 1.1fr;gap:var(--gap)}
.frm-lx2 .frm-intro{padding:1rem;border-radius:var(--radius-lg);background:var(--surface-2);border:1px solid var(--border-on-surface)}
.frm-lx2 h2{margin:0;font-size:clamp(1.85rem,3.5vw,2.65rem)}
.frm-lx2 .frm-intro p{margin:.45rem 0 0;color:var(--fg-on-surface-light)}
.frm-lx2 .frm-panel{padding:1.1rem;border:1px solid var(--border-on-surface);border-radius:var(--radius-xl);background:var(--surface-1);box-shadow:var(--shadow-md);display:grid;gap:.75rem}
.frm-lx2 .frm-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.62rem}
.frm-lx2 label{display:grid;gap:.28rem}
.frm-lx2 span{font-size:.84rem;font-weight:700;color:var(--fg-on-surface-light)}
.frm-lx2 input,.frm-lx2 textarea{width:100%;padding:.78rem .82rem;border:1px solid var(--border-on-surface-light);border-radius:var(--radius-md);background:var(--surface-1);color:var(--fg-on-surface);font:inherit;outline:none;transition:border-color var(--anim-duration) var(--anim-ease),box-shadow var(--anim-duration) var(--anim-ease)}
.frm-lx2 input:focus,.frm-lx2 textarea:focus{border-color:var(--ring);box-shadow:0 0 0 3px color-mix(in srgb,var(--ring) 20%, transparent)}
.frm-lx2 textarea{min-height:128px;resize:vertical}
.frm-lx2 button{justify-self:start;padding:.82rem 1.1rem;border:0;border-radius:var(--radius-md);background:var(--bg-primary);color:var(--fg-on-primary);font-weight:700;cursor:pointer}
.frm-lx2 button:hover{background:var(--bg-primary-hover)}
@media (max-width:920px){.frm-lx2 .frm-shell,.frm-lx2 .frm-grid{grid-template-columns:1fr}}

body{margin:0;padding:0;font-family:var(--font-family);box-sizing:border-box;}
*{box-sizing:border-box;}
.contacts-u5{padding:calc(var(--space-y)*2.9) var(--space-x);background:var(--neutral-900);color:var(--neutral-0)} .contacts-u5 .shell{max-width:var(--max-w);margin:0 auto;display:grid;gap:var(--gap)} .contacts-u5 h2{margin:0;font-size:clamp(1.85rem,3.6vw,2.8rem);line-height:1.1} .contacts-u5 .sub{margin:.35rem 0 0;opacity:.9;} .contacts-u5 article,.contacts-u5 li{padding:.85rem;border-radius:var(--radius-sm);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);list-style:none} .contacts-u5 p{margin:0} .contacts-u5 a{text-decoration:none;color:inherit;font-weight:700} .contacts-u5 .ranks{counter-reset:r;display:grid;gap:.5rem} .contacts-u5 .ranks article{position:relative;padding-left:2.2rem} .contacts-u5 .ranks article::before{counter-increment:r;content:counter(r);position:absolute;left:.7rem;top:.8rem;width:1.2rem;height:1.2rem;border-radius:50%;display:grid;place-items:center;background:var(--bg-primary);color:var(--fg-on-primary);font-size:.72rem} @media (max-width:860px){.contacts-u5 .split,.contacts-u5 .media,.contacts-u5 .grid,.contacts-u5 .cards,.contacts-u5 .bento,.contacts-u5 .foot{grid-template-columns:1fr}}

.site-header {
  position: relative;
  background: var(--surface-1, #ffffff);
  box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.1));
  padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
  z-index: 100;
}

.header-inner {
  max-width: var(--max-w, 1200px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap, 1rem);
}

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

.burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 40px;
  height: 40px;
  background: var(--btn-ghost-bg, transparent);
  border: 1px solid var(--border-on-surface, #d1d5db);
  border-radius: var(--radius-md, 8px);
  cursor: pointer;
  padding: 8px;
  transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
}

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

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

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

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

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

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

.nav-menu.open {
  max-height: 400px;
  padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
}

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

.nav-list a {
  display: block;
  padding: 0.5rem 0;
  color: var(--fg-on-surface, #1f2937);
  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, #e5e7eb);
  transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
}

.nav-list a:hover,
.nav-list a:focus-visible {
  color: var(--brand, #2563eb);
}

.nav-list li:last-child a {
  border-bottom: none;
}

@media (min-width: 768px) {
  .site-header {
    padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
  }

  .burger {
    display: flex;
  }

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

  .nav-menu.open {
    max-height: 400px;
    padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
  }

  .nav-list {
    flex-direction: column;
    gap: var(--gap, 0.75rem);
  }

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

  .nav-list li:last-child a {
    border-bottom: none;
  }
}

footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1rem;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
  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;
  margin-bottom: 1.5rem;
}
.footer-row:last-child {
  margin-bottom: 0;
}
.footer-brand {
  flex: 1 1 100%;
  margin-bottom: 1rem;
}
.footer-logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #f0a500;
  text-decoration: none;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-nav a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #f0a500;
}
.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-contact li {
  margin-bottom: 0.3rem;
}
.footer-contact a {
  color: #e0e0e0;
  text-decoration: none;
}
.footer-contact a:hover {
  color: #f0a500;
}
.footer-bottom {
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 1rem;
}
.footer-copy {
  margin: 0 0 0.5rem 0;
  font-size: 0.85rem;
}
.footer-disclaimer {
  margin: 0;
  font-size: 0.8rem;
  color: #aaa;
}
.footer-disclaimer a {
  color: #f0a500;
  text-decoration: none;
}
.footer-disclaimer a:hover {
  text-decoration: underline;
}
@media (min-width: 768px) {
  .footer-row {
    flex-wrap: nowrap;
  }
  .footer-brand {
    flex: 0 0 auto;
    margin-bottom: 0;
  }
  .footer-nav ul {
    justify-content: flex-end;
  }
}

.cookie-cv5 {
        position: fixed;
        inset: auto 0 0 0;
        z-index: 1200;
        background: linear-gradient(90deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    }

    .cookie-cv5__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 10px var(--space-x);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

    .cookie-cv5__inner p {
        margin: 0;
    }

    .cookie-cv5__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv5__actions button {
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.12);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 7px 10px;
        cursor: pointer;
    }

    .cookie-cv5__actions button[data-choice='accept'] {
        background: var(--neutral-0);
        color: var(--fg-on-page);
    }

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

.site-header {
  position: relative;
  background: var(--surface-1, #ffffff);
  box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.1));
  padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
  z-index: 100;
}

.header-inner {
  max-width: var(--max-w, 1200px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap, 1rem);
}

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

.burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 40px;
  height: 40px;
  background: var(--btn-ghost-bg, transparent);
  border: 1px solid var(--border-on-surface, #d1d5db);
  border-radius: var(--radius-md, 8px);
  cursor: pointer;
  padding: 8px;
  transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
}

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

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

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

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

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

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

.nav-menu.open {
  max-height: 400px;
  padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
}

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

.nav-list a {
  display: block;
  padding: 0.5rem 0;
  color: var(--fg-on-surface, #1f2937);
  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, #e5e7eb);
  transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
}

.nav-list a:hover,
.nav-list a:focus-visible {
  color: var(--brand, #2563eb);
}

.nav-list li:last-child a {
  border-bottom: none;
}

@media (min-width: 768px) {
  .site-header {
    padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
  }

  .burger {
    display: flex;
  }

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

  .nav-menu.open {
    max-height: 400px;
    padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
  }

  .nav-list {
    flex-direction: column;
    gap: var(--gap, 0.75rem);
  }

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

  .nav-list li:last-child a {
    border-bottom: none;
  }
}

footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1rem;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
  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;
  margin-bottom: 1.5rem;
}
.footer-row:last-child {
  margin-bottom: 0;
}
.footer-brand {
  flex: 1 1 100%;
  margin-bottom: 1rem;
}
.footer-logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #f0a500;
  text-decoration: none;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-nav a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #f0a500;
}
.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-contact li {
  margin-bottom: 0.3rem;
}
.footer-contact a {
  color: #e0e0e0;
  text-decoration: none;
}
.footer-contact a:hover {
  color: #f0a500;
}
.footer-bottom {
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 1rem;
}
.footer-copy {
  margin: 0 0 0.5rem 0;
  font-size: 0.85rem;
}
.footer-disclaimer {
  margin: 0;
  font-size: 0.8rem;
  color: #aaa;
}
.footer-disclaimer a {
  color: #f0a500;
  text-decoration: none;
}
.footer-disclaimer a:hover {
  text-decoration: underline;
}
@media (min-width: 768px) {
  .footer-row {
    flex-wrap: nowrap;
  }
  .footer-brand {
    flex: 0 0 auto;
    margin-bottom: 0;
  }
  .footer-nav ul {
    justify-content: flex-end;
  }
}

.cookie-cv5 {
        position: fixed;
        inset: auto 0 0 0;
        z-index: 1200;
        background: linear-gradient(90deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    }

    .cookie-cv5__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 10px var(--space-x);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

    .cookie-cv5__inner p {
        margin: 0;
    }

    .cookie-cv5__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv5__actions button {
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.12);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 7px 10px;
        cursor: pointer;
    }

    .cookie-cv5__actions button[data-choice='accept'] {
        background: var(--neutral-0);
        color: var(--fg-on-page);
    }

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

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

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

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

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

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

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

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

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

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

.site-header {
  position: relative;
  background: var(--surface-1, #ffffff);
  box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.1));
  padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
  z-index: 100;
}

.header-inner {
  max-width: var(--max-w, 1200px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap, 1rem);
}

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

.burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 40px;
  height: 40px;
  background: var(--btn-ghost-bg, transparent);
  border: 1px solid var(--border-on-surface, #d1d5db);
  border-radius: var(--radius-md, 8px);
  cursor: pointer;
  padding: 8px;
  transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
}

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

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

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

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

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

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

.nav-menu.open {
  max-height: 400px;
  padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
}

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

.nav-list a {
  display: block;
  padding: 0.5rem 0;
  color: var(--fg-on-surface, #1f2937);
  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, #e5e7eb);
  transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
}

.nav-list a:hover,
.nav-list a:focus-visible {
  color: var(--brand, #2563eb);
}

.nav-list li:last-child a {
  border-bottom: none;
}

@media (min-width: 768px) {
  .site-header {
    padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
  }

  .burger {
    display: flex;
  }

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

  .nav-menu.open {
    max-height: 400px;
    padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
  }

  .nav-list {
    flex-direction: column;
    gap: var(--gap, 0.75rem);
  }

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

  .nav-list li:last-child a {
    border-bottom: none;
  }
}

footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1rem;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
  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;
  margin-bottom: 1.5rem;
}
.footer-row:last-child {
  margin-bottom: 0;
}
.footer-brand {
  flex: 1 1 100%;
  margin-bottom: 1rem;
}
.footer-logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #f0a500;
  text-decoration: none;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-nav a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #f0a500;
}
.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-contact li {
  margin-bottom: 0.3rem;
}
.footer-contact a {
  color: #e0e0e0;
  text-decoration: none;
}
.footer-contact a:hover {
  color: #f0a500;
}
.footer-bottom {
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 1rem;
}
.footer-copy {
  margin: 0 0 0.5rem 0;
  font-size: 0.85rem;
}
.footer-disclaimer {
  margin: 0;
  font-size: 0.8rem;
  color: #aaa;
}
.footer-disclaimer a {
  color: #f0a500;
  text-decoration: none;
}
.footer-disclaimer a:hover {
  text-decoration: underline;
}
@media (min-width: 768px) {
  .footer-row {
    flex-wrap: nowrap;
  }
  .footer-brand {
    flex: 0 0 auto;
    margin-bottom: 0;
  }
  .footer-nav ul {
    justify-content: flex-end;
  }
}

.cookie-cv5 {
        position: fixed;
        inset: auto 0 0 0;
        z-index: 1200;
        background: linear-gradient(90deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    }

    .cookie-cv5__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 10px var(--space-x);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

    .cookie-cv5__inner p {
        margin: 0;
    }

    .cookie-cv5__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv5__actions button {
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.12);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 7px 10px;
        cursor: pointer;
    }

    .cookie-cv5__actions button[data-choice='accept'] {
        background: var(--neutral-0);
        color: var(--fg-on-page);
    }

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

.site-header {
  position: relative;
  background: var(--surface-1, #ffffff);
  box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.1));
  padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
  z-index: 100;
}

.header-inner {
  max-width: var(--max-w, 1200px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap, 1rem);
}

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

.burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 40px;
  height: 40px;
  background: var(--btn-ghost-bg, transparent);
  border: 1px solid var(--border-on-surface, #d1d5db);
  border-radius: var(--radius-md, 8px);
  cursor: pointer;
  padding: 8px;
  transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
}

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

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

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

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

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

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

.nav-menu.open {
  max-height: 400px;
  padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
}

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

.nav-list a {
  display: block;
  padding: 0.5rem 0;
  color: var(--fg-on-surface, #1f2937);
  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, #e5e7eb);
  transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
}

.nav-list a:hover,
.nav-list a:focus-visible {
  color: var(--brand, #2563eb);
}

.nav-list li:last-child a {
  border-bottom: none;
}

@media (min-width: 768px) {
  .site-header {
    padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
  }

  .burger {
    display: flex;
  }

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

  .nav-menu.open {
    max-height: 400px;
    padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
  }

  .nav-list {
    flex-direction: column;
    gap: var(--gap, 0.75rem);
  }

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

  .nav-list li:last-child a {
    border-bottom: none;
  }
}

footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1rem;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
  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;
  margin-bottom: 1.5rem;
}
.footer-row:last-child {
  margin-bottom: 0;
}
.footer-brand {
  flex: 1 1 100%;
  margin-bottom: 1rem;
}
.footer-logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #f0a500;
  text-decoration: none;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-nav a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #f0a500;
}
.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-contact li {
  margin-bottom: 0.3rem;
}
.footer-contact a {
  color: #e0e0e0;
  text-decoration: none;
}
.footer-contact a:hover {
  color: #f0a500;
}
.footer-bottom {
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 1rem;
}
.footer-copy {
  margin: 0 0 0.5rem 0;
  font-size: 0.85rem;
}
.footer-disclaimer {
  margin: 0;
  font-size: 0.8rem;
  color: #aaa;
}
.footer-disclaimer a {
  color: #f0a500;
  text-decoration: none;
}
.footer-disclaimer a:hover {
  text-decoration: underline;
}
@media (min-width: 768px) {
  .footer-row {
    flex-wrap: nowrap;
  }
  .footer-brand {
    flex: 0 0 auto;
    margin-bottom: 0;
  }
  .footer-nav ul {
    justify-content: flex-end;
  }
}

.cookie-cv5 {
        position: fixed;
        inset: auto 0 0 0;
        z-index: 1200;
        background: linear-gradient(90deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    }

    .cookie-cv5__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 10px var(--space-x);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

    .cookie-cv5__inner p {
        margin: 0;
    }

    .cookie-cv5__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv5__actions button {
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.12);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 7px 10px;
        cursor: pointer;
    }

    .cookie-cv5__actions button[data-choice='accept'] {
        background: var(--neutral-0);
        color: var(--fg-on-page);
    }

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

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

    .err-slab-f .chip::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 6px;
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        background: var(--gradient-accent);
    }

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

    .err-slab-f p {
        margin: 12px 0 0;
        color: var(--neutral-600);
    }

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