:root {
  --font-family: "Montserrat", sans-serif;
  --font-size-base: 18.4px;
  --line-height-base: 1.3;

  --max-w: 1140px;
  --space-x: 1.22rem;
  --space-y: 1.18rem;
  --gap: 1.28rem;

  --radius-xl: 1.29rem;
  --radius-lg: 0.96rem;
  --radius-md: 0.64rem;
  --radius-sm: 0.32rem;

  --shadow-sm: 0 3px 8px rgba(0,0,0,0.22);
  --shadow-md: 0 8px 26px rgba(0,0,0,0.28);
  --shadow-lg: 0 34px 64px rgba(0,0,0,0.34);

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

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

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

  --bg-page: #FFFFFF;
  --fg-on-page: #111827;

  --bg-alt: #F0F4F8;
  --fg-on-alt: #1E3A5F;

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

  --surface-light: #FFFFFF;
  --fg-on-surface-light: #111827;
  --border-on-surface-light: #E5E7EB;

  --bg-primary: #1E3A5F;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #152B47;
  --ring: #E67E22;

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

  --link: #1E3A5F;
  --link-hover: #E67E22;

  --gradient-hero: linear-gradient(135deg, #1E3A5F 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);
  box-shadow: var(--shadow-sm);
  padding: var(--space-y) var(--space-x);
  max-width: var(--max-w);
  margin: 0 auto;
}

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

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

.burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: var(--btn-ghost-bg);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 8px;
  transition: background var(--anim-duration) var(--anim-ease);
}

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

.burger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--fg-on-surface);
  border-radius: 2px;
  transition: all var(--anim-duration) var(--anim-ease);
}

.burger.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.burger.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--surface-1);
  box-shadow: var(--shadow-md);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--anim-duration) var(--anim-ease);
  z-index: 100;
}

.nav-menu.open {
  max-height: 400px;
}

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

.nav-link {
  display: block;
  padding: 8px 12px;
  color: var(--fg-on-surface);
  text-decoration: none;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  border-radius: var(--radius-sm);
  transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

.nav-link:hover {
  background: var(--bg-primary-hover);
  color: var(--fg-on-primary);
}

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

  .header-inner {
    width: auto;
  }

  .burger {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 0;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
  }

  .nav-menu.open {
    max-height: 400px;
  }

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

.site-footer {
  background: #1a1a2e;
  color: #e0e0e0;
  padding: 2.5rem 1.5rem 1.5rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}
.footer-brand {
  text-align: center;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 1px;
}
.footer-logo:hover {
  color: #4fc3f7;
}
.footer-tagline {
  margin: 0.3rem 0 0;
  font-size: 0.85rem;
  color: #b0b0b0;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
}
.footer-nav a {
  color: #c0c0c0;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #4fc3f7;
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
}
.footer-legal a {
  color: #a0a0a0;
  text-decoration: none;
  font-size: 0.85rem;
}
.footer-legal a:hover {
  color: #4fc3f7;
}
.footer-contact {
  font-style: normal;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.footer-contact a {
  color: #c0c0c0;
  text-decoration: none;
}
.footer-contact a:hover {
  color: #4fc3f7;
}
.footer-social {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
}
.footer-social a {
  color: #a0a0a0;
  text-decoration: none;
  font-size: 0.85rem;
}
.footer-social a:hover {
  color: #4fc3f7;
}
.footer-disclaimer {
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 1rem;
  margin-top: 0.5rem;
}
.footer-disclaimer p {
  margin: 0;
  font-size: 0.8rem;
  color: #888;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 1.5rem 2rem;
  }
  .footer-brand {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    text-align: left;
  }
  .footer-nav {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    justify-self: end;
  }
  .footer-nav ul {
    justify-content: flex-end;
  }
  .footer-legal {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    justify-content: flex-start;
  }
  .footer-contact {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    text-align: right;
  }
  .footer-social {
    grid-column: 1 / 3;
    grid-row: 3 / 4;
    justify-content: flex-start;
  }
  .footer-disclaimer {
    grid-column: 1 / 3;
    grid-row: 4 / 5;
  }
}
@media (min-width: 1024px) {
  .footer-container {
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: auto auto;
    gap: 1.5rem 2rem;
  }
  .footer-brand {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
  }
  .footer-nav {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    align-self: center;
  }
  .footer-legal {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
  }
  .footer-contact {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
    text-align: right;
    align-self: center;
  }
  .footer-social {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    justify-content: center;
  }
  .footer-disclaimer {
    grid-column: 1 / 4;
    grid-row: 3 / 4;
  }
}

.cookie-lv14 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .cookie-lv14__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * 0.8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .cookie-lv14__text {
        flex: 1 1 420px;
    }

    .cookie-lv14__badge {
        display: inline-flex;
        align-items: center;
        padding: 3px 8px;
        border-radius: 999px;
        font-size: 12px;
        font-weight: 700;
        margin-bottom: 6px;
        background: var(--surface-2);
        color: var(--fg-muted);
    }

    .cookie-lv14__text strong {
        display: block;
        margin-bottom: 4px;
        color: var(--fg-on-surface);
    }

    .cookie-lv14__text p {
        margin: 0;
        color: var(--fg-muted);
    }

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

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

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

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

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

    .next-ux15 {
        padding: clamp(3.3rem, 7vw, 6rem) var(--space-x);
        background: var(--gradient-accent);
        color: var(--fg-on-primary);
    }

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

    .next-ux15__mast {
        display: flex;
        justify-content: space-between;
        align-items: end;
        gap: 1rem;
        flex-wrap: wrap;
        margin-bottom: 1.1rem;
    }

    .next-ux15__mast p {
        margin: 0;
        color: rgba(255, 255, 255, 0.82);
    }

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

    .next-ux15__mast a {
        display: inline-flex;
        min-height: 2.85rem;
        align-items: center;
        justify-content: center;
        padding: 0 1rem;
        border-radius: var(--radius-md);
        text-decoration: none;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

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

    .next-ux15__list article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: rgba(255, 255, 255, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .next-ux15__list i {
        font-style: normal;
        display: inline-flex;
        width: 2.3rem;
        height: 2.3rem;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(255, 255, 255, .16);
    }

    .next-ux15__list h3 {
        margin: .8rem 0 .35rem;
        font-size: 1.04rem;
    }

    .next-ux15__list p {
        margin: 0;
        color: rgba(255, 255, 255, 0.82);
    }

    .next-ux15__list a {
        display: inline-block;
        margin-top: .75rem;
        color: var(--bg-accent);
        text-decoration: none;
        font-weight: 600;
    }

    /* macro-bg:next-ux15__wrap */
    .next-ux15 {
        overflow: hidden;
    }

    .next-ux15__wrap {
        background-image: linear-gradient(rgba(0, 0, 0, .88), rgba(17, 24, 39, .88)), url('https://images.pexels.com/photos/3183150/pexels-photo-3183150.jpeg?auto=compress&cs=tinysrgb&w=800');
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        border-radius: var(--radius-xl);
        overflow: hidden;
        padding: var(--space-y);
    }

.education-struct-light-v14 {
    padding: calc(var(--space-y) * 2) var(--space-x);
    background: var(--neutral-0);
    color: var(--neutral-900);
}

.education-struct-light-v14__shell {
    max-width: var(--max-w);
    margin: 0 auto;
}

.education-struct-light-v14__tiers {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--gap);
}

.education-struct-light-v14 article {
    display: grid;
    gap: .55rem;
    background: var(--neutral-100);
    border: 1px solid var(--neutral-300);
    border-radius: var(--radius-lg);
    padding: .9rem;
}

.education-struct-light-v14 h3,
.education-struct-light-v14 p {
    margin: 0;
}

.education-struct-light-v14 p {
    color: var(--neutral-800);
}

.education-struct-light-v14 a {
    display: inline-flex;
    min-height: 2.3rem;
    padding: 0 .8rem;
    align-items: center;
    border-radius: var(--radius-sm);
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    border: 1px solid var(--ring);
    text-decoration: none;
    width: fit-content;
}

@media (max-width: 900px) {
    .education-struct-light-v14__tiers {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 680px) {
    .education-struct-light-v14__tiers {
        grid-template-columns: 1fr;
    }
}

.visual-path-c3 {
        padding: clamp(3.5rem, 8vw, 6rem) var(--space-x);
        background: var(--gradient-accent);
        color: var(--fg-on-primary);
    }

    .visual-path-c3__wrap {
        max-width: 62rem;
        margin: 0 auto;
    }

    .visual-path-c3__head {
        margin-bottom: 1rem;
    }

    .visual-path-c3__head p {
        margin: 0;
        color: rgba(255, 255, 255, .76);
        font-size: .82rem;
        text-transform: uppercase;
        letter-spacing: .1em;
    }

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

    .visual-path-c3__list {
        display: grid;
        gap: .8rem;
    }

    .visual-path-c3__list article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .visual-path-c3__meta {
        display: flex;
        justify-content: space-between;
        gap: .75rem;
        align-items: center;
        margin-bottom: .8rem;
    }

    .visual-path-c3__meta span {
        color: rgba(255, 255, 255, .78);
    }

    .visual-path-c3__content {
        display: grid;
        grid-template-columns: 13rem 1fr;
        gap: 1rem;
        align-items: center;
    }

    .visual-path-c3__content img {
        display: block;
        width: 100%;
        height: 10rem;
        object-fit: cover;
        border-radius: var(--radius-md);
    }

    .visual-path-c3__content small {
        color: rgba(255, 255, 255, .76);
    }

    .visual-path-c3__content h3 {
        margin: .45rem 0 .35rem;
    }

    .visual-path-c3__content p {
        margin: 0;
        color: rgba(255, 255, 255, .84);
    }

    @media (max-width: 680px) {
        .visual-path-c3__content {
            grid-template-columns: 1fr;
        }
    }

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

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

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

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

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

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

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

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

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

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

.site-header {
  position: relative;
  background: var(--surface-1);
  box-shadow: var(--shadow-sm);
  padding: var(--space-y) var(--space-x);
  max-width: var(--max-w);
  margin: 0 auto;
}

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

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

.burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: var(--btn-ghost-bg);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 8px;
  transition: background var(--anim-duration) var(--anim-ease);
}

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

.burger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--fg-on-surface);
  border-radius: 2px;
  transition: all var(--anim-duration) var(--anim-ease);
}

.burger.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.burger.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--surface-1);
  box-shadow: var(--shadow-md);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--anim-duration) var(--anim-ease);
  z-index: 100;
}

.nav-menu.open {
  max-height: 400px;
}

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

.nav-link {
  display: block;
  padding: 8px 12px;
  color: var(--fg-on-surface);
  text-decoration: none;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  border-radius: var(--radius-sm);
  transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

.nav-link:hover {
  background: var(--bg-primary-hover);
  color: var(--fg-on-primary);
}

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

  .header-inner {
    width: auto;
  }

  .burger {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 0;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
  }

  .nav-menu.open {
    max-height: 400px;
  }

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

.site-footer {
  background: #1a1a2e;
  color: #e0e0e0;
  padding: 2.5rem 1.5rem 1.5rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}
.footer-brand {
  text-align: center;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 1px;
}
.footer-logo:hover {
  color: #4fc3f7;
}
.footer-tagline {
  margin: 0.3rem 0 0;
  font-size: 0.85rem;
  color: #b0b0b0;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
}
.footer-nav a {
  color: #c0c0c0;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #4fc3f7;
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
}
.footer-legal a {
  color: #a0a0a0;
  text-decoration: none;
  font-size: 0.85rem;
}
.footer-legal a:hover {
  color: #4fc3f7;
}
.footer-contact {
  font-style: normal;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.footer-contact a {
  color: #c0c0c0;
  text-decoration: none;
}
.footer-contact a:hover {
  color: #4fc3f7;
}
.footer-social {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
}
.footer-social a {
  color: #a0a0a0;
  text-decoration: none;
  font-size: 0.85rem;
}
.footer-social a:hover {
  color: #4fc3f7;
}
.footer-disclaimer {
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 1rem;
  margin-top: 0.5rem;
}
.footer-disclaimer p {
  margin: 0;
  font-size: 0.8rem;
  color: #888;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 1.5rem 2rem;
  }
  .footer-brand {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    text-align: left;
  }
  .footer-nav {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    justify-self: end;
  }
  .footer-nav ul {
    justify-content: flex-end;
  }
  .footer-legal {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    justify-content: flex-start;
  }
  .footer-contact {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    text-align: right;
  }
  .footer-social {
    grid-column: 1 / 3;
    grid-row: 3 / 4;
    justify-content: flex-start;
  }
  .footer-disclaimer {
    grid-column: 1 / 3;
    grid-row: 4 / 5;
  }
}
@media (min-width: 1024px) {
  .footer-container {
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: auto auto;
    gap: 1.5rem 2rem;
  }
  .footer-brand {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
  }
  .footer-nav {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    align-self: center;
  }
  .footer-legal {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
  }
  .footer-contact {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
    text-align: right;
    align-self: center;
  }
  .footer-social {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    justify-content: center;
  }
  .footer-disclaimer {
    grid-column: 1 / 4;
    grid-row: 3 / 4;
  }
}

.cookie-lv14 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .cookie-lv14__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * 0.8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .cookie-lv14__text {
        flex: 1 1 420px;
    }

    .cookie-lv14__badge {
        display: inline-flex;
        align-items: center;
        padding: 3px 8px;
        border-radius: 999px;
        font-size: 12px;
        font-weight: 700;
        margin-bottom: 6px;
        background: var(--surface-2);
        color: var(--fg-muted);
    }

    .cookie-lv14__text strong {
        display: block;
        margin-bottom: 4px;
        color: var(--fg-on-surface);
    }

    .cookie-lv14__text p {
        margin: 0;
        color: var(--fg-muted);
    }

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

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

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

.partners {

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

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

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

    .partners .partners__header h2 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 0.5rem;
        color: var(--fg-on-alt);
    }

    .partners .partners__header p {
        font-size: clamp(16px, 2vw, 18px);
        color: var(--neutral-600);
        margin: 0;
    }

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

    .partners .partners__item {
        text-align: center;
        padding: clamp(24px, 4vw, 32px);
        background: var(--bg-page);
        border-radius: var(--radius-lg);
    }

    .partners .partners__logo {
        width: 100%;
        height: 120px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: clamp(16px, 3vw, 24px);
    }

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

    .partners .partners__item h3 {
        font-size: clamp(18px, 3vw, 22px);
        margin: 0 0 0.75rem;
        color: var(--fg-on-page);
    }

    .partners .partners__item p {
        font-size: clamp(14px, 2vw, 16px);
        line-height: 1.6;
        color: var(--neutral-600);
        margin: 0;
    }

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

    .identity-lv2 {
        padding: clamp(50px, 7vw, 90px) clamp(16px, 4vw, 36px);
        background: var(--neutral-100);
        color: var(--neutral-900);
    }

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

    .identity-lv2__head {
        text-align: center;
        margin-bottom: 16px;
    }

    .identity-lv2__head p {
        margin: 0;
        color: var(--neutral-600);
    }

    .identity-lv2__head h2 {
        margin: 7px 0 0;
        font-size: clamp(28px, 4vw, 44px);
    }

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

    .identity-lv2__grid article {
        border: 1px solid var(--neutral-300);
        border-radius: var(--radius-lg);
        background: var(--neutral-100);
        padding: var(--space-y) var(--space-x);
    }

    .identity-lv2__grid h3 {
        margin: 0;
    }

    .identity-lv2__grid strong {
        display: block;
        margin: 6px 0;
        color: var(--brand);
    }

    .identity-lv2__grid p {
        margin: 0 0 8px;
        color: var(--neutral-600);
    }

    .identity-lv2__grid blockquote {
        margin: 0;
        padding: 8px 10px;
        border-left: 3px solid var(--brand);
        background: var(--neutral-100);
        color: var(--neutral-800);
    }

.testimonials-struct-v6 {
        padding: calc(var(--space-y) * 2) var(--space-x);
        background: var(--neutral-900);
        color: var(--neutral-0)
    }

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

    .testimonials-struct-v6 h2, .testimonials-struct-v6 h3, .testimonials-struct-v6 p {
        margin: 0
    }

    .testimonials-struct-v6 article, .testimonials-struct-v6 blockquote, .testimonials-struct-v6 figure, .testimonials-struct-v6 .spotlight, .testimonials-struct-v6 .row {
        background: var(--neutral-800);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        padding: .85rem
    }

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

    .testimonials-struct-v6 .rail {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: .6rem
    }

    .testimonials-struct-v6 .stack {
        display: grid;
        gap: .65rem
    }

    .testimonials-struct-v6 .stack article {
        display: grid;
        grid-template-columns:3rem 1fr;
        gap: .6rem;
        align-items: center
    }

    .testimonials-struct-v6 img {
        display: block;
        width: 3rem;
        height: 3rem;
        border-radius: 50%;
        object-fit: cover
    }

    .testimonials-struct-v6 .table {
        display: grid;
        gap: .45rem
    }

    .testimonials-struct-v6 .row {
        display: grid;
        grid-template-columns:12rem 1fr;
        gap: .6rem
    }

    .testimonials-struct-v6 .wall {
        columns: 3;
        column-gap: var(--gap)
    }

    .testimonials-struct-v6 blockquote {
        break-inside: avoid;
        margin: 0 0 var(--gap) 0;
        display: grid;
        gap: .4rem
    }

    .testimonials-struct-v6 .slider {
        display: grid;
        grid-template-columns:repeat(2, minmax(0, 1fr));
        gap: var(--gap)
    }

    .testimonials-struct-v6 .dots {
        display: flex;
        justify-content: center;
        gap: .4rem
    }

    .testimonials-struct-v6 .dots span {
        padding: .25rem .45rem;
        border-radius: var(--radius-sm);
        background: var(--neutral-800);
        border: 1px solid var(--border-on-surface)
    }

    @media (max-width: 900px) {
        .testimonials-struct-v6 .grid, .testimonials-struct-v6 .rail, .testimonials-struct-v6 .slider {
            grid-template-columns:1fr 1fr
        }

        .testimonials-struct-v6 .wall {
            columns: 2
        }
    }

    @media (max-width: 680px) {
        .testimonials-struct-v6 .grid, .testimonials-struct-v6 .rail, .testimonials-struct-v6 .slider, .testimonials-struct-v6 .row {
            grid-template-columns:1fr
        }

        .testimonials-struct-v6 .wall {
            columns: 1
        }
    }

.site-header {
  position: relative;
  background: var(--surface-1);
  box-shadow: var(--shadow-sm);
  padding: var(--space-y) var(--space-x);
  max-width: var(--max-w);
  margin: 0 auto;
}

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

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

.burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: var(--btn-ghost-bg);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 8px;
  transition: background var(--anim-duration) var(--anim-ease);
}

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

.burger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--fg-on-surface);
  border-radius: 2px;
  transition: all var(--anim-duration) var(--anim-ease);
}

.burger.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.burger.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--surface-1);
  box-shadow: var(--shadow-md);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--anim-duration) var(--anim-ease);
  z-index: 100;
}

.nav-menu.open {
  max-height: 400px;
}

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

.nav-link {
  display: block;
  padding: 8px 12px;
  color: var(--fg-on-surface);
  text-decoration: none;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  border-radius: var(--radius-sm);
  transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

.nav-link:hover {
  background: var(--bg-primary-hover);
  color: var(--fg-on-primary);
}

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

  .header-inner {
    width: auto;
  }

  .burger {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 0;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
  }

  .nav-menu.open {
    max-height: 400px;
  }

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

.site-footer {
  background: #1a1a2e;
  color: #e0e0e0;
  padding: 2.5rem 1.5rem 1.5rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}
.footer-brand {
  text-align: center;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 1px;
}
.footer-logo:hover {
  color: #4fc3f7;
}
.footer-tagline {
  margin: 0.3rem 0 0;
  font-size: 0.85rem;
  color: #b0b0b0;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
}
.footer-nav a {
  color: #c0c0c0;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #4fc3f7;
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
}
.footer-legal a {
  color: #a0a0a0;
  text-decoration: none;
  font-size: 0.85rem;
}
.footer-legal a:hover {
  color: #4fc3f7;
}
.footer-contact {
  font-style: normal;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.footer-contact a {
  color: #c0c0c0;
  text-decoration: none;
}
.footer-contact a:hover {
  color: #4fc3f7;
}
.footer-social {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
}
.footer-social a {
  color: #a0a0a0;
  text-decoration: none;
  font-size: 0.85rem;
}
.footer-social a:hover {
  color: #4fc3f7;
}
.footer-disclaimer {
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 1rem;
  margin-top: 0.5rem;
}
.footer-disclaimer p {
  margin: 0;
  font-size: 0.8rem;
  color: #888;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 1.5rem 2rem;
  }
  .footer-brand {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    text-align: left;
  }
  .footer-nav {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    justify-self: end;
  }
  .footer-nav ul {
    justify-content: flex-end;
  }
  .footer-legal {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    justify-content: flex-start;
  }
  .footer-contact {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    text-align: right;
  }
  .footer-social {
    grid-column: 1 / 3;
    grid-row: 3 / 4;
    justify-content: flex-start;
  }
  .footer-disclaimer {
    grid-column: 1 / 3;
    grid-row: 4 / 5;
  }
}
@media (min-width: 1024px) {
  .footer-container {
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: auto auto;
    gap: 1.5rem 2rem;
  }
  .footer-brand {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
  }
  .footer-nav {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    align-self: center;
  }
  .footer-legal {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
  }
  .footer-contact {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
    text-align: right;
    align-self: center;
  }
  .footer-social {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    justify-content: center;
  }
  .footer-disclaimer {
    grid-column: 1 / 4;
    grid-row: 3 / 4;
  }
}

.cookie-lv14 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .cookie-lv14__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * 0.8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .cookie-lv14__text {
        flex: 1 1 420px;
    }

    .cookie-lv14__badge {
        display: inline-flex;
        align-items: center;
        padding: 3px 8px;
        border-radius: 999px;
        font-size: 12px;
        font-weight: 700;
        margin-bottom: 6px;
        background: var(--surface-2);
        color: var(--fg-muted);
    }

    .cookie-lv14__text strong {
        display: block;
        margin-bottom: 4px;
        color: var(--fg-on-surface);
    }

    .cookie-lv14__text p {
        margin: 0;
        color: var(--fg-muted);
    }

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

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

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

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

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

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

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

        transform: translateY(-18px);
    }

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

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

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

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

        transform: translateY(28px);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .hiw-ux8__track p {
        margin: 0;
    }

.features {
    padding: clamp(48px, 8vw, 80px) 0;
    color: var(--fg-on-page);
}

.features--alt {
    background-color: var(--bg-alt);
    color: var(--fg-on-alt);
}

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

.features__title {
    text-align: center;
    margin-bottom: calc(var(--space-y) * 2);
    font-size: clamp(28px, 4vw, 40px);
    color: inherit;
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: calc(var(--gap) * 1.5);
}

.features__card {
    background-color: var(--surface-1);
    padding: clamp(16px, 3vw, 32px);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--anim-duration) var(--anim-ease);
    text-align: center;
    border: 1px solid var(--border-on-surface);
}

.features__card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.features__icon {
    font-size: 2.5rem;
    color: var(--brand);
    margin-bottom: var(--space-y);
}

.features__card h3 {
    margin-bottom: var(--space-y);
    color: var(--fg-on-surface);
}

.features__card p {
    color: var(--fg-on-surface-light);
    margin: 0 auto;
}

.site-header {
  position: relative;
  background: var(--surface-1);
  box-shadow: var(--shadow-sm);
  padding: var(--space-y) var(--space-x);
  max-width: var(--max-w);
  margin: 0 auto;
}

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

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

.burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: var(--btn-ghost-bg);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 8px;
  transition: background var(--anim-duration) var(--anim-ease);
}

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

.burger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--fg-on-surface);
  border-radius: 2px;
  transition: all var(--anim-duration) var(--anim-ease);
}

.burger.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.burger.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--surface-1);
  box-shadow: var(--shadow-md);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--anim-duration) var(--anim-ease);
  z-index: 100;
}

.nav-menu.open {
  max-height: 400px;
}

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

.nav-link {
  display: block;
  padding: 8px 12px;
  color: var(--fg-on-surface);
  text-decoration: none;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  border-radius: var(--radius-sm);
  transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

.nav-link:hover {
  background: var(--bg-primary-hover);
  color: var(--fg-on-primary);
}

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

  .header-inner {
    width: auto;
  }

  .burger {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 0;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
  }

  .nav-menu.open {
    max-height: 400px;
  }

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

.site-footer {
  background: #1a1a2e;
  color: #e0e0e0;
  padding: 2.5rem 1.5rem 1.5rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}
.footer-brand {
  text-align: center;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 1px;
}
.footer-logo:hover {
  color: #4fc3f7;
}
.footer-tagline {
  margin: 0.3rem 0 0;
  font-size: 0.85rem;
  color: #b0b0b0;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
}
.footer-nav a {
  color: #c0c0c0;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #4fc3f7;
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
}
.footer-legal a {
  color: #a0a0a0;
  text-decoration: none;
  font-size: 0.85rem;
}
.footer-legal a:hover {
  color: #4fc3f7;
}
.footer-contact {
  font-style: normal;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.footer-contact a {
  color: #c0c0c0;
  text-decoration: none;
}
.footer-contact a:hover {
  color: #4fc3f7;
}
.footer-social {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
}
.footer-social a {
  color: #a0a0a0;
  text-decoration: none;
  font-size: 0.85rem;
}
.footer-social a:hover {
  color: #4fc3f7;
}
.footer-disclaimer {
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 1rem;
  margin-top: 0.5rem;
}
.footer-disclaimer p {
  margin: 0;
  font-size: 0.8rem;
  color: #888;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 1.5rem 2rem;
  }
  .footer-brand {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    text-align: left;
  }
  .footer-nav {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    justify-self: end;
  }
  .footer-nav ul {
    justify-content: flex-end;
  }
  .footer-legal {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    justify-content: flex-start;
  }
  .footer-contact {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    text-align: right;
  }
  .footer-social {
    grid-column: 1 / 3;
    grid-row: 3 / 4;
    justify-content: flex-start;
  }
  .footer-disclaimer {
    grid-column: 1 / 3;
    grid-row: 4 / 5;
  }
}
@media (min-width: 1024px) {
  .footer-container {
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: auto auto;
    gap: 1.5rem 2rem;
  }
  .footer-brand {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
  }
  .footer-nav {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    align-self: center;
  }
  .footer-legal {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
  }
  .footer-contact {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
    text-align: right;
    align-self: center;
  }
  .footer-social {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    justify-content: center;
  }
  .footer-disclaimer {
    grid-column: 1 / 4;
    grid-row: 3 / 4;
  }
}

.cookie-lv14 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .cookie-lv14__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * 0.8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .cookie-lv14__text {
        flex: 1 1 420px;
    }

    .cookie-lv14__badge {
        display: inline-flex;
        align-items: center;
        padding: 3px 8px;
        border-radius: 999px;
        font-size: 12px;
        font-weight: 700;
        margin-bottom: 6px;
        background: var(--surface-2);
        color: var(--fg-muted);
    }

    .cookie-lv14__text strong {
        display: block;
        margin-bottom: 4px;
        color: var(--fg-on-surface);
    }

    .cookie-lv14__text p {
        margin: 0;
        color: var(--fg-muted);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

.form-fresh-v1 {
        padding: calc(var(--space-y) * 2.8) var(--space-x);
        background: var(--bg-page);
        color: var(--fg-on-page);
    }

    .form-fresh-v1 .shell {
        max-width: 1000px;
        margin: 0 auto;
        display: grid;
        grid-template-columns:.9fr 1.1fr;
        gap: calc(var(--gap) * 1.4);
    }

    .form-fresh-v1 .intro h2 {
        margin: .3rem 0;
        font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    }

    .form-fresh-v1 .intro p {
        margin: 0;
        color: var(--fg-on-surface-light);
    }

    .form-fresh-v1 .form {
        display: grid;
        gap: .75rem;
        padding: 1.1rem;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
    }

    .form-fresh-v1 label {
        display: grid;
        gap: .3rem;
    }

    .form-fresh-v1 span {
        font-size: .85rem;
        color: var(--fg-on-surface-light);
    }

    .form-fresh-v1 input {
        padding: .68rem .8rem;
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-sm);
        font: inherit;
    }

    .form-fresh-v1 button {
        padding: .75rem 1rem;
        border: 0;
        border-radius: var(--radius-sm);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 700;
        cursor: pointer;
    }

    @media (max-width: 900px) {
        .form-fresh-v1 .shell {
            grid-template-columns:1fr;
        }
    }

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

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

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

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

    .contact-layout-b .section-head {
        margin-bottom: 16px;
    }

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

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

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

    .contact-layout-b .item-card {
        background: var(--surface-1);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface-light);
        padding: 16px;
        box-shadow: var(--shadow-sm);
    }

    .contact-layout-b .item-card h3 {
        margin: 0;
        color: var(--brand);
    }

    .contact-layout-b .item-card p {
        margin: 8px 0 0;
        color: var(--neutral-700, var(--neutral-600));
    }

    .contact-layout-b footer {
        margin-top: 18px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        align-items: center;
    }

    .contact-layout-b .social {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .contact-layout-b .social a {
        text-decoration: none;
        color: var(--link);
        padding: 6px 10px;
        border: 1px solid var(--border-on-surface);
        border-radius: 999px;
    }

.site-header {
  position: relative;
  background: var(--surface-1);
  box-shadow: var(--shadow-sm);
  padding: var(--space-y) var(--space-x);
  max-width: var(--max-w);
  margin: 0 auto;
}

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

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

.burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: var(--btn-ghost-bg);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 8px;
  transition: background var(--anim-duration) var(--anim-ease);
}

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

.burger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--fg-on-surface);
  border-radius: 2px;
  transition: all var(--anim-duration) var(--anim-ease);
}

.burger.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.burger.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--surface-1);
  box-shadow: var(--shadow-md);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--anim-duration) var(--anim-ease);
  z-index: 100;
}

.nav-menu.open {
  max-height: 400px;
}

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

.nav-link {
  display: block;
  padding: 8px 12px;
  color: var(--fg-on-surface);
  text-decoration: none;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  border-radius: var(--radius-sm);
  transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

.nav-link:hover {
  background: var(--bg-primary-hover);
  color: var(--fg-on-primary);
}

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

  .header-inner {
    width: auto;
  }

  .burger {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 0;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
  }

  .nav-menu.open {
    max-height: 400px;
  }

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

.site-footer {
  background: #1a1a2e;
  color: #e0e0e0;
  padding: 2.5rem 1.5rem 1.5rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}
.footer-brand {
  text-align: center;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 1px;
}
.footer-logo:hover {
  color: #4fc3f7;
}
.footer-tagline {
  margin: 0.3rem 0 0;
  font-size: 0.85rem;
  color: #b0b0b0;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
}
.footer-nav a {
  color: #c0c0c0;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #4fc3f7;
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
}
.footer-legal a {
  color: #a0a0a0;
  text-decoration: none;
  font-size: 0.85rem;
}
.footer-legal a:hover {
  color: #4fc3f7;
}
.footer-contact {
  font-style: normal;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.footer-contact a {
  color: #c0c0c0;
  text-decoration: none;
}
.footer-contact a:hover {
  color: #4fc3f7;
}
.footer-social {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
}
.footer-social a {
  color: #a0a0a0;
  text-decoration: none;
  font-size: 0.85rem;
}
.footer-social a:hover {
  color: #4fc3f7;
}
.footer-disclaimer {
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 1rem;
  margin-top: 0.5rem;
}
.footer-disclaimer p {
  margin: 0;
  font-size: 0.8rem;
  color: #888;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 1.5rem 2rem;
  }
  .footer-brand {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    text-align: left;
  }
  .footer-nav {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    justify-self: end;
  }
  .footer-nav ul {
    justify-content: flex-end;
  }
  .footer-legal {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    justify-content: flex-start;
  }
  .footer-contact {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    text-align: right;
  }
  .footer-social {
    grid-column: 1 / 3;
    grid-row: 3 / 4;
    justify-content: flex-start;
  }
  .footer-disclaimer {
    grid-column: 1 / 3;
    grid-row: 4 / 5;
  }
}
@media (min-width: 1024px) {
  .footer-container {
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: auto auto;
    gap: 1.5rem 2rem;
  }
  .footer-brand {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
  }
  .footer-nav {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    align-self: center;
  }
  .footer-legal {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
  }
  .footer-contact {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
    text-align: right;
    align-self: center;
  }
  .footer-social {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    justify-content: center;
  }
  .footer-disclaimer {
    grid-column: 1 / 4;
    grid-row: 3 / 4;
  }
}

.cookie-lv14 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .cookie-lv14__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * 0.8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .cookie-lv14__text {
        flex: 1 1 420px;
    }

    .cookie-lv14__badge {
        display: inline-flex;
        align-items: center;
        padding: 3px 8px;
        border-radius: 999px;
        font-size: 12px;
        font-weight: 700;
        margin-bottom: 6px;
        background: var(--surface-2);
        color: var(--fg-muted);
    }

    .cookie-lv14__text strong {
        display: block;
        margin-bottom: 4px;
        color: var(--fg-on-surface);
    }

    .cookie-lv14__text p {
        margin: 0;
        color: var(--fg-muted);
    }

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

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

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

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

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

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

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

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

    .policy-layout-f .rows {
        display: grid;
        gap: 10px;
    }

    .policy-layout-f article {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        padding: 12px;
        background: var(--surface-1);
    }

    .policy-layout-f .head {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .policy-layout-f .head span {
        min-width: 30px;
        height: 30px;
        display: grid;
        place-items: center;
        border-radius: 50%;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 700;
    }

    .policy-layout-f .head h3 {
        margin: 0;
    }

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

.site-header {
  position: relative;
  background: var(--surface-1);
  box-shadow: var(--shadow-sm);
  padding: var(--space-y) var(--space-x);
  max-width: var(--max-w);
  margin: 0 auto;
}

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

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

.burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: var(--btn-ghost-bg);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 8px;
  transition: background var(--anim-duration) var(--anim-ease);
}

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

.burger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--fg-on-surface);
  border-radius: 2px;
  transition: all var(--anim-duration) var(--anim-ease);
}

.burger.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.burger.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--surface-1);
  box-shadow: var(--shadow-md);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--anim-duration) var(--anim-ease);
  z-index: 100;
}

.nav-menu.open {
  max-height: 400px;
}

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

.nav-link {
  display: block;
  padding: 8px 12px;
  color: var(--fg-on-surface);
  text-decoration: none;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  border-radius: var(--radius-sm);
  transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

.nav-link:hover {
  background: var(--bg-primary-hover);
  color: var(--fg-on-primary);
}

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

  .header-inner {
    width: auto;
  }

  .burger {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 0;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
  }

  .nav-menu.open {
    max-height: 400px;
  }

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

.site-footer {
  background: #1a1a2e;
  color: #e0e0e0;
  padding: 2.5rem 1.5rem 1.5rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}
.footer-brand {
  text-align: center;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 1px;
}
.footer-logo:hover {
  color: #4fc3f7;
}
.footer-tagline {
  margin: 0.3rem 0 0;
  font-size: 0.85rem;
  color: #b0b0b0;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
}
.footer-nav a {
  color: #c0c0c0;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #4fc3f7;
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
}
.footer-legal a {
  color: #a0a0a0;
  text-decoration: none;
  font-size: 0.85rem;
}
.footer-legal a:hover {
  color: #4fc3f7;
}
.footer-contact {
  font-style: normal;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.footer-contact a {
  color: #c0c0c0;
  text-decoration: none;
}
.footer-contact a:hover {
  color: #4fc3f7;
}
.footer-social {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
}
.footer-social a {
  color: #a0a0a0;
  text-decoration: none;
  font-size: 0.85rem;
}
.footer-social a:hover {
  color: #4fc3f7;
}
.footer-disclaimer {
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 1rem;
  margin-top: 0.5rem;
}
.footer-disclaimer p {
  margin: 0;
  font-size: 0.8rem;
  color: #888;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 1.5rem 2rem;
  }
  .footer-brand {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    text-align: left;
  }
  .footer-nav {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    justify-self: end;
  }
  .footer-nav ul {
    justify-content: flex-end;
  }
  .footer-legal {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    justify-content: flex-start;
  }
  .footer-contact {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    text-align: right;
  }
  .footer-social {
    grid-column: 1 / 3;
    grid-row: 3 / 4;
    justify-content: flex-start;
  }
  .footer-disclaimer {
    grid-column: 1 / 3;
    grid-row: 4 / 5;
  }
}
@media (min-width: 1024px) {
  .footer-container {
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: auto auto;
    gap: 1.5rem 2rem;
  }
  .footer-brand {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
  }
  .footer-nav {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    align-self: center;
  }
  .footer-legal {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
  }
  .footer-contact {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
    text-align: right;
    align-self: center;
  }
  .footer-social {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    justify-content: center;
  }
  .footer-disclaimer {
    grid-column: 1 / 4;
    grid-row: 3 / 4;
  }
}

.cookie-lv14 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .cookie-lv14__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * 0.8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .cookie-lv14__text {
        flex: 1 1 420px;
    }

    .cookie-lv14__badge {
        display: inline-flex;
        align-items: center;
        padding: 3px 8px;
        border-radius: 999px;
        font-size: 12px;
        font-weight: 700;
        margin-bottom: 6px;
        background: var(--surface-2);
        color: var(--fg-muted);
    }

    .cookie-lv14__text strong {
        display: block;
        margin-bottom: 4px;
        color: var(--fg-on-surface);
    }

    .cookie-lv14__text p {
        margin: 0;
        color: var(--fg-muted);
    }

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

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

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

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

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

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

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

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

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

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

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

.site-header {
  position: relative;
  background: var(--surface-1);
  box-shadow: var(--shadow-sm);
  padding: var(--space-y) var(--space-x);
  max-width: var(--max-w);
  margin: 0 auto;
}

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

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

.burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: var(--btn-ghost-bg);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 8px;
  transition: background var(--anim-duration) var(--anim-ease);
}

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

.burger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--fg-on-surface);
  border-radius: 2px;
  transition: all var(--anim-duration) var(--anim-ease);
}

.burger.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.burger.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--surface-1);
  box-shadow: var(--shadow-md);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--anim-duration) var(--anim-ease);
  z-index: 100;
}

.nav-menu.open {
  max-height: 400px;
}

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

.nav-link {
  display: block;
  padding: 8px 12px;
  color: var(--fg-on-surface);
  text-decoration: none;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  border-radius: var(--radius-sm);
  transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

.nav-link:hover {
  background: var(--bg-primary-hover);
  color: var(--fg-on-primary);
}

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

  .header-inner {
    width: auto;
  }

  .burger {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 0;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
  }

  .nav-menu.open {
    max-height: 400px;
  }

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

.site-footer {
  background: #1a1a2e;
  color: #e0e0e0;
  padding: 2.5rem 1.5rem 1.5rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}
.footer-brand {
  text-align: center;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 1px;
}
.footer-logo:hover {
  color: #4fc3f7;
}
.footer-tagline {
  margin: 0.3rem 0 0;
  font-size: 0.85rem;
  color: #b0b0b0;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
}
.footer-nav a {
  color: #c0c0c0;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #4fc3f7;
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
}
.footer-legal a {
  color: #a0a0a0;
  text-decoration: none;
  font-size: 0.85rem;
}
.footer-legal a:hover {
  color: #4fc3f7;
}
.footer-contact {
  font-style: normal;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.footer-contact a {
  color: #c0c0c0;
  text-decoration: none;
}
.footer-contact a:hover {
  color: #4fc3f7;
}
.footer-social {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
}
.footer-social a {
  color: #a0a0a0;
  text-decoration: none;
  font-size: 0.85rem;
}
.footer-social a:hover {
  color: #4fc3f7;
}
.footer-disclaimer {
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 1rem;
  margin-top: 0.5rem;
}
.footer-disclaimer p {
  margin: 0;
  font-size: 0.8rem;
  color: #888;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 1.5rem 2rem;
  }
  .footer-brand {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    text-align: left;
  }
  .footer-nav {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    justify-self: end;
  }
  .footer-nav ul {
    justify-content: flex-end;
  }
  .footer-legal {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    justify-content: flex-start;
  }
  .footer-contact {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    text-align: right;
  }
  .footer-social {
    grid-column: 1 / 3;
    grid-row: 3 / 4;
    justify-content: flex-start;
  }
  .footer-disclaimer {
    grid-column: 1 / 3;
    grid-row: 4 / 5;
  }
}
@media (min-width: 1024px) {
  .footer-container {
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: auto auto;
    gap: 1.5rem 2rem;
  }
  .footer-brand {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
  }
  .footer-nav {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    align-self: center;
  }
  .footer-legal {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
  }
  .footer-contact {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
    text-align: right;
    align-self: center;
  }
  .footer-social {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    justify-content: center;
  }
  .footer-disclaimer {
    grid-column: 1 / 4;
    grid-row: 3 / 4;
  }
}

.cookie-lv14 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .cookie-lv14__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * 0.8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .cookie-lv14__text {
        flex: 1 1 420px;
    }

    .cookie-lv14__badge {
        display: inline-flex;
        align-items: center;
        padding: 3px 8px;
        border-radius: 999px;
        font-size: 12px;
        font-weight: 700;
        margin-bottom: 6px;
        background: var(--surface-2);
        color: var(--fg-muted);
    }

    .cookie-lv14__text strong {
        display: block;
        margin-bottom: 4px;
        color: var(--fg-on-surface);
    }

    .cookie-lv14__text p {
        margin: 0;
        color: var(--fg-muted);
    }

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

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

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

.thank-mode-c {
        padding: clamp(56px, 10vw, 112px) 18px;
        background: linear-gradient(180deg, var(--fg-on-page), var(--bg-page));
        color: var(--fg-on-page);
    }

    .thank-mode-c .panel {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(30px, 4vw, 44px);
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
    }

    .thank-mode-c h1 {
        margin: 0;
        font-size: clamp(32px, 5vw, 54px);
    }

    .thank-mode-c p {
        margin: 12px 0 0;
        color: var(--neutral-800);
    }

    .thank-mode-c a {
        display: inline-block;
        margin-top: 17px;
        color: var(--link);
        text-decoration: none;
        border-bottom: 2px solid var(--link);
        padding-bottom: 2px;
    }

.site-header {
  position: relative;
  background: var(--surface-1);
  box-shadow: var(--shadow-sm);
  padding: var(--space-y) var(--space-x);
  max-width: var(--max-w);
  margin: 0 auto;
}

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

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

.burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: var(--btn-ghost-bg);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 8px;
  transition: background var(--anim-duration) var(--anim-ease);
}

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

.burger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--fg-on-surface);
  border-radius: 2px;
  transition: all var(--anim-duration) var(--anim-ease);
}

.burger.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.burger.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--surface-1);
  box-shadow: var(--shadow-md);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--anim-duration) var(--anim-ease);
  z-index: 100;
}

.nav-menu.open {
  max-height: 400px;
}

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

.nav-link {
  display: block;
  padding: 8px 12px;
  color: var(--fg-on-surface);
  text-decoration: none;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  border-radius: var(--radius-sm);
  transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

.nav-link:hover {
  background: var(--bg-primary-hover);
  color: var(--fg-on-primary);
}

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

  .header-inner {
    width: auto;
  }

  .burger {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 0;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
  }

  .nav-menu.open {
    max-height: 400px;
  }

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

.site-footer {
  background: #1a1a2e;
  color: #e0e0e0;
  padding: 2.5rem 1.5rem 1.5rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}
.footer-brand {
  text-align: center;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 1px;
}
.footer-logo:hover {
  color: #4fc3f7;
}
.footer-tagline {
  margin: 0.3rem 0 0;
  font-size: 0.85rem;
  color: #b0b0b0;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
}
.footer-nav a {
  color: #c0c0c0;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #4fc3f7;
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
}
.footer-legal a {
  color: #a0a0a0;
  text-decoration: none;
  font-size: 0.85rem;
}
.footer-legal a:hover {
  color: #4fc3f7;
}
.footer-contact {
  font-style: normal;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.footer-contact a {
  color: #c0c0c0;
  text-decoration: none;
}
.footer-contact a:hover {
  color: #4fc3f7;
}
.footer-social {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
}
.footer-social a {
  color: #a0a0a0;
  text-decoration: none;
  font-size: 0.85rem;
}
.footer-social a:hover {
  color: #4fc3f7;
}
.footer-disclaimer {
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 1rem;
  margin-top: 0.5rem;
}
.footer-disclaimer p {
  margin: 0;
  font-size: 0.8rem;
  color: #888;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 1.5rem 2rem;
  }
  .footer-brand {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    text-align: left;
  }
  .footer-nav {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    justify-self: end;
  }
  .footer-nav ul {
    justify-content: flex-end;
  }
  .footer-legal {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    justify-content: flex-start;
  }
  .footer-contact {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    text-align: right;
  }
  .footer-social {
    grid-column: 1 / 3;
    grid-row: 3 / 4;
    justify-content: flex-start;
  }
  .footer-disclaimer {
    grid-column: 1 / 3;
    grid-row: 4 / 5;
  }
}
@media (min-width: 1024px) {
  .footer-container {
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: auto auto;
    gap: 1.5rem 2rem;
  }
  .footer-brand {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
  }
  .footer-nav {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    align-self: center;
  }
  .footer-legal {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
  }
  .footer-contact {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
    text-align: right;
    align-self: center;
  }
  .footer-social {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    justify-content: center;
  }
  .footer-disclaimer {
    grid-column: 1 / 4;
    grid-row: 3 / 4;
  }
}

.cookie-lv14 {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: var(--surface-1);
        border-top: 1px solid var(--border-on-surface);
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
    }

    .cookie-lv14__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: calc(var(--space-y) * 0.8) var(--space-x);
        display: flex;
        flex-wrap: wrap;
        gap: 12px var(--gap);
        align-items: center;
        justify-content: space-between;
    }

    .cookie-lv14__text {
        flex: 1 1 420px;
    }

    .cookie-lv14__badge {
        display: inline-flex;
        align-items: center;
        padding: 3px 8px;
        border-radius: 999px;
        font-size: 12px;
        font-weight: 700;
        margin-bottom: 6px;
        background: var(--surface-2);
        color: var(--fg-muted);
    }

    .cookie-lv14__text strong {
        display: block;
        margin-bottom: 4px;
        color: var(--fg-on-surface);
    }

    .cookie-lv14__text p {
        margin: 0;
        color: var(--fg-muted);
    }

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

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

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

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

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

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

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

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