:root {
  --font-family: "Fira Sans", sans-serif;
  --font-size-base: 14.7px;
  --line-height-base: 1.41;

  --max-w: 1100px;
  --space-x: 1.29rem;
  --space-y: 1.21rem;
  --gap: 1.06rem;

  --radius-xl: 0.99rem;
  --radius-lg: 0.62rem;
  --radius-md: 0.39rem;
  --radius-sm: 0.27rem;

  --shadow-sm: 0 1px 6px rgba(0,0,0,0.07);
  --shadow-md: 0 8px 16px rgba(0,0,0,0.09);
  --shadow-lg: 0 14px 38px rgba(0,0,0,0.11);

  --overlay: rgba(0,0,0,0.5);
  --anim-duration: 250ms;
  --anim-ease: cubic-bezier(0.2,0.8,0.2,1);
  --random-number: 1;

  --brand: #1A73E8;
  --brand-contrast: #FFFFFF;
  --accent: #FF6F00;
  --accent-contrast: #FFFFFF;

  --neutral-0: #FFFFFF;
  --neutral-100: #F5F5F5;
  --neutral-300: #E0E0E0;
  --neutral-600: #757575;
  --neutral-800: #424242;
  --neutral-900: #212121;

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

  --bg-alt: #F5F5F5;
  --fg-on-alt: #424242;

  --surface-1: #FFFFFF;
  --surface-2: #F9F9F9;
  --fg-on-surface: #212121;
  --border-on-surface: #E0E0E0;

  --surface-light: #FAFAFA;
  --fg-on-surface-light: #616161;
  --border-on-surface-light: #EEEEEE;

  --bg-primary: #1A73E8;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #1557B0;
  --ring: #1A73E8;

  --bg-accent: #FFF3E0;
  --fg-on-accent: #1A1A1A;
  --bg-accent-hover: #E65100;

  --link: #1A73E8;
  --link-hover: #1557B0;

  --gradient-hero: linear-gradient(135deg, #1A73E8 0%, #4FC3F7 100%);
  --gradient-accent: linear-gradient(135deg, #FF6F00 0%, #FFB74D 100%);

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

header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: var(--space-y) var(--space-x);
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .header-left {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) * 2);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }
  .nav-menu {
    display: flex;
    gap: var(--gap);
  }
  .nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-link:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--brand);
  }
  .header-right {
    display: flex;
    align-items: center;
    gap: var(--gap);
  }
  .contact-info {
    font-size: 0.875rem;
    color: var(--neutral-600);
    white-space: nowrap;
  }
  .btn-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.25rem;
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    border-radius: var(--radius-lg);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    font-weight: 600;
    text-decoration: none;
    transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    box-shadow: var(--shadow-sm);
  }
  .btn-action:hover {
    background: var(--bg-primary-hover);
    box-shadow: var(--shadow-md);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger span + span {
    margin-top: 5px;
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  @media (max-width: 767px) {
    .header-left {
      flex: 1;
    }
    .nav-menu {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: var(--surface-1);
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: calc(var(--gap) * 1.5);
      transform: translateX(100%);
      transition: transform var(--anim-duration) var(--anim-ease);
      z-index: 99;
    }
    .nav-menu.open {
      transform: translateX(0);
    }
    .nav-link {
      font-size: 1.25rem;
      padding: 0.75rem 1.5rem;
    }
    .contact-info {
      display: none;
    }
    .btn-action {
      display: none;
    }
    .burger {
      display: flex;
      z-index: 100;
    }
  }

footer {
    background-color: #f5f5f5;
    padding: 40px 20px 20px;
    font-family: Arial, sans-serif;
    color: #333;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
  }
  .footer-brand .logo {
    font-size: 24px;
    font-weight: bold;
    color: #2c3e50;
    text-decoration: none;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }
  .footer-nav a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
  }
  .footer-nav a:hover {
    text-decoration: underline;
  }
  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .footer-links a {
    text-decoration: none;
    color: #2c3e50;
    font-size: 14px;
  }
  .footer-links a:hover {
    text-decoration: underline;
  }
  .footer-contact {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  }
  .footer-contact p {
    margin: 5px 0;
    font-size: 14px;
  }
  .footer-contact a {
    color: #2980b9;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    background: #e9ecef;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 13px;
    color: #555;
    text-align: center;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  .footer-copyright {
    text-align: center;
    font-size: 14px;
    color: #777;
    border-top: 1px solid #ddd;
    padding-top: 15px;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-links {
      align-items: center;
    }
    .footer-contact {
      width: 100%;
      max-width: 300px;
    }
  }

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

.nflang-v12 {
        position: fixed;
        left: clamp(14px, 2vw, 24px);
        bottom: clamp(14px, 2vw, 24px);
        z-index: 99999;
    }

    .nflang-v12__control {
        border: 0;
        border-radius: 14px;
        padding: 10px 13px;
        background: linear-gradient(145deg, #111827, #0f766e);
        color: #ecfeff;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: .06em;
        cursor: pointer;
        box-shadow: var(--shadow-lg);
        min-width: 54px;
    }

    .nflang-v12__sheet {
        margin-top: 8px;
        padding: 8px;
        border-radius: 14px;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        width: min(220px, 80vw);
        opacity: 0;
        pointer-events: none;
        transform: translateY(10px);
        transition: opacity var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
    }

    .nflang-v12__sheet.open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nflang-v12__sheet button,
    .nflang-v12__sheet a {
        flex: 1 1 calc(50% - 3px);
        min-height: 34px;
        border-radius: var(--radius-sm);
        border: 1px solid var(--border-on-surface);
        background: var(--surface-2);
        color: var(--fg-on-surface);
        text-decoration: none;
        font-size: 11px;
        font-weight: 700;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        letter-spacing: .04em;
    }

    .nflang-v12__sheet button:hover,
    .nflang-v12__sheet a:hover {
        background: var(--accent);
        border-color: transparent;
        color: var(--accent-contrast);
    }

.hero-arc-v6 {
        padding: calc(var(--space-y) * 3) var(--space-x);
        background: var(--bg-page);
        color: var(--fg-on-page);
    }

    .hero-arc-v6 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: calc(var(--gap) * 1.5);
    }

    .hero-arc-v6 .top {
        display: grid;
        grid-template-columns:1fr minmax(260px, .82fr);
        gap: var(--gap);
        align-items: stretch;
    }

    .hero-arc-v6 .copy {
        padding: calc(var(--space-y) * 1.2);
        border-radius: var(--radius-xl);
        background: var(--surface-2);
        border: 1px solid var(--border-on-surface);
        display: grid;
        align-content: center;
        gap: var(--gap);
    }

    .hero-arc-v6 h1 {
        margin: 0;
        font-size: clamp(2rem, 4.3vw, 3.5rem);
        line-height: 1.1;
    }

    .hero-arc-v6 .subtitle {
        margin: 0;
        max-width: 50ch;
        color: var(--fg-on-surface-light);
    }

    .hero-arc-v6 .actions {
        display: flex;
        flex-wrap: wrap;
        gap: .7rem;
    }

    .hero-arc-v6 .actions a {
        padding: .64rem .95rem;
        border-radius: var(--radius-md);
        text-decoration: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 700;
        transition: background var(--anim-duration) var(--anim-ease);
    }

    .hero-arc-v6 .actions a:hover {
        background: var(--bg-primary-hover);
    }

    .hero-arc-v6 .actions a:nth-child(even) {
        background: var(--surface-1);
        color: var(--fg-on-surface);
        border: 1px solid var(--border-on-surface);
    }

    .hero-arc-v6 .image {
        overflow: hidden;
        border-radius: var(--radius-xl);
    }

    .hero-arc-v6 img {
        width: 100%;
        height: 100%;
        min-height: 300px;
        object-fit: cover;
        display: block;
    }

    .hero-arc-v6 .bottom {
        display: grid;
        grid-template-columns:repeat(4, minmax(0, 1fr));
        gap: var(--gap);
    }

    .hero-arc-v6 .bottom article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--gradient-accent);
        color: var(--accent-contrast);
        box-shadow: var(--shadow-sm);
    }

    .hero-arc-v6 .bottom p {
        margin: .3rem 0 0;
        opacity: .92;
    }

    @media (max-width: 960px) {
        .hero-arc-v6 .top {
            grid-template-columns:1fr;
        }

        .hero-arc-v6 .bottom {
            grid-template-columns:repeat(2, minmax(0, 1fr));
        }
    }

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

    .values-beads-c3__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .values-beads-c3__head {
        margin-bottom: 1.1rem;
    }

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

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

    .values-beads-c3__head span {
        display: block;
        margin-top: .8rem;

    }

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

    .values-beads-c3__grid article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: rgba(255, 255, 255, .14);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .values-beads-c3__top {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .values-beads-c3__top i {
        font-style: normal;
    }

    .values-beads-c3__top strong {
        color: var(--bg-accent);
    }

    .values-beads-c3__grid h3 {
        margin: .75rem 0 .35rem;
    }

    .values-beads-c3__grid p {
        margin: 0;

    }

    .values-beads-c3__grid small {
        display: block;
        margin-top: .55rem;
        color: rgba(255, 255, 255, .76);
    }

.next-ux25 {
        padding: calc(var(--space-y) * 1.9) var(--space-x);
        background: var(--neutral-100);
        color: var(--neutral-900)
    }

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

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

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

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

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

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

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

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

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

    .next-ux25 .numbers div {
        padding: .6rem;
        border-radius: var(--radius-md);
        background: var(--neutral-100);
        border: 1px solid var(--neutral-300)
    }

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

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

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

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

    .next-ux25 .chips span {
        padding: .28rem .5rem;
        border-radius: var(--radius-sm);
        background: var(--neutral-100);
        border: 1px solid var(--neutral-300)
    }

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

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

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

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

.why-choose-alt {

        background: var(--gradient-accent);
        color: var(--fg-on-primary);
        padding: clamp(40px, 6vw, 80px) clamp(16px, 3vw, 40px);
        position: relative;
        overflow: hidden;
    }

    .why-choose-alt::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);

        animation: backgroundPulse 4s ease-in-out infinite;
    }

    @keyframes backgroundPulse {
        0%, 100% {

            transform: scale(1);
        }
        50% {
            opacity: 1;
            transform: scale(1.1);
        }
    }

    .why-choose-alt .why-choose-alt__c {
        max-width: var(--max-w);
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    .why-choose-alt .why-choose-alt__h {
        color: var(--fg-on-surface-light);
        text-align: center;
        margin-bottom: clamp(32px, 5vw, 64px);

    }

    .why-choose-alt h2 {
        font-size: clamp(32px, 5vw, 48px);
        margin: 0 0 1rem;
        color: var(--fg-on-surface-light);
    }

    .why-choose-alt .why-choose-alt__subtitle {
        font-size: clamp(16px, 2vw, 20px);
        margin: 0;
        opacity: 0.9;
    }

    .why-choose-alt .why-choose-alt__list {
        display: flex;
        flex-direction: column;
        gap: clamp(16px, 2vw, 24px);
    }

    .why-choose-alt .why-choose-alt__item {
        display: flex;
        gap: clamp(16px, 2vw, 24px);
        background: var(--surface-light);
        padding: clamp(20px, 3vw, 32px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface-light);
        align-items: flex-start;

        position: relative;
        overflow: hidden;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .why-choose-alt .why-choose-alt__item::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.6s ease;
    }

    .why-choose-alt .why-choose-alt__item:hover {
        transform: translateX(8px);
        box-shadow: -8px 8px 24px rgba(0, 0, 0, 0.15);
    }

    .why-choose-alt .why-choose-alt__item:hover::before {
        left: 100%;
    }

    .why-choose-alt .why-choose-alt__number {
        flex-shrink: 0;
        width: 56px;
        height: 56px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-radius: var(--radius-md);
        font-size: clamp(20px, 2.5vw, 28px);
        font-weight: 700;
        position: relative;
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .why-choose-alt .why-choose-alt__item:hover .why-choose-alt__number {
        transform: rotate(360deg) scale(1.1);
    }

    .why-choose-alt .why-choose-alt__number::after {
        content: '';
        position: absolute;
        top: -3px;
        left: -3px;
        right: -3px;
        bottom: -3px;
        border-radius: var(--radius-md);
        border: 2px solid var(--bg-accent);

        animation: numberPulse 2s ease-in-out infinite;
    }

    @keyframes numberPulse {
        0%, 100% {

            transform: scale(1);
        }
        50% {
            opacity: 0.6;
            transform: scale(1.2);
        }
    }

    .why-choose-alt .why-choose-alt__content {
        flex: 1;
    }

    .why-choose-alt .why-choose-alt__item h3 {
        font-size: clamp(18px, 2.2vw, 24px);
        margin: 0 0 0.75rem;
        color: var(--fg-on-surface-light);
        transition: color var(--anim-duration) var(--anim-ease);
    }

    .why-choose-alt .why-choose-alt__item:hover h3 {
        color: var(--bg-accent);
    }

    .why-choose-alt .why-choose-alt__item p {
        margin: 0;
        color: var(--fg-on-surface-light);
        opacity: 0.85;
        line-height: var(--line-height-base);
    }

.visual-ledger-l2 {
        padding: clamp(3.1rem, 7vw, 5.7rem) var(--space-x);
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

    .visual-ledger-l2__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .visual-ledger-l2__head {
        margin-bottom: 1rem;
        text-align: center;
    }

    .visual-ledger-l2__head p {
        margin: 0;
        color: var(--neutral-600);
        font-size: .82rem;
        text-transform: uppercase;
        letter-spacing: .1em;
    }

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

    .visual-ledger-l2__deck {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
        gap: var(--gap);
    }

    .visual-ledger-l2__deck figure {
        margin: 0;
        overflow: hidden;
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
    }

    .visual-ledger-l2__deck img {
        display: block;
        width: 100%;
        height: 14rem;
        object-fit: cover;
    }

    .visual-ledger-l2__deck figcaption {
        padding: 1rem;
    }

    .visual-ledger-l2__deck strong {
        color: var(--brand);
    }

    .visual-ledger-l2__deck h3 {
        margin: .5rem 0 .35rem;
    }

    .visual-ledger-l2__deck p {
        margin: 0;
        color: var(--neutral-600);
    }

header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: var(--space-y) var(--space-x);
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .header-left {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) * 2);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }
  .nav-menu {
    display: flex;
    gap: var(--gap);
  }
  .nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-link:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--brand);
  }
  .header-right {
    display: flex;
    align-items: center;
    gap: var(--gap);
  }
  .contact-info {
    font-size: 0.875rem;
    color: var(--neutral-600);
    white-space: nowrap;
  }
  .btn-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.25rem;
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    border-radius: var(--radius-lg);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    font-weight: 600;
    text-decoration: none;
    transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    box-shadow: var(--shadow-sm);
  }
  .btn-action:hover {
    background: var(--bg-primary-hover);
    box-shadow: var(--shadow-md);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger span + span {
    margin-top: 5px;
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  @media (max-width: 767px) {
    .header-left {
      flex: 1;
    }
    .nav-menu {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: var(--surface-1);
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: calc(var(--gap) * 1.5);
      transform: translateX(100%);
      transition: transform var(--anim-duration) var(--anim-ease);
      z-index: 99;
    }
    .nav-menu.open {
      transform: translateX(0);
    }
    .nav-link {
      font-size: 1.25rem;
      padding: 0.75rem 1.5rem;
    }
    .contact-info {
      display: none;
    }
    .btn-action {
      display: none;
    }
    .burger {
      display: flex;
      z-index: 100;
    }
  }

footer {
    background-color: #f5f5f5;
    padding: 40px 20px 20px;
    font-family: Arial, sans-serif;
    color: #333;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
  }
  .footer-brand .logo {
    font-size: 24px;
    font-weight: bold;
    color: #2c3e50;
    text-decoration: none;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }
  .footer-nav a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
  }
  .footer-nav a:hover {
    text-decoration: underline;
  }
  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .footer-links a {
    text-decoration: none;
    color: #2c3e50;
    font-size: 14px;
  }
  .footer-links a:hover {
    text-decoration: underline;
  }
  .footer-contact {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  }
  .footer-contact p {
    margin: 5px 0;
    font-size: 14px;
  }
  .footer-contact a {
    color: #2980b9;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    background: #e9ecef;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 13px;
    color: #555;
    text-align: center;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  .footer-copyright {
    text-align: center;
    font-size: 14px;
    color: #777;
    border-top: 1px solid #ddd;
    padding-top: 15px;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-links {
      align-items: center;
    }
    .footer-contact {
      width: 100%;
      max-width: 300px;
    }
  }

.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-page);
        background: linear-gradient(180deg, var(--bg-accent) 0%, var(--bg-page) 40%);
        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__header-wrapper {
        display: grid;
        grid-template-columns: 1fr auto;
        gap: clamp(24px, 4vw, 48px);
        align-items: start;
        margin-bottom: clamp(32px, 5vw, 56px);
    }

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

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

    .product-list .product-list__h {
        text-align: left;
    }

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

    .product-list .product-list__h p {
        font-size: clamp(16px, 2.4vw, 20px);
        color: var(--neutral-600);
        margin: 0;
        line-height: 1.6;
    }

    .product-list .product-list__filters {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        min-width: 200px;
    }

    /* 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);
    }

    @media (max-width: 1023px) {
        .product-list .product-list__filters {
            flex-direction: row;
            flex-wrap: wrap;
            min-width: auto;
        }
    }

    .product-list .product-list__filter {
        padding: 0.75rem 1.5rem;
        border-radius: var(--radius-lg);
        border: 2px solid var(--ring);
        background: var(--bg-page);
        color: var(--fg-on-page);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        font-weight: 500;
        text-align: left;
    }

    @media (max-width: 1023px) {
        .product-list .product-list__filter {
            text-align: center;
        }
    }

    .product-list .product-list__filter:hover {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-color: var(--bg-primary);
        transform: translateX(4px);
    }

    .product-list .product-list__list {
        display: flex;
        flex-direction: column;
        gap: clamp(16px, 2.5vw, 24px);
    }

    .product-list .product-list__card {
        background: var(--surface-light);
        border: 2px solid var(--border-on-surface-light);
        border-radius: var(--radius-xl);
        padding: clamp(20px, 3vw, 32px);
        box-shadow: var(--shadow-sm);
        transition: all var(--anim-duration) var(--anim-ease);
        display: grid;
        grid-template-columns: 50% 1fr auto;
        gap: clamp(20px, 3vw, 32px);
        align-items: center;
    }

    .product-list .product-list__card:hover {
        border-color: var(--bg-primary);
        box-shadow: var(--shadow-lg);
        transform: translateX(8px);
    }

    .product-list .product-list__image {
        width: 100%;
        height: 180px;
        border-radius: var(--radius-lg);
        overflow: hidden;
    }

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

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

    .product-list .product-list__info {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        flex: 1;
    }

    .product-list .product-list__main {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .product-list h3 {
        margin: 0;
        font-size: clamp(20px, 2.8vw, 24px);
        color: var(--fg-on-page);
        font-weight: 600;
    }

    .product-list .product-list__description {
        color: var(--neutral-600);
        line-height: 1.6;
        margin: 0;
        font-size: 0.95rem;
    }

    .product-list .product-list__meta {
        display: flex;
        gap: 0.5rem;
        align-items: center;
        font-size: 0.875rem;
        color: var(--neutral-600);
    }

    .product-list .product-list__rating {
        font-weight: 600;
        color: var(--accent);
    }

    .product-list .product-list__actions {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: flex-end;
        min-width: 180px;
    }

    .product-list .product-list__btn {
        padding: 0.875rem 2rem;
        border-radius: var(--radius-lg);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        text-decoration: none;
        transition: all var(--anim-duration) var(--anim-ease);
        font-weight: 600;
        width: 100%;
        text-align: center;
    }

    .product-list .product-list__btn:hover {
        background: var(--bg-primary-hover);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

    .product-list__image img {
        width: 100%;
    }
    @media (max-width: 1023px) {
        .product-list .product-list__card {
            grid-template-columns: 1fr;
        }

        .product-list .product-list__image {
            height: 240px;
        }

        .product-list .product-list__actions {
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            min-width: auto;
        }

        .product-list .product-list__btn {
            width: auto;
        }
    }

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

.cap-signal-v3{padding:calc(var(--space-y)*2.7) var(--space-x);background:var(--bg-primary);color:var(--fg-on-primary)}
.cap-signal-v3 .shell{max-width:var(--max-w);margin:0 auto;display:grid;gap:.95rem}
.cap-signal-v3 h2{margin:0;font-size:clamp(1.9rem,3.8vw,2.8rem)}
.cap-signal-v3 .intro{margin:0;max-width:54ch;opacity:.9}
.cap-signal-v3 .strip{display:flex;gap:var(--gap);overflow:auto;padding-bottom:.2rem}
.cap-signal-v3 article{min-width:250px;padding:.95rem;border-radius:var(--radius-md);background:var(--btn-ghost-bg-hover)}
.cap-signal-v3 strong{display:inline-block;padding:.2rem .45rem;border-radius:var(--radius-sm);background:var(--chip-bg)}
.cap-signal-v3 h3{margin:.55rem 0 .3rem}
.cap-signal-v3 p{margin:0;opacity:.92}

header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: var(--space-y) var(--space-x);
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .header-left {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) * 2);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }
  .nav-menu {
    display: flex;
    gap: var(--gap);
  }
  .nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-link:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--brand);
  }
  .header-right {
    display: flex;
    align-items: center;
    gap: var(--gap);
  }
  .contact-info {
    font-size: 0.875rem;
    color: var(--neutral-600);
    white-space: nowrap;
  }
  .btn-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.25rem;
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    border-radius: var(--radius-lg);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    font-weight: 600;
    text-decoration: none;
    transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    box-shadow: var(--shadow-sm);
  }
  .btn-action:hover {
    background: var(--bg-primary-hover);
    box-shadow: var(--shadow-md);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger span + span {
    margin-top: 5px;
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  @media (max-width: 767px) {
    .header-left {
      flex: 1;
    }
    .nav-menu {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: var(--surface-1);
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: calc(var(--gap) * 1.5);
      transform: translateX(100%);
      transition: transform var(--anim-duration) var(--anim-ease);
      z-index: 99;
    }
    .nav-menu.open {
      transform: translateX(0);
    }
    .nav-link {
      font-size: 1.25rem;
      padding: 0.75rem 1.5rem;
    }
    .contact-info {
      display: none;
    }
    .btn-action {
      display: none;
    }
    .burger {
      display: flex;
      z-index: 100;
    }
  }

footer {
    background-color: #f5f5f5;
    padding: 40px 20px 20px;
    font-family: Arial, sans-serif;
    color: #333;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
  }
  .footer-brand .logo {
    font-size: 24px;
    font-weight: bold;
    color: #2c3e50;
    text-decoration: none;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }
  .footer-nav a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
  }
  .footer-nav a:hover {
    text-decoration: underline;
  }
  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .footer-links a {
    text-decoration: none;
    color: #2c3e50;
    font-size: 14px;
  }
  .footer-links a:hover {
    text-decoration: underline;
  }
  .footer-contact {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  }
  .footer-contact p {
    margin: 5px 0;
    font-size: 14px;
  }
  .footer-contact a {
    color: #2980b9;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    background: #e9ecef;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 13px;
    color: #555;
    text-align: center;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  .footer-copyright {
    text-align: center;
    font-size: 14px;
    color: #777;
    border-top: 1px solid #ddd;
    padding-top: 15px;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-links {
      align-items: center;
    }
    .footer-contact {
      width: 100%;
      max-width: 300px;
    }
  }

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

header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: var(--space-y) var(--space-x);
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .header-left {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) * 2);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }
  .nav-menu {
    display: flex;
    gap: var(--gap);
  }
  .nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-link:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--brand);
  }
  .header-right {
    display: flex;
    align-items: center;
    gap: var(--gap);
  }
  .contact-info {
    font-size: 0.875rem;
    color: var(--neutral-600);
    white-space: nowrap;
  }
  .btn-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.25rem;
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    border-radius: var(--radius-lg);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    font-weight: 600;
    text-decoration: none;
    transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    box-shadow: var(--shadow-sm);
  }
  .btn-action:hover {
    background: var(--bg-primary-hover);
    box-shadow: var(--shadow-md);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger span + span {
    margin-top: 5px;
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  @media (max-width: 767px) {
    .header-left {
      flex: 1;
    }
    .nav-menu {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: var(--surface-1);
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: calc(var(--gap) * 1.5);
      transform: translateX(100%);
      transition: transform var(--anim-duration) var(--anim-ease);
      z-index: 99;
    }
    .nav-menu.open {
      transform: translateX(0);
    }
    .nav-link {
      font-size: 1.25rem;
      padding: 0.75rem 1.5rem;
    }
    .contact-info {
      display: none;
    }
    .btn-action {
      display: none;
    }
    .burger {
      display: flex;
      z-index: 100;
    }
  }

footer {
    background-color: #f5f5f5;
    padding: 40px 20px 20px;
    font-family: Arial, sans-serif;
    color: #333;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
  }
  .footer-brand .logo {
    font-size: 24px;
    font-weight: bold;
    color: #2c3e50;
    text-decoration: none;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }
  .footer-nav a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
  }
  .footer-nav a:hover {
    text-decoration: underline;
  }
  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .footer-links a {
    text-decoration: none;
    color: #2c3e50;
    font-size: 14px;
  }
  .footer-links a:hover {
    text-decoration: underline;
  }
  .footer-contact {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  }
  .footer-contact p {
    margin: 5px 0;
    font-size: 14px;
  }
  .footer-contact a {
    color: #2980b9;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    background: #e9ecef;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 13px;
    color: #555;
    text-align: center;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  .footer-copyright {
    text-align: center;
    font-size: 14px;
    color: #777;
    border-top: 1px solid #ddd;
    padding-top: 15px;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-links {
      align-items: center;
    }
    .footer-contact {
      width: 100%;
      max-width: 300px;
    }
  }

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

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

    .values-beads-c3__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .values-beads-c3__head {
        margin-bottom: 1.1rem;
    }

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

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

    .values-beads-c3__head span {
        display: block;
        margin-top: .8rem;

    }

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

    .values-beads-c3__grid article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: rgba(255, 255, 255, .14);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .values-beads-c3__top {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .values-beads-c3__top i {
        font-style: normal;
    }

    .values-beads-c3__top strong {
        color: var(--bg-accent);
    }

    .values-beads-c3__grid h3 {
        margin: .75rem 0 .35rem;
    }

    .values-beads-c3__grid p {
        margin: 0;

    }

    .values-beads-c3__grid small {
        display: block;
        margin-top: .55rem;
        color: rgba(255, 255, 255, .76);
    }

header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: var(--space-y) var(--space-x);
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .header-left {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) * 2);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }
  .nav-menu {
    display: flex;
    gap: var(--gap);
  }
  .nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-link:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--brand);
  }
  .header-right {
    display: flex;
    align-items: center;
    gap: var(--gap);
  }
  .contact-info {
    font-size: 0.875rem;
    color: var(--neutral-600);
    white-space: nowrap;
  }
  .btn-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.25rem;
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    border-radius: var(--radius-lg);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    font-weight: 600;
    text-decoration: none;
    transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    box-shadow: var(--shadow-sm);
  }
  .btn-action:hover {
    background: var(--bg-primary-hover);
    box-shadow: var(--shadow-md);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger span + span {
    margin-top: 5px;
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  @media (max-width: 767px) {
    .header-left {
      flex: 1;
    }
    .nav-menu {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: var(--surface-1);
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: calc(var(--gap) * 1.5);
      transform: translateX(100%);
      transition: transform var(--anim-duration) var(--anim-ease);
      z-index: 99;
    }
    .nav-menu.open {
      transform: translateX(0);
    }
    .nav-link {
      font-size: 1.25rem;
      padding: 0.75rem 1.5rem;
    }
    .contact-info {
      display: none;
    }
    .btn-action {
      display: none;
    }
    .burger {
      display: flex;
      z-index: 100;
    }
  }

footer {
    background-color: #f5f5f5;
    padding: 40px 20px 20px;
    font-family: Arial, sans-serif;
    color: #333;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
  }
  .footer-brand .logo {
    font-size: 24px;
    font-weight: bold;
    color: #2c3e50;
    text-decoration: none;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }
  .footer-nav a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
  }
  .footer-nav a:hover {
    text-decoration: underline;
  }
  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .footer-links a {
    text-decoration: none;
    color: #2c3e50;
    font-size: 14px;
  }
  .footer-links a:hover {
    text-decoration: underline;
  }
  .footer-contact {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  }
  .footer-contact p {
    margin: 5px 0;
    font-size: 14px;
  }
  .footer-contact a {
    color: #2980b9;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    background: #e9ecef;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 13px;
    color: #555;
    text-align: center;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  .footer-copyright {
    text-align: center;
    font-size: 14px;
    color: #777;
    border-top: 1px solid #ddd;
    padding-top: 15px;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-links {
      align-items: center;
    }
    .footer-contact {
      width: 100%;
      max-width: 300px;
    }
  }

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

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

header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: var(--space-y) var(--space-x);
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .header-left {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) * 2);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }
  .nav-menu {
    display: flex;
    gap: var(--gap);
  }
  .nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-link:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--brand);
  }
  .header-right {
    display: flex;
    align-items: center;
    gap: var(--gap);
  }
  .contact-info {
    font-size: 0.875rem;
    color: var(--neutral-600);
    white-space: nowrap;
  }
  .btn-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.25rem;
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    border-radius: var(--radius-lg);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    font-weight: 600;
    text-decoration: none;
    transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    box-shadow: var(--shadow-sm);
  }
  .btn-action:hover {
    background: var(--bg-primary-hover);
    box-shadow: var(--shadow-md);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger span + span {
    margin-top: 5px;
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  @media (max-width: 767px) {
    .header-left {
      flex: 1;
    }
    .nav-menu {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: var(--surface-1);
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: calc(var(--gap) * 1.5);
      transform: translateX(100%);
      transition: transform var(--anim-duration) var(--anim-ease);
      z-index: 99;
    }
    .nav-menu.open {
      transform: translateX(0);
    }
    .nav-link {
      font-size: 1.25rem;
      padding: 0.75rem 1.5rem;
    }
    .contact-info {
      display: none;
    }
    .btn-action {
      display: none;
    }
    .burger {
      display: flex;
      z-index: 100;
    }
  }

footer {
    background-color: #f5f5f5;
    padding: 40px 20px 20px;
    font-family: Arial, sans-serif;
    color: #333;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
  }
  .footer-brand .logo {
    font-size: 24px;
    font-weight: bold;
    color: #2c3e50;
    text-decoration: none;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }
  .footer-nav a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
  }
  .footer-nav a:hover {
    text-decoration: underline;
  }
  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .footer-links a {
    text-decoration: none;
    color: #2c3e50;
    font-size: 14px;
  }
  .footer-links a:hover {
    text-decoration: underline;
  }
  .footer-contact {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  }
  .footer-contact p {
    margin: 5px 0;
    font-size: 14px;
  }
  .footer-contact a {
    color: #2980b9;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    background: #e9ecef;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 13px;
    color: #555;
    text-align: center;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  .footer-copyright {
    text-align: center;
    font-size: 14px;
    color: #777;
    border-top: 1px solid #ddd;
    padding-top: 15px;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-links {
      align-items: center;
    }
    .footer-contact {
      width: 100%;
      max-width: 300px;
    }
  }

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

.map-split-l1 {
        padding: clamp(3.2rem, 7vw, 5.8rem) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    .map-split-l1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: .85fr 1.15fr;
        gap: 1rem;
    }

    .map-split-l1__side h2 {
        margin: 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .map-split-l1__side p {
        margin: .6rem 0 0;
        color: var(--neutral-600);
    }

    .map-split-l1__list {
        margin-top: 1rem;
        display: grid;
        gap: .7rem;
    }

    .map-split-l1__list div {
        padding: .9rem;
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        border: 1px solid var(--border-on-surface-light);
    }

    .map-split-l1__list span {
        display: block;
        margin-top: .3rem;
        color: var(--neutral-600);
    }

    .map-split-l1__embed {
        overflow: hidden;
        border-radius: var(--radius-xl);
        border: 1px solid var(--border-on-surface-light);
        box-shadow: var(--shadow-sm);
    }

    .map-split-l1__embed iframe {
        display: block;
        width: 100%;
        height: 24rem;
    }

    @media (max-width: 840px) {
        .map-split-l1__wrap {
            grid-template-columns: 1fr;
        }
    }

.contacts-u7{padding:calc(var(--space-y)*2.9) var(--space-x);background:var(--gradient-accent);color:var(--brand-contrast)} .contacts-u7 .shell{max-width:var(--max-w);margin:0 auto;display:grid;gap:var(--gap)} .contacts-u7 h2{margin:0;font-size:clamp(1.85rem,3.6vw,2.8rem);line-height:1.1} .contacts-u7 .sub{margin:.35rem 0 0;opacity:.9;} .contacts-u7 article,.contacts-u7 li{padding:.85rem;border-radius:var(--radius-sm);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);list-style:none} .contacts-u7 p{margin:0} .contacts-u7 a{text-decoration:none;color:inherit;font-weight:700} .contacts-u7 .pulse{margin-top:.8rem;padding:1rem;border-radius:var(--radius-lg);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);animation:contacts-u7Pulse 2.8s ease-in-out infinite} @keyframes contacts-u7Pulse{0%,100%{transform:scale(1)}50%{transform:scale(1.01)}} .contacts-u7 article{transition:transform var(--anim-duration) var(--anim-ease),box-shadow var(--anim-duration) var(--anim-ease)} .contacts-u7 article:hover{transform:translateY(-4px);box-shadow:var(--shadow-md)} @media (max-width:860px){.contacts-u7 .split,.contacts-u7 .media,.contacts-u7 .grid,.contacts-u7 .cards,.contacts-u7 .bento,.contacts-u7 .foot{grid-template-columns:1fr}}

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

header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: var(--space-y) var(--space-x);
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .header-left {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) * 2);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }
  .nav-menu {
    display: flex;
    gap: var(--gap);
  }
  .nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-link:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--brand);
  }
  .header-right {
    display: flex;
    align-items: center;
    gap: var(--gap);
  }
  .contact-info {
    font-size: 0.875rem;
    color: var(--neutral-600);
    white-space: nowrap;
  }
  .btn-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.25rem;
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    border-radius: var(--radius-lg);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    font-weight: 600;
    text-decoration: none;
    transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    box-shadow: var(--shadow-sm);
  }
  .btn-action:hover {
    background: var(--bg-primary-hover);
    box-shadow: var(--shadow-md);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger span + span {
    margin-top: 5px;
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  @media (max-width: 767px) {
    .header-left {
      flex: 1;
    }
    .nav-menu {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: var(--surface-1);
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: calc(var(--gap) * 1.5);
      transform: translateX(100%);
      transition: transform var(--anim-duration) var(--anim-ease);
      z-index: 99;
    }
    .nav-menu.open {
      transform: translateX(0);
    }
    .nav-link {
      font-size: 1.25rem;
      padding: 0.75rem 1.5rem;
    }
    .contact-info {
      display: none;
    }
    .btn-action {
      display: none;
    }
    .burger {
      display: flex;
      z-index: 100;
    }
  }

footer {
    background-color: #f5f5f5;
    padding: 40px 20px 20px;
    font-family: Arial, sans-serif;
    color: #333;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
  }
  .footer-brand .logo {
    font-size: 24px;
    font-weight: bold;
    color: #2c3e50;
    text-decoration: none;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }
  .footer-nav a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
  }
  .footer-nav a:hover {
    text-decoration: underline;
  }
  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .footer-links a {
    text-decoration: none;
    color: #2c3e50;
    font-size: 14px;
  }
  .footer-links a:hover {
    text-decoration: underline;
  }
  .footer-contact {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  }
  .footer-contact p {
    margin: 5px 0;
    font-size: 14px;
  }
  .footer-contact a {
    color: #2980b9;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    background: #e9ecef;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 13px;
    color: #555;
    text-align: center;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  .footer-copyright {
    text-align: center;
    font-size: 14px;
    color: #777;
    border-top: 1px solid #ddd;
    padding-top: 15px;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-links {
      align-items: center;
    }
    .footer-contact {
      width: 100%;
      max-width: 300px;
    }
  }

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

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

header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: var(--space-y) var(--space-x);
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .header-left {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) * 2);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }
  .nav-menu {
    display: flex;
    gap: var(--gap);
  }
  .nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-link:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--brand);
  }
  .header-right {
    display: flex;
    align-items: center;
    gap: var(--gap);
  }
  .contact-info {
    font-size: 0.875rem;
    color: var(--neutral-600);
    white-space: nowrap;
  }
  .btn-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.25rem;
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    border-radius: var(--radius-lg);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    font-weight: 600;
    text-decoration: none;
    transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    box-shadow: var(--shadow-sm);
  }
  .btn-action:hover {
    background: var(--bg-primary-hover);
    box-shadow: var(--shadow-md);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger span + span {
    margin-top: 5px;
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  @media (max-width: 767px) {
    .header-left {
      flex: 1;
    }
    .nav-menu {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: var(--surface-1);
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: calc(var(--gap) * 1.5);
      transform: translateX(100%);
      transition: transform var(--anim-duration) var(--anim-ease);
      z-index: 99;
    }
    .nav-menu.open {
      transform: translateX(0);
    }
    .nav-link {
      font-size: 1.25rem;
      padding: 0.75rem 1.5rem;
    }
    .contact-info {
      display: none;
    }
    .btn-action {
      display: none;
    }
    .burger {
      display: flex;
      z-index: 100;
    }
  }

footer {
    background-color: #f5f5f5;
    padding: 40px 20px 20px;
    font-family: Arial, sans-serif;
    color: #333;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
  }
  .footer-brand .logo {
    font-size: 24px;
    font-weight: bold;
    color: #2c3e50;
    text-decoration: none;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }
  .footer-nav a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
  }
  .footer-nav a:hover {
    text-decoration: underline;
  }
  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .footer-links a {
    text-decoration: none;
    color: #2c3e50;
    font-size: 14px;
  }
  .footer-links a:hover {
    text-decoration: underline;
  }
  .footer-contact {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  }
  .footer-contact p {
    margin: 5px 0;
    font-size: 14px;
  }
  .footer-contact a {
    color: #2980b9;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    background: #e9ecef;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 13px;
    color: #555;
    text-align: center;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  .footer-copyright {
    text-align: center;
    font-size: 14px;
    color: #777;
    border-top: 1px solid #ddd;
    padding-top: 15px;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-links {
      align-items: center;
    }
    .footer-contact {
      width: 100%;
      max-width: 300px;
    }
  }

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

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

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

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

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

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

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

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

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

.terms-layout-d {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--accent);
        color: var(--neutral-0);
    }

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

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

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

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

    .terms-layout-d ol {
        margin: 0;
        padding-left: 20px;
        display: grid;
        gap: 10px;
    }

    .terms-layout-d li {
        border: 1px solid rgba(255, 255, 255, .2);
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .05);
        padding: 12px;
    }

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

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

header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: var(--space-y) var(--space-x);
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .header-left {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) * 2);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }
  .nav-menu {
    display: flex;
    gap: var(--gap);
  }
  .nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-link:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--brand);
  }
  .header-right {
    display: flex;
    align-items: center;
    gap: var(--gap);
  }
  .contact-info {
    font-size: 0.875rem;
    color: var(--neutral-600);
    white-space: nowrap;
  }
  .btn-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.25rem;
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    border-radius: var(--radius-lg);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    font-weight: 600;
    text-decoration: none;
    transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    box-shadow: var(--shadow-sm);
  }
  .btn-action:hover {
    background: var(--bg-primary-hover);
    box-shadow: var(--shadow-md);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger span + span {
    margin-top: 5px;
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  @media (max-width: 767px) {
    .header-left {
      flex: 1;
    }
    .nav-menu {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: var(--surface-1);
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: calc(var(--gap) * 1.5);
      transform: translateX(100%);
      transition: transform var(--anim-duration) var(--anim-ease);
      z-index: 99;
    }
    .nav-menu.open {
      transform: translateX(0);
    }
    .nav-link {
      font-size: 1.25rem;
      padding: 0.75rem 1.5rem;
    }
    .contact-info {
      display: none;
    }
    .btn-action {
      display: none;
    }
    .burger {
      display: flex;
      z-index: 100;
    }
  }

footer {
    background-color: #f5f5f5;
    padding: 40px 20px 20px;
    font-family: Arial, sans-serif;
    color: #333;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
  }
  .footer-brand .logo {
    font-size: 24px;
    font-weight: bold;
    color: #2c3e50;
    text-decoration: none;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }
  .footer-nav a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
  }
  .footer-nav a:hover {
    text-decoration: underline;
  }
  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .footer-links a {
    text-decoration: none;
    color: #2c3e50;
    font-size: 14px;
  }
  .footer-links a:hover {
    text-decoration: underline;
  }
  .footer-contact {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  }
  .footer-contact p {
    margin: 5px 0;
    font-size: 14px;
  }
  .footer-contact a {
    color: #2980b9;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    background: #e9ecef;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 13px;
    color: #555;
    text-align: center;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  .footer-copyright {
    text-align: center;
    font-size: 14px;
    color: #777;
    border-top: 1px solid #ddd;
    padding-top: 15px;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-links {
      align-items: center;
    }
    .footer-contact {
      width: 100%;
      max-width: 300px;
    }
  }

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

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

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

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

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

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

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

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

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

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

header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: var(--space-y) var(--space-x);
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .header-left {
    display: flex;
    align-items: center;
    gap: calc(var(--gap) * 2);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }
  .nav-menu {
    display: flex;
    gap: var(--gap);
  }
  .nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-link:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--brand);
  }
  .header-right {
    display: flex;
    align-items: center;
    gap: var(--gap);
  }
  .contact-info {
    font-size: 0.875rem;
    color: var(--neutral-600);
    white-space: nowrap;
  }
  .btn-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.25rem;
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    border-radius: var(--radius-lg);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    font-weight: 600;
    text-decoration: none;
    transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    box-shadow: var(--shadow-sm);
  }
  .btn-action:hover {
    background: var(--bg-primary-hover);
    box-shadow: var(--shadow-md);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger span + span {
    margin-top: 5px;
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  @media (max-width: 767px) {
    .header-left {
      flex: 1;
    }
    .nav-menu {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: var(--surface-1);
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: calc(var(--gap) * 1.5);
      transform: translateX(100%);
      transition: transform var(--anim-duration) var(--anim-ease);
      z-index: 99;
    }
    .nav-menu.open {
      transform: translateX(0);
    }
    .nav-link {
      font-size: 1.25rem;
      padding: 0.75rem 1.5rem;
    }
    .contact-info {
      display: none;
    }
    .btn-action {
      display: none;
    }
    .burger {
      display: flex;
      z-index: 100;
    }
  }

footer {
    background-color: #f5f5f5;
    padding: 40px 20px 20px;
    font-family: Arial, sans-serif;
    color: #333;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
  }
  .footer-brand .logo {
    font-size: 24px;
    font-weight: bold;
    color: #2c3e50;
    text-decoration: none;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }
  .footer-nav a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
  }
  .footer-nav a:hover {
    text-decoration: underline;
  }
  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .footer-links a {
    text-decoration: none;
    color: #2c3e50;
    font-size: 14px;
  }
  .footer-links a:hover {
    text-decoration: underline;
  }
  .footer-contact {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  }
  .footer-contact p {
    margin: 5px 0;
    font-size: 14px;
  }
  .footer-contact a {
    color: #2980b9;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    background: #e9ecef;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 13px;
    color: #555;
    text-align: center;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  .footer-copyright {
    text-align: center;
    font-size: 14px;
    color: #777;
    border-top: 1px solid #ddd;
    padding-top: 15px;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-links {
      align-items: center;
    }
    .footer-contact {
      width: 100%;
      max-width: 300px;
    }
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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