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

  --max-w: 1380px;
  --space-x: 1.73rem;
  --space-y: 1.5rem;
  --gap: 2.39rem;

  --radius-xl: 1.2rem;
  --radius-lg: 1rem;
  --radius-md: 0.52rem;
  --radius-sm: 0.32rem;

  --shadow-sm: 0 2px 6px rgba(0,0,0,0.16);
  --shadow-md: 0 10px 24px rgba(0,0,0,0.21);
  --shadow-lg: 0 26px 54px rgba(0,0,0,0.25);

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

  --brand: #2E5C4E;
  --brand-contrast: #FFFFFF;
  --accent: #D98A2C;
  --accent-contrast: #1A2E28;

  --neutral-0: #FFFFFF;
  --neutral-100: #F4F2EF;
  --neutral-300: #C4BFB8;
  --neutral-600: #6B655C;
  --neutral-800: #3A3530;
  --neutral-900: #1E1B18;

  --bg-page: #FBF9F6;
  --fg-on-page: #1E1B18;

  --bg-alt: #F0EDE8;
  --fg-on-alt: #2E5C4E;

  --surface-1: #FFFFFF;
  --surface-2: #F7F5F1;
  --fg-on-surface: #1E1B18;
  --border-on-surface: #D6D2CB;

  --surface-light: #FAF8F5;
  --fg-on-surface-light: #3A3530;
  --border-on-surface-light: #E2DED7;

  --bg-primary: #2E5C4E;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #23493E;
  --ring: #D98A2C;

  --bg-accent: #F5E6D3;
  --fg-on-accent: #1A2E28;
  --bg-accent-hover: #C07A24;

  --link: #2E5C4E;
  --link-hover: #D98A2C;

  --gradient-hero: linear-gradient(135deg, #2E5C4E 0%, #1A3D32 100%);
  --gradient-accent: linear-gradient(135deg, #D98A2C 0%, #C07A24 100%);

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

.site-header {
  background-color: var(--neutral-0);
  border-bottom: 1px solid var(--border-on-surface-light);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}

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

.logo {
  font-size: calc(var(--font-size-base) * 1.4);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  align-items: center;
}

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

.nav-list a {
  text-decoration: none;
  color: var(--neutral-800);
  font-size: var(--font-size-base);
  font-weight: 500;
  padding: 0.25rem 0;
  transition: color var(--anim-duration) var(--anim-ease);
  position: relative;
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: width var(--anim-duration) var(--anim-ease);
}

.nav-list a:hover {
  color: var(--accent);
}

.nav-list a:hover::after {
  width: 100%;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.25rem;
  background-color: var(--bg-accent);
  color: var(--fg-on-accent);
  font-size: var(--font-size-base);
  font-weight: 600;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background-color var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}

.cta-button:hover {
  background-color: var(--bg-accent-hover);
  transform: translateY(-1px);
}

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

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

.burger-line {
  display: block;
  width: 24px;
  height: 2.5px;
  background-color: var(--neutral-800);
  border-radius: 2px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

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

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

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

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

  .nav-menu {
    display: none;
    width: 100%;
    order: 3;
    margin-top: var(--space-y);
    border-top: 1px solid var(--border-on-surface-light);
    padding-top: var(--space-y);
  }

  .nav-menu.open {
    display: block;
  }

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

  .nav-list a {
    display: block;
    width: 100%;
    padding: 0.5rem 0;
    font-size: calc(var(--font-size-base) * 1.1);
  }

  .cta-button {
    display: none;
  }

  .burger {
    display: flex;
  }
}

.site-footer {
  background: #f5f5f5;
  padding: 2rem 1rem;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.9rem;
  color: #333;
  line-height: 1.5;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-logo {
  font-weight: 700;
  font-size: 1.2rem;
  color: #1a1a1a;
  text-decoration: none;
}
.footer-nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #555;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #000;
}
.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.footer-legal a {
  color: #555;
  text-decoration: none;
}
.footer-legal a:hover {
  text-decoration: underline;
}
.footer-contact {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.footer-contact a {
  color: #333;
  text-decoration: none;
}
.footer-contact a:hover {
  text-decoration: underline;
}
.footer-disclaimer {
  width: 100%;
  text-align: center;
  font-size: 0.8rem;
  color: #777;
  margin-top: 1rem;
}
.footer-disclaimer p {
  margin: 0;
}
.footer-copy {
  width: 100%;
  text-align: center;
  font-size: 0.8rem;
  color: #999;
  margin-top: 0.5rem;
}
.footer-copy p {
  margin: 0;
}
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-brand {
    align-items: center;
  }
  .footer-nav {
    justify-content: center;
  }
  .footer-legal {
    align-items: center;
  }
  .footer-contact {
    align-items: center;
  }
}

.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-v11 {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: var(--fg-on-primary);
        overflow: hidden;
        min-height: 460px;
    }

    .nfintro-v11__bg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -2;
    }

    .nfintro-v11__overlay {
        position: absolute;
        inset: 0;
        background: var(--gradient-hero);
        opacity: .72;
        z-index: -1;
    }

    .nfintro-v11__content {
        max-width: 900px;
        padding: clamp(16px, 3vw, 32px);
        z-index: 1;
    }

    .nfintro-v11 h1 {
        font-size: clamp(28px, 5vw, 48px);
        font-weight: 700;
        margin-bottom: var(--space-y);
    }

    .nfintro-v11 p {
        font-size: clamp(16px, 2.5vw, 20px);
        margin: 0 auto calc(var(--space-y) * 1.5);
        max-width: 700px;
    }

    .nfintro-v11__actions {
        display: flex;
        gap: var(--gap);
        justify-content: center;
        flex-wrap: wrap;
    }

    .nfintro-v11__btn {
        display: inline-block;
        padding: 12px 26px;
        border-radius: var(--radius-md);
        text-align: center;
        text-decoration: none;
        border: 1px solid transparent;
        font-size: 1rem;
    }

    .nfintro-v11__btn--primary {
        background-color: var(--bg-primary);
        color: var(--fg-on-primary);
        border-color: var(--bg-primary);
    }

    .nfintro-v11__btn--outline {
        background-color: transparent;
        color: var(--fg-on-primary);
        border-color: var(--fg-on-primary);
    }

.about-struct-v2 {
        padding: calc(var(--space-y) * 2) var(--space-x);
        background: var(--bg-alt);
        color: var(--fg-on-alt)
    }

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

    .about-struct-v2 h2, .about-struct-v2 h3, .about-struct-v2 p {
        margin: 0
    }

    .about-struct-v2 .split, .about-struct-v2 .duo {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: var(--gap)
    }

    .about-struct-v2 .split img, .about-struct-v2 .gallery img {
        display: block;
        width: 100%;
        object-fit: cover;
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-md)
    }

    .about-struct-v2 .split img {
        aspect-ratio: 4/3
    }

    .about-struct-v2 .split div {
        display: grid;
        gap: .5rem
    }

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

    .about-struct-v2 article, .about-struct-v2 .values div, .about-struct-v2 .facts div, .about-struct-v2 .quote, .about-struct-v2 .statement {
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        padding: .85rem
    }

    .about-struct-v2 .timeline {
        display: grid;
        gap: .65rem
    }

    .about-struct-v2 .timeline article {
        position: relative;
        padding-left: 1.25rem
    }

    .about-struct-v2 .timeline article::before {
        content: "";
        position: absolute;
        left: 0;
        top: .55rem;
        width: .5rem;
        height: .5rem;
        background: var(--bg-accent);
        border-radius: 50%
    }

    .about-struct-v2 .values, .about-struct-v2 .facts {
        display: grid;
        gap: .6rem
    }

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

    .about-struct-v2 .gallery img {
        aspect-ratio: 1/1
    }

    .about-struct-v2 .statement {
        display: grid;
        gap: .5rem
    }

    .about-struct-v2 .actions {
        display: flex;
        flex-wrap: wrap;
        gap: .45rem
    }

    .about-struct-v2 .actions a {
        display: inline-flex;
        min-height: 2.4rem;
        padding: 0 .85rem;
        border-radius: var(--radius-sm);
        align-items: center;
        text-decoration: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border: 1px solid var(--ring)
    }

    @media (max-width: 900px) {
        .about-struct-v2 .split, .about-struct-v2 .duo, .about-struct-v2 .cards, .about-struct-v2 .gallery {
            grid-template-columns:1fr 1fr
        }
    }

    @media (max-width: 680px) {
        .about-struct-v2 .split, .about-struct-v2 .duo, .about-struct-v2 .cards, .about-struct-v2 .gallery {
            grid-template-columns:1fr
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.nfsocial-v8 {
        padding: clamp(20px, 3vw, 44px);
        background: var(--bg-alt);
        color: var(--fg-on-alt);
    }

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

    .nfsocial-v8__head {
        margin-bottom: 14px;
    }

    .nfsocial-v8 h2 {
        margin: 0;
        font-size: clamp(24px, 4.2vw, 40px);
    }

    .nfsocial-v8__head p {
        margin: 10px 0 0;
        max-width: 72ch;
        color: var(--neutral-600);
    }

    .nfsocial-v8__quotes {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 12px;
    }

    .nfsocial-v8__quotes article {
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        padding: 14px;
    }

    .nfsocial-v8__quotes p {
        margin: 0;
        color: var(--fg-on-page);
    }

    .nfsocial-v8__quotes strong {
        display: block;
        margin-top: 10px;
        color: var(--neutral-900);
    }

    .nfsocial-v8__quotes span {
        display: block;
        margin-top: 4px;
        color: var(--neutral-600);
    }

.site-header {
  background-color: var(--neutral-0);
  border-bottom: 1px solid var(--border-on-surface-light);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}

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

.logo {
  font-size: calc(var(--font-size-base) * 1.4);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  align-items: center;
}

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

.nav-list a {
  text-decoration: none;
  color: var(--neutral-800);
  font-size: var(--font-size-base);
  font-weight: 500;
  padding: 0.25rem 0;
  transition: color var(--anim-duration) var(--anim-ease);
  position: relative;
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: width var(--anim-duration) var(--anim-ease);
}

.nav-list a:hover {
  color: var(--accent);
}

.nav-list a:hover::after {
  width: 100%;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.25rem;
  background-color: var(--bg-accent);
  color: var(--fg-on-accent);
  font-size: var(--font-size-base);
  font-weight: 600;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background-color var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}

.cta-button:hover {
  background-color: var(--bg-accent-hover);
  transform: translateY(-1px);
}

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

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

.burger-line {
  display: block;
  width: 24px;
  height: 2.5px;
  background-color: var(--neutral-800);
  border-radius: 2px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

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

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

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

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

  .nav-menu {
    display: none;
    width: 100%;
    order: 3;
    margin-top: var(--space-y);
    border-top: 1px solid var(--border-on-surface-light);
    padding-top: var(--space-y);
  }

  .nav-menu.open {
    display: block;
  }

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

  .nav-list a {
    display: block;
    width: 100%;
    padding: 0.5rem 0;
    font-size: calc(var(--font-size-base) * 1.1);
  }

  .cta-button {
    display: none;
  }

  .burger {
    display: flex;
  }
}

.site-footer {
  background: #f5f5f5;
  padding: 2rem 1rem;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.9rem;
  color: #333;
  line-height: 1.5;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-logo {
  font-weight: 700;
  font-size: 1.2rem;
  color: #1a1a1a;
  text-decoration: none;
}
.footer-nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #555;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #000;
}
.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.footer-legal a {
  color: #555;
  text-decoration: none;
}
.footer-legal a:hover {
  text-decoration: underline;
}
.footer-contact {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.footer-contact a {
  color: #333;
  text-decoration: none;
}
.footer-contact a:hover {
  text-decoration: underline;
}
.footer-disclaimer {
  width: 100%;
  text-align: center;
  font-size: 0.8rem;
  color: #777;
  margin-top: 1rem;
}
.footer-disclaimer p {
  margin: 0;
}
.footer-copy {
  width: 100%;
  text-align: center;
  font-size: 0.8rem;
  color: #999;
  margin-top: 0.5rem;
}
.footer-copy p {
  margin: 0;
}
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-brand {
    align-items: center;
  }
  .footer-nav {
    justify-content: center;
  }
  .footer-legal {
    align-items: center;
  }
  .footer-contact {
    align-items: center;
  }
}

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

.product-list {

        color: var(--fg-on-primary);
        background: var(--gradient-hero);
        padding: clamp(24px, 4vw, 56px) clamp(16px, 4vw, 40px);
    }

    .product-list .product-list__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .product-list .product-list__h {
        text-align: center;
        margin-bottom: clamp(24px, 4vw, 48px);
    }

    .product-list h1 {
        font-size: clamp(32px, 6vw, 56px);
        margin: 0 0 0.75rem;
        color: var(--fg-on-primary);
        font-weight: 700;
    }

    .product-list .product-list__h p {
        font-size: clamp(16px, 2.4vw, 20px);
        opacity: 0.9;
        margin: 0;
    }

    .product-list .product-list__filters {
        display: flex;
        gap: 0.75rem;
        flex-wrap: wrap;
        margin-bottom: clamp(32px, 5vw, 48px);
        justify-content: center;
    }

    /* Dacă randomNumber este par (2) - primul copil primește order: 2 */
    .product-list .product-list__filters > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    .product-list .product-list__filter {
        padding: 0.625rem 1.25rem;
        border-radius: var(--radius-lg);
        border: 2px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.1);
        color: var(--fg-on-primary);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        backdrop-filter: blur(8px);
        font-weight: 500;
    }

    .product-list .product-list__filter:hover {
        background: rgba(255, 255, 255, 0.25);
        border-color: rgba(255, 255, 255, 0.5);
        transform: translateY(-2px);
    }

    .product-list .product-list__masonry {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: clamp(20px, 3vw, 32px);
        grid-auto-rows: auto;
    }

    /* Dacă randomNumber este par (2) - primul copil primește order: 2 */
    .product-list .product-list__masonry > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    .product-list .product-list__card {
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: var(--radius-xl);
        overflow: hidden;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
        transition: all var(--anim-duration) var(--anim-ease);
        display: flex;
        flex-direction: column;
    }

    .product-list .product-list__card:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
        border-color: rgba(255, 255, 255, 0.4);
    }

    .product-list .product-list__image-wrapper {
        position: relative;
        width: 100%;
        height: 220px;
        overflow: hidden;
    }

    .product-list .product-list__image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .product-list .product-list__card:hover .product-list__image {
        transform: scale(1.1);
    }

    .product-list .product-list__badge {
        position: absolute;
        top: 12px;
        right: 12px;
        padding: 0.375rem 0.75rem;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-radius: var(--radius-md);
        font-size: 0.75rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .product-list .product-list__content {
        padding: clamp(20px, 2.5vw, 28px);
        display: flex;
        flex-direction: column;
        flex: 1;
    }

    .product-list h3 {
        margin: 0 0 0.5rem;
        font-size: clamp(18px, 2.4vw, 22px);
        color: var(--fg-on-primary);
        font-weight: 600;
    }

    .product-list .product-list__description {
        color: rgba(255, 255, 255, 0.85);
        line-height: 1.6;
        margin: 0 0 1.25rem;
        font-size: 0.9rem;
        flex: 1;
    }

    .product-list .product-list__footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        margin-top: auto;
    }

    .product-list .product-list__btn {
        padding: 0.625rem 1.25rem;
        border-radius: var(--radius-md);
        background: var(--fg-on-primary);
        color: var(--bg-primary);
        text-decoration: none;
        transition: all var(--anim-duration) var(--anim-ease);
        font-weight: 600;
        font-size: 0.875rem;
        white-space: nowrap;
    }

    .product-list .product-list__btn:hover {
        background: rgba(255, 255, 255, 0.9);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    @media (max-width: 767px) {
        .product-list .product-list__masonry {
            grid-template-columns: 1fr;
        }

        .product-list .product-list__footer {
            flex-direction: column;
            align-items: stretch;
        }

        .product-list .product-list__btn {
            width: 100%;
            text-align: center;
        }
    }

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

.education-struct-light-v16__shell {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    gap: var(--gap);
}

.education-struct-light-v16__modules {
    display: grid;
    gap: .6rem;
}

.education-struct-light-v16 details {
    background: var(--neutral-100);
    border: 1px solid var(--neutral-300);
    border-radius: var(--radius-lg);
    padding: .85rem;
}

.education-struct-light-v16 summary {
    cursor: pointer;
    font-weight: 700;
    color: var(--neutral-900);
}

.education-struct-light-v16 p {
    margin: .55rem 0 0;
    color: var(--neutral-800);
}

.education-struct-light-v16__cta {
    display: flex;
}

.education-struct-light-v16__cta 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;
}

.site-header {
  background-color: var(--neutral-0);
  border-bottom: 1px solid var(--border-on-surface-light);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}

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

.logo {
  font-size: calc(var(--font-size-base) * 1.4);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  align-items: center;
}

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

.nav-list a {
  text-decoration: none;
  color: var(--neutral-800);
  font-size: var(--font-size-base);
  font-weight: 500;
  padding: 0.25rem 0;
  transition: color var(--anim-duration) var(--anim-ease);
  position: relative;
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: width var(--anim-duration) var(--anim-ease);
}

.nav-list a:hover {
  color: var(--accent);
}

.nav-list a:hover::after {
  width: 100%;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.25rem;
  background-color: var(--bg-accent);
  color: var(--fg-on-accent);
  font-size: var(--font-size-base);
  font-weight: 600;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background-color var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}

.cta-button:hover {
  background-color: var(--bg-accent-hover);
  transform: translateY(-1px);
}

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

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

.burger-line {
  display: block;
  width: 24px;
  height: 2.5px;
  background-color: var(--neutral-800);
  border-radius: 2px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

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

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

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

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

  .nav-menu {
    display: none;
    width: 100%;
    order: 3;
    margin-top: var(--space-y);
    border-top: 1px solid var(--border-on-surface-light);
    padding-top: var(--space-y);
  }

  .nav-menu.open {
    display: block;
  }

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

  .nav-list a {
    display: block;
    width: 100%;
    padding: 0.5rem 0;
    font-size: calc(var(--font-size-base) * 1.1);
  }

  .cta-button {
    display: none;
  }

  .burger {
    display: flex;
  }
}

.site-footer {
  background: #f5f5f5;
  padding: 2rem 1rem;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.9rem;
  color: #333;
  line-height: 1.5;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-logo {
  font-weight: 700;
  font-size: 1.2rem;
  color: #1a1a1a;
  text-decoration: none;
}
.footer-nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #555;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #000;
}
.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.footer-legal a {
  color: #555;
  text-decoration: none;
}
.footer-legal a:hover {
  text-decoration: underline;
}
.footer-contact {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.footer-contact a {
  color: #333;
  text-decoration: none;
}
.footer-contact a:hover {
  text-decoration: underline;
}
.footer-disclaimer {
  width: 100%;
  text-align: center;
  font-size: 0.8rem;
  color: #777;
  margin-top: 1rem;
}
.footer-disclaimer p {
  margin: 0;
}
.footer-copy {
  width: 100%;
  text-align: center;
  font-size: 0.8rem;
  color: #999;
  margin-top: 0.5rem;
}
.footer-copy p {
  margin: 0;
}
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-brand {
    align-items: center;
  }
  .footer-nav {
    justify-content: center;
  }
  .footer-legal {
    align-items: center;
  }
  .footer-contact {
    align-items: center;
  }
}

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

.product-item {

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

    .product-item .product-item__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: var(--space-x);
    }

    @media (min-width: 1024px) {
        .product-item .product-item__c {
            grid-template-columns: 1fr 1fr;
        }

        /* Dacă randomNumber este par (2) - primul copil primește order: 2 */
        .product-item .product-item__c > *:first-child {
            order: calc((var(--random-number) % 2) * 2);
        }
    }

    .product-item .product-item__main-image img {
        width: 100%;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
    }

    .product-item .product-item__thumbnails {
        display: flex;
        gap: 0.5rem;
        margin-top: 1rem;
    }

    .product-item .product-item__thumb {
        width: 80px;
        height: 80px;
        object-fit: cover;
        border-radius: var(--radius-md);
        cursor: pointer;
        border: 2px solid transparent;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .product-item .product-item__thumb:hover {
        border-color: var(--bg-primary);
    }

    .product-item h1 {
        font-size: clamp(24px, 4vw, 36px);
        margin: 0 0 1rem;
        color: var(--fg-on-page);
    }

    .product-item .product-item__description {
        color: var(--neutral-600);
        line-height: 1.8;
        margin-bottom: var(--space-y);
    }

    .product-item .product-item__description ul {
        list-style: none;
        padding: 0;
        margin-top: 1rem;
    }

    .product-item .product-item__description li {
        margin-bottom: 0.5rem;
        font-weight: 500;
    }

    .product-item .product-item__actions {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }

    /* Dacă randomNumber este par (2) - primul copil primește order: 2 */
    .product-item .product-item__actions > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    .product-item .product-item__add-cart,
    .product-item .product-item__wishlist {
        padding: 0.875rem 2rem;
        border-radius: var(--radius-lg);
        border: none;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .product-item .product-item__add-cart {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-md);
    }

    .product-item .product-item__add-cart:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
    }

    .product-item .product-item__wishlist {
        background: var(--bg-page);
        color: var(--fg-on-page);
        border: 1px solid var(--ring);
    }

    .product-item .product-item__wishlist:hover {
        background: var(--surface-1);
    }

.site-header {
  background-color: var(--neutral-0);
  border-bottom: 1px solid var(--border-on-surface-light);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}

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

.logo {
  font-size: calc(var(--font-size-base) * 1.4);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  align-items: center;
}

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

.nav-list a {
  text-decoration: none;
  color: var(--neutral-800);
  font-size: var(--font-size-base);
  font-weight: 500;
  padding: 0.25rem 0;
  transition: color var(--anim-duration) var(--anim-ease);
  position: relative;
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: width var(--anim-duration) var(--anim-ease);
}

.nav-list a:hover {
  color: var(--accent);
}

.nav-list a:hover::after {
  width: 100%;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.25rem;
  background-color: var(--bg-accent);
  color: var(--fg-on-accent);
  font-size: var(--font-size-base);
  font-weight: 600;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background-color var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}

.cta-button:hover {
  background-color: var(--bg-accent-hover);
  transform: translateY(-1px);
}

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

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

.burger-line {
  display: block;
  width: 24px;
  height: 2.5px;
  background-color: var(--neutral-800);
  border-radius: 2px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

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

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

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

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

  .nav-menu {
    display: none;
    width: 100%;
    order: 3;
    margin-top: var(--space-y);
    border-top: 1px solid var(--border-on-surface-light);
    padding-top: var(--space-y);
  }

  .nav-menu.open {
    display: block;
  }

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

  .nav-list a {
    display: block;
    width: 100%;
    padding: 0.5rem 0;
    font-size: calc(var(--font-size-base) * 1.1);
  }

  .cta-button {
    display: none;
  }

  .burger {
    display: flex;
  }
}

.site-footer {
  background: #f5f5f5;
  padding: 2rem 1rem;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.9rem;
  color: #333;
  line-height: 1.5;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-logo {
  font-weight: 700;
  font-size: 1.2rem;
  color: #1a1a1a;
  text-decoration: none;
}
.footer-nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #555;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #000;
}
.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.footer-legal a {
  color: #555;
  text-decoration: none;
}
.footer-legal a:hover {
  text-decoration: underline;
}
.footer-contact {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.footer-contact a {
  color: #333;
  text-decoration: none;
}
.footer-contact a:hover {
  text-decoration: underline;
}
.footer-disclaimer {
  width: 100%;
  text-align: center;
  font-size: 0.8rem;
  color: #777;
  margin-top: 1rem;
}
.footer-disclaimer p {
  margin: 0;
}
.footer-copy {
  width: 100%;
  text-align: center;
  font-size: 0.8rem;
  color: #999;
  margin-top: 0.5rem;
}
.footer-copy p {
  margin: 0;
}
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-brand {
    align-items: center;
  }
  .footer-nav {
    justify-content: center;
  }
  .footer-legal {
    align-items: center;
  }
  .footer-contact {
    align-items: center;
  }
}

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

.product-item {

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

    .product-item .product-item__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: var(--space-x);
    }

    @media (min-width: 1024px) {
        .product-item .product-item__c {
            grid-template-columns: 1fr 1fr;
        }

        /* Dacă randomNumber este par (2) - primul copil primește order: 2 */
        .product-item .product-item__c > *:first-child {
            order: calc((var(--random-number) % 2) * 2);
        }
    }

    .product-item .product-item__main-image img {
        width: 100%;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
    }

    .product-item .product-item__thumbnails {
        display: flex;
        gap: 0.5rem;
        margin-top: 1rem;
    }

    .product-item .product-item__thumb {
        width: 80px;
        height: 80px;
        object-fit: cover;
        border-radius: var(--radius-md);
        cursor: pointer;
        border: 2px solid transparent;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .product-item .product-item__thumb:hover {
        border-color: var(--bg-primary);
    }

    .product-item h1 {
        font-size: clamp(24px, 4vw, 36px);
        margin: 0 0 1rem;
        color: var(--fg-on-page);
    }

    .product-item .product-item__description {
        color: var(--neutral-300);
        line-height: 1.8;
        margin-bottom: var(--space-y);
    }

    .product-item .product-item__actions {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }

    /* Dacă randomNumber este par (2) - primul copil primește order: 2 */
    .product-item .product-item__actions > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    .product-item .product-item__add-cart,
    .product-item .product-item__wishlist {
        padding: 0.875rem 2rem;
        border-radius: var(--radius-lg);
        border: none;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .product-item .product-item__add-cart {
        background: var(--bg-primary);
        color: var(--fg-on-page) fff;
        box-shadow: var(--shadow-md);
    }

    .product-item .product-item__add-cart:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
    }

    .product-item .product-item__wishlist {
        background: var(--bg-page);
        color: var(--fg-on-page);
        border: 1px solid var(--ring);
    }

    .product-item .product-item__wishlist:hover {
        background: var(--surface-1);
    }

.site-header {
  background-color: var(--neutral-0);
  border-bottom: 1px solid var(--border-on-surface-light);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}

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

.logo {
  font-size: calc(var(--font-size-base) * 1.4);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  align-items: center;
}

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

.nav-list a {
  text-decoration: none;
  color: var(--neutral-800);
  font-size: var(--font-size-base);
  font-weight: 500;
  padding: 0.25rem 0;
  transition: color var(--anim-duration) var(--anim-ease);
  position: relative;
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: width var(--anim-duration) var(--anim-ease);
}

.nav-list a:hover {
  color: var(--accent);
}

.nav-list a:hover::after {
  width: 100%;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.25rem;
  background-color: var(--bg-accent);
  color: var(--fg-on-accent);
  font-size: var(--font-size-base);
  font-weight: 600;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background-color var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}

.cta-button:hover {
  background-color: var(--bg-accent-hover);
  transform: translateY(-1px);
}

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

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

.burger-line {
  display: block;
  width: 24px;
  height: 2.5px;
  background-color: var(--neutral-800);
  border-radius: 2px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

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

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

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

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

  .nav-menu {
    display: none;
    width: 100%;
    order: 3;
    margin-top: var(--space-y);
    border-top: 1px solid var(--border-on-surface-light);
    padding-top: var(--space-y);
  }

  .nav-menu.open {
    display: block;
  }

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

  .nav-list a {
    display: block;
    width: 100%;
    padding: 0.5rem 0;
    font-size: calc(var(--font-size-base) * 1.1);
  }

  .cta-button {
    display: none;
  }

  .burger {
    display: flex;
  }
}

.site-footer {
  background: #f5f5f5;
  padding: 2rem 1rem;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.9rem;
  color: #333;
  line-height: 1.5;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-logo {
  font-weight: 700;
  font-size: 1.2rem;
  color: #1a1a1a;
  text-decoration: none;
}
.footer-nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #555;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #000;
}
.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.footer-legal a {
  color: #555;
  text-decoration: none;
}
.footer-legal a:hover {
  text-decoration: underline;
}
.footer-contact {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.footer-contact a {
  color: #333;
  text-decoration: none;
}
.footer-contact a:hover {
  text-decoration: underline;
}
.footer-disclaimer {
  width: 100%;
  text-align: center;
  font-size: 0.8rem;
  color: #777;
  margin-top: 1rem;
}
.footer-disclaimer p {
  margin: 0;
}
.footer-copy {
  width: 100%;
  text-align: center;
  font-size: 0.8rem;
  color: #999;
  margin-top: 0.5rem;
}
.footer-copy p {
  margin: 0;
}
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-brand {
    align-items: center;
  }
  .footer-nav {
    justify-content: center;
  }
  .footer-legal {
    align-items: center;
  }
  .footer-contact {
    align-items: center;
  }
}

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

.product-item {

        color: var(--fg-on-primary);
        background: var(--gradient-hero);
        padding: clamp(16px, 3vw, 40px);
    }

    .product-item .product-item__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: var(--space-x);
    }

    @media (min-width: 1024px) {
        .product-item .product-item__c {
            grid-template-columns: 1fr 1fr;
        }

        /* Dacă randomNumber este par (2) - primul copil primește order: 2 */
        .product-item .product-item__c > *:first-child {
            order: calc((var(--random-number) % 2) * 2);
        }
    }

    .product-item .product-item__main-image img {
        width: 100%;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
    }

    .product-item .product-item__thumbnails {
        display: flex;
        gap: 0.5rem;
        margin-top: 1rem;
    }

    .product-item .product-item__thumb {
        width: 80px;
        height: 80px;
        object-fit: cover;
        border-radius: var(--radius-md);
        cursor: pointer;
        border: 2px solid transparent;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .product-item .product-item__thumb:hover {
        border-color: var(--bg-primary);
    }

    .product-item h1 {
        font-size: clamp(24px, 4vw, 36px);
        margin: 0 0 1rem;
        color: var(--fg-on-primary);
    }

    .product-item .product-item__description {
        color: var(--neutral-300);
        line-height: 1.8;
        margin-bottom: var(--space-y);
    }

    .product-item .product-item__actions {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }

    /* Dacă randomNumber este par (2) - primul copil primește order: 2 */
    .product-item .product-item__actions > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    .product-item .product-item__add-cart,
    .product-item .product-item__wishlist {
        padding: 0.875rem 2rem;
        border-radius: var(--radius-lg);
        border: none;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .product-item .product-item__add-cart {
        background: var(--bg-primary);
        color: var(--fg-on-primary) fff;
        box-shadow: var(--shadow-md);
    }

    .product-item .product-item__add-cart:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
    }

    .product-item .product-item__wishlist {
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
        border: 1px solid var(--ring);
    }

    .product-item .product-item__wishlist:hover {
        background: var(--surface-1);
    }

.site-header {
  background-color: var(--neutral-0);
  border-bottom: 1px solid var(--border-on-surface-light);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}

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

.logo {
  font-size: calc(var(--font-size-base) * 1.4);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  align-items: center;
}

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

.nav-list a {
  text-decoration: none;
  color: var(--neutral-800);
  font-size: var(--font-size-base);
  font-weight: 500;
  padding: 0.25rem 0;
  transition: color var(--anim-duration) var(--anim-ease);
  position: relative;
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: width var(--anim-duration) var(--anim-ease);
}

.nav-list a:hover {
  color: var(--accent);
}

.nav-list a:hover::after {
  width: 100%;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.25rem;
  background-color: var(--bg-accent);
  color: var(--fg-on-accent);
  font-size: var(--font-size-base);
  font-weight: 600;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background-color var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}

.cta-button:hover {
  background-color: var(--bg-accent-hover);
  transform: translateY(-1px);
}

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

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

.burger-line {
  display: block;
  width: 24px;
  height: 2.5px;
  background-color: var(--neutral-800);
  border-radius: 2px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

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

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

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

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

  .nav-menu {
    display: none;
    width: 100%;
    order: 3;
    margin-top: var(--space-y);
    border-top: 1px solid var(--border-on-surface-light);
    padding-top: var(--space-y);
  }

  .nav-menu.open {
    display: block;
  }

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

  .nav-list a {
    display: block;
    width: 100%;
    padding: 0.5rem 0;
    font-size: calc(var(--font-size-base) * 1.1);
  }

  .cta-button {
    display: none;
  }

  .burger {
    display: flex;
  }
}

.site-footer {
  background: #f5f5f5;
  padding: 2rem 1rem;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.9rem;
  color: #333;
  line-height: 1.5;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-logo {
  font-weight: 700;
  font-size: 1.2rem;
  color: #1a1a1a;
  text-decoration: none;
}
.footer-nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #555;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #000;
}
.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.footer-legal a {
  color: #555;
  text-decoration: none;
}
.footer-legal a:hover {
  text-decoration: underline;
}
.footer-contact {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.footer-contact a {
  color: #333;
  text-decoration: none;
}
.footer-contact a:hover {
  text-decoration: underline;
}
.footer-disclaimer {
  width: 100%;
  text-align: center;
  font-size: 0.8rem;
  color: #777;
  margin-top: 1rem;
}
.footer-disclaimer p {
  margin: 0;
}
.footer-copy {
  width: 100%;
  text-align: center;
  font-size: 0.8rem;
  color: #999;
  margin-top: 0.5rem;
}
.footer-copy p {
  margin: 0;
}
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-brand {
    align-items: center;
  }
  .footer-nav {
    justify-content: center;
  }
  .footer-legal {
    align-items: center;
  }
  .footer-contact {
    align-items: center;
  }
}

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

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

.education-struct-light-v16__shell {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    gap: var(--gap);
}

.education-struct-light-v16__modules {
    display: grid;
    gap: .6rem;
}

.education-struct-light-v16 details {
    background: var(--neutral-100);
    border: 1px solid var(--neutral-300);
    border-radius: var(--radius-lg);
    padding: .85rem;
}

.education-struct-light-v16 summary {
    cursor: pointer;
    font-weight: 700;
    color: var(--neutral-900);
}

.education-struct-light-v16 p {
    margin: .55rem 0 0;
    color: var(--neutral-800);
}

.education-struct-light-v16__cta {
    display: flex;
}

.education-struct-light-v16__cta 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;
}

.nfcontacts-v11 {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    .nfcontacts-v11__shell {
        max-width: 860px;
        margin: 0 auto;
        display: grid;
        gap: 12px;
    }

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

    .nfcontacts-v11__head p {
        margin: 8px 0 0;
        opacity: .85;
    }

    .nfcontacts-v11__stack {
        display: grid;
        gap: 8px;
    }

    .nfcontacts-v11 details {
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .08);
        border: 1px solid rgba(255, 255, 255, .2);
        padding: 10px 12px;
    }

    .nfcontacts-v11 summary {
        cursor: pointer;
        font-weight: 700;
    }

    .nfcontacts-v11 details div {
        margin-top: 8px;
        display: grid;
        gap: 6px;
    }

    .nfcontacts-v11 details p {
        margin: 0;
    }

    .nfcontacts-v11 details a {
        color: var(--neutral-0);
        text-decoration: underline;
    }

.nfform-v8 {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--surface-1);
        color: var(--fg-on-surface);
    }

    .nfform-v8__form {
        max-width: 760px;
        margin: 0 auto;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-2);
        padding: 16px;
        display: grid;
        gap: 10px;
    }

    .nfform-v8 h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 40px);
        color: var(--neutral-900);
    }

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

    .nfform-v8 label {
        display: grid;
        gap: 6px;
    }

    .nfform-v8 label span {
        color: var(--neutral-600);
        font-size: .9rem;
    }

    .nfform-v8 input {
        width: 100%;
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        padding: 9px;
        font: inherit;
    }

    .nfform-v8 button {
        justify-self: start;
        border: 0;
        border-radius: var(--radius-sm);
        padding: 10px 14px;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 700;
    }

.site-header {
  background-color: var(--neutral-0);
  border-bottom: 1px solid var(--border-on-surface-light);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}

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

.logo {
  font-size: calc(var(--font-size-base) * 1.4);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  align-items: center;
}

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

.nav-list a {
  text-decoration: none;
  color: var(--neutral-800);
  font-size: var(--font-size-base);
  font-weight: 500;
  padding: 0.25rem 0;
  transition: color var(--anim-duration) var(--anim-ease);
  position: relative;
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: width var(--anim-duration) var(--anim-ease);
}

.nav-list a:hover {
  color: var(--accent);
}

.nav-list a:hover::after {
  width: 100%;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.25rem;
  background-color: var(--bg-accent);
  color: var(--fg-on-accent);
  font-size: var(--font-size-base);
  font-weight: 600;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background-color var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}

.cta-button:hover {
  background-color: var(--bg-accent-hover);
  transform: translateY(-1px);
}

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

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

.burger-line {
  display: block;
  width: 24px;
  height: 2.5px;
  background-color: var(--neutral-800);
  border-radius: 2px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

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

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

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

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

  .nav-menu {
    display: none;
    width: 100%;
    order: 3;
    margin-top: var(--space-y);
    border-top: 1px solid var(--border-on-surface-light);
    padding-top: var(--space-y);
  }

  .nav-menu.open {
    display: block;
  }

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

  .nav-list a {
    display: block;
    width: 100%;
    padding: 0.5rem 0;
    font-size: calc(var(--font-size-base) * 1.1);
  }

  .cta-button {
    display: none;
  }

  .burger {
    display: flex;
  }
}

.site-footer {
  background: #f5f5f5;
  padding: 2rem 1rem;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.9rem;
  color: #333;
  line-height: 1.5;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-logo {
  font-weight: 700;
  font-size: 1.2rem;
  color: #1a1a1a;
  text-decoration: none;
}
.footer-nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #555;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #000;
}
.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.footer-legal a {
  color: #555;
  text-decoration: none;
}
.footer-legal a:hover {
  text-decoration: underline;
}
.footer-contact {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.footer-contact a {
  color: #333;
  text-decoration: none;
}
.footer-contact a:hover {
  text-decoration: underline;
}
.footer-disclaimer {
  width: 100%;
  text-align: center;
  font-size: 0.8rem;
  color: #777;
  margin-top: 1rem;
}
.footer-disclaimer p {
  margin: 0;
}
.footer-copy {
  width: 100%;
  text-align: center;
  font-size: 0.8rem;
  color: #999;
  margin-top: 0.5rem;
}
.footer-copy p {
  margin: 0;
}
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-brand {
    align-items: center;
  }
  .footer-nav {
    justify-content: center;
  }
  .footer-legal {
    align-items: center;
  }
  .footer-contact {
    align-items: center;
  }
}

.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 {
  background-color: var(--neutral-0);
  border-bottom: 1px solid var(--border-on-surface-light);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}

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

.logo {
  font-size: calc(var(--font-size-base) * 1.4);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  align-items: center;
}

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

.nav-list a {
  text-decoration: none;
  color: var(--neutral-800);
  font-size: var(--font-size-base);
  font-weight: 500;
  padding: 0.25rem 0;
  transition: color var(--anim-duration) var(--anim-ease);
  position: relative;
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: width var(--anim-duration) var(--anim-ease);
}

.nav-list a:hover {
  color: var(--accent);
}

.nav-list a:hover::after {
  width: 100%;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.25rem;
  background-color: var(--bg-accent);
  color: var(--fg-on-accent);
  font-size: var(--font-size-base);
  font-weight: 600;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background-color var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}

.cta-button:hover {
  background-color: var(--bg-accent-hover);
  transform: translateY(-1px);
}

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

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

.burger-line {
  display: block;
  width: 24px;
  height: 2.5px;
  background-color: var(--neutral-800);
  border-radius: 2px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

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

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

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

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

  .nav-menu {
    display: none;
    width: 100%;
    order: 3;
    margin-top: var(--space-y);
    border-top: 1px solid var(--border-on-surface-light);
    padding-top: var(--space-y);
  }

  .nav-menu.open {
    display: block;
  }

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

  .nav-list a {
    display: block;
    width: 100%;
    padding: 0.5rem 0;
    font-size: calc(var(--font-size-base) * 1.1);
  }

  .cta-button {
    display: none;
  }

  .burger {
    display: flex;
  }
}

.site-footer {
  background: #f5f5f5;
  padding: 2rem 1rem;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.9rem;
  color: #333;
  line-height: 1.5;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-logo {
  font-weight: 700;
  font-size: 1.2rem;
  color: #1a1a1a;
  text-decoration: none;
}
.footer-nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #555;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #000;
}
.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.footer-legal a {
  color: #555;
  text-decoration: none;
}
.footer-legal a:hover {
  text-decoration: underline;
}
.footer-contact {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.footer-contact a {
  color: #333;
  text-decoration: none;
}
.footer-contact a:hover {
  text-decoration: underline;
}
.footer-disclaimer {
  width: 100%;
  text-align: center;
  font-size: 0.8rem;
  color: #777;
  margin-top: 1rem;
}
.footer-disclaimer p {
  margin: 0;
}
.footer-copy {
  width: 100%;
  text-align: center;
  font-size: 0.8rem;
  color: #999;
  margin-top: 0.5rem;
}
.footer-copy p {
  margin: 0;
}
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-brand {
    align-items: center;
  }
  .footer-nav {
    justify-content: center;
  }
  .footer-legal {
    align-items: center;
  }
  .footer-contact {
    align-items: center;
  }
}

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

.nfthank-v10 {
        padding: clamp(58px, 10vw, 114px) 18px;
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    .nfthank-v10__wrap {
        max-width: 740px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(28px, 4vw, 42px);
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-xl);
        background: linear-gradient(180deg, var(--surface-1), var(--surface-2));
    }

    .nfthank-v10 h1 {
        margin: 0;
        font-size: clamp(32px, 5vw, 52px);
    }

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

    .nfthank-v10 a {
        display: inline-block;
        margin-top: 16px;
        padding: 9px 14px;
        border-radius: var(--radius-sm);
        text-decoration: none;
        border: 1px solid var(--border-on-surface);
        color: var(--fg-on-page);
    }

.site-header {
  background-color: var(--neutral-0);
  border-bottom: 1px solid var(--border-on-surface-light);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}

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

.logo {
  font-size: calc(var(--font-size-base) * 1.4);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  align-items: center;
}

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

.nav-list a {
  text-decoration: none;
  color: var(--neutral-800);
  font-size: var(--font-size-base);
  font-weight: 500;
  padding: 0.25rem 0;
  transition: color var(--anim-duration) var(--anim-ease);
  position: relative;
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: width var(--anim-duration) var(--anim-ease);
}

.nav-list a:hover {
  color: var(--accent);
}

.nav-list a:hover::after {
  width: 100%;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.25rem;
  background-color: var(--bg-accent);
  color: var(--fg-on-accent);
  font-size: var(--font-size-base);
  font-weight: 600;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background-color var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}

.cta-button:hover {
  background-color: var(--bg-accent-hover);
  transform: translateY(-1px);
}

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

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

.burger-line {
  display: block;
  width: 24px;
  height: 2.5px;
  background-color: var(--neutral-800);
  border-radius: 2px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

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

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

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

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

  .nav-menu {
    display: none;
    width: 100%;
    order: 3;
    margin-top: var(--space-y);
    border-top: 1px solid var(--border-on-surface-light);
    padding-top: var(--space-y);
  }

  .nav-menu.open {
    display: block;
  }

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

  .nav-list a {
    display: block;
    width: 100%;
    padding: 0.5rem 0;
    font-size: calc(var(--font-size-base) * 1.1);
  }

  .cta-button {
    display: none;
  }

  .burger {
    display: flex;
  }
}

.site-footer {
  background: #f5f5f5;
  padding: 2rem 1rem;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.9rem;
  color: #333;
  line-height: 1.5;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-logo {
  font-weight: 700;
  font-size: 1.2rem;
  color: #1a1a1a;
  text-decoration: none;
}
.footer-nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #555;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #000;
}
.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.footer-legal a {
  color: #555;
  text-decoration: none;
}
.footer-legal a:hover {
  text-decoration: underline;
}
.footer-contact {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.footer-contact a {
  color: #333;
  text-decoration: none;
}
.footer-contact a:hover {
  text-decoration: underline;
}
.footer-disclaimer {
  width: 100%;
  text-align: center;
  font-size: 0.8rem;
  color: #777;
  margin-top: 1rem;
}
.footer-disclaimer p {
  margin: 0;
}
.footer-copy {
  width: 100%;
  text-align: center;
  font-size: 0.8rem;
  color: #999;
  margin-top: 0.5rem;
}
.footer-copy p {
  margin: 0;
}
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-brand {
    align-items: center;
  }
  .footer-nav {
    justify-content: center;
  }
  .footer-legal {
    align-items: center;
  }
  .footer-contact {
    align-items: center;
  }
}

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

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

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

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

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

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

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