:root {
  --font-family: "Noto Sans", sans-serif;
  --font-size-base: 16px;
  --line-height-base: 1.42;

  --max-w: 1140px;
  --space-x: 0.89rem;
  --space-y: 1.43rem;
  --gap: 1.07rem;

  --radius-xl: 0.93rem;
  --radius-lg: 0.69rem;
  --radius-md: 0.39rem;
  --radius-sm: 0.3rem;

  --shadow-sm: 0 1px 4px rgba(0,0,0,0.13);
  --shadow-md: 0 4px 10px rgba(0,0,0,0.16);
  --shadow-lg: 0 16px 32px rgba(0,0,0,0.2);

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

  --brand: #2E7D32;
  --brand-contrast: #FFFFFF;
  --accent: #FF8F00;
  --accent-contrast: #1A1A1A;

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

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

  --bg-alt: #E8F5E9;
  --fg-on-alt: #1B5E20;

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

  --surface-light: #FFFFFF;
  --fg-on-surface-light: #424242;
  --border-on-surface-light: #EEEEEE;

  --bg-primary: #2E7D32;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #1B5E20;
  --ring: #2E7D32;

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

  --link: #1565C0;
  --link-hover: #0D47A1;

  --gradient-hero: linear-gradient(135deg, #2E7D32 0%, #1B5E20 100%);
  --gradient-accent: linear-gradient(135deg, #FF8F00 0%, #FFB300 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-color: var(--surface-1);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: var(--space-y) 0;
}

.header__container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.header__logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: 0.02em;
  order: 2;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.header__logo:hover {
  color: var(--brand-contrast);
}

.header__burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  order: 1;
  z-index: 10;
}

.header__burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--fg-on-surface);
  margin: 5px 0;
  border-radius: var(--radius-sm);
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.header__burger[aria-expanded="true"] .header__burger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.header__burger[aria-expanded="true"] .header__burger-line:nth-child(2) {
  opacity: 0;
}

.header__burger[aria-expanded="true"] .header__burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.header__nav {
  order: 1;
  flex: 1;
}

.header__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: var(--gap);
}

.header__menu-item--left {
  margin-right: auto;
}

.header__menu-item--right {
  margin-left: auto;
}

.header__link {
  color: var(--fg-on-surface);
  text-decoration: none;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  padding: 8px 12px;
  border-radius: var(--radius-md);
  transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}

.header__link:hover,
.header__link:focus {
  background-color: var(--btn-ghost-bg-hover);
  color: var(--brand);
  outline: none;
}

.header__link:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 2px;
}

@media (max-width: 767px) {
  .header__container {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .header__logo {
    position: static;
    transform: none;
    order: 2;
    margin: 0 auto;
  }

  .header__burger {
    display: block;
    order: 1;
  }

  .header__nav {
    display: none;
    order: 3;
    width: 100%;
    margin-top: var(--space-y);
  }

  .header__nav.header__nav--open {
    display: block;
  }

  .header__menu {
    flex-direction: column;
    gap: 0;
    background-color: var(--surface-1);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: var(--space-y) 0;
  }

  .header__menu-item--left,
  .header__menu-item--right {
    margin: 0;
  }

  .header__link {
    display: block;
    padding: 12px var(--space-x);
    text-align: center;
    border-radius: 0;
  }

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

footer {
      background-color: #2c3e50;
      color: #ecf0f1;
      padding: 2rem 1rem;
      font-family: Arial, sans-serif;
    }
    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
    }
    .footer-top {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1.5rem;
    }
    .footer-logo a {
      font-size: 1.5rem;
      font-weight: bold;
      color: #e74c3c;
      text-decoration: none;
    }
    .footer-nav ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .footer-nav a {
      color: #bdc3c7;
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-nav a:hover {
      color: #e74c3c;
    }
    .footer-bottom {
      border-top: 1px solid #7f8c8d;
      padding-top: 1.5rem;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: flex-start;
      gap: 1rem;
    }
    .footer-contact {
      font-style: normal;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }
    .contact-item {
      font-size: 0.9rem;
    }
    .contact-item a {
      color: #ecf0f1;
      text-decoration: none;
    }
    .contact-item a:hover {
      color: #e74c3c;
    }
    .footer-legal {
      max-width: 500px;
    }
    .disclaimer {
      font-size: 0.8rem;
      line-height: 1.4;
      margin: 0 0 0.5rem 0;
    }
    .disclaimer a {
      color: #e74c3c;
      text-decoration: underline;
    }
    .disclaimer a:hover {
      color: #c0392b;
    }
    .copyright {
      font-size: 0.8rem;
      margin: 0;
    }
    @media (max-width: 768px) {
      .footer-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
      }
      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
      }
    }

.cookie-lv2 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-md);
    }

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

    .cookie-lv2__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

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

    .cookie-lv2__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

    .cookie-lv2__actions button[data-choice='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

.wp-lang-switcher-v7 {
        position: fixed;
        left: clamp(14px, 2vw, 24px);
        bottom: clamp(14px, 2vw, 24px);
        z-index: 99999;
        font-family: inherit;
    }

    .wp-lang-switcher-v7__trigger {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        border: 1px solid var(--border-on-surface);
        border-radius: 999px;
        padding: 10px 14px;
        background: var(--surface-1);
        color: var(--fg-on-surface);
        box-shadow: var(--shadow-md);
        cursor: pointer;
        transition: transform var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    }

    .wp-lang-switcher-v7__trigger:hover {
        transform: translateY(-1px);
        box-shadow: var(--shadow-lg);
    }

    .wp-lang-switcher-v7__icon {
        font-size: 15px;
        line-height: 1;
    }

    .wp-lang-switcher-v7__current {
        font-weight: 700;
        font-size: 12px;
        letter-spacing: 0.06em;
    }

    .wp-lang-switcher-v7__panel {
        margin-top: 10px;
        display: grid;
        gap: 6px;
        opacity: 0;
        pointer-events: none;
        transform: translateY(8px);
        transition: opacity var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
    }

    .wp-lang-switcher-v7__panel.open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .wp-lang-switcher-v7__panel button,
    .wp-lang-switcher-v7__panel a {
        min-width: 48px;
        border-radius: var(--radius-md);
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        padding: 8px 10px;
        text-decoration: none;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.04em;
        text-align: center;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .wp-lang-switcher-v7__panel button:hover,
    .wp-lang-switcher-v7__panel a:hover {
        background: var(--accent);
        border-color: transparent;
        color: var(--accent-contrast);
    }

.intro-block-l10 {
        padding: clamp(3.5rem, 8vw, 6.4rem) var(--space-x);
        background: linear-gradient(180deg, var(--surface-1), var(--surface-2));
        color: var(--fg-on-page);
    }

    .intro-block-l10__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .intro-block-l10__eyebrow {
        color: var(--brand);
        font-size: .82rem;
        letter-spacing: .1em;
        text-transform: uppercase;
    }

    .intro-block-l10__wrap h1 {
        margin: .6rem 0 0;
        font-size: clamp(2.4rem, 5vw, 4rem);
        line-height: 1.04;
    }

    .intro-block-l10__cols {
        margin-top: 1.15rem;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .intro-block-l10__cols strong {
        display: block;
        color: var(--fg-on-page);
    }

    .intro-block-l10__cols p {
        margin: .7rem 0 0;
        color: var(--neutral-600);
    }

    .intro-block-l10__actions {
        margin-top: 1rem;
        display: flex;
        gap: .75rem;
        flex-wrap: wrap;
    }

    .intro-block-l10__actions a {
        display: inline-flex;
        min-height: 2.8rem;
        align-items: center;
        justify-content: center;
        padding: 0 1rem;
        border-radius: var(--radius-md);
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    .intro-block-l10__actions a:first-child {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-color: var(--bg-primary);
    }

    @media (max-width: 760px) {
        .intro-block-l10__cols {
            grid-template-columns: 1fr;
        }
    }

    .intro-block-l10 {
        overflow: hidden;
    }

    .intro-block-l10__wrap {
        background-image: linear-gradient(rgba(255, 255, 255, .86), rgba(255, 255, 255, .86)), url('https://images.pexels.com/photos/3183197/pexels-photo-3183197.jpeg?auto=compress&cs=tinysrgb&w=800');
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        border-radius: var(--radius-xl);
        overflow: hidden;
        padding: var(--space-x)
    }

.values-cloud-c5 {
        padding: clamp(3.5rem, 8vw, 6rem) var(--space-x);
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
    }

    .values-cloud-c5__wrap {
        max-width: 62rem;
        margin: 0 auto;
    }

    .values-cloud-c5__head {
        text-align: center;
        margin-bottom: 1.1rem;
    }

    .values-cloud-c5__head p {
        margin: 0;
        color: rgba(255, 255, 255, .76);
    }

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

    .values-cloud-c5__cloud {
        display: flex;
        gap: .8rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .values-cloud-c5__cloud article {
        width: min(16rem, 100%);
        padding: 1rem;
        border-radius: 1.5rem;
        background: rgba(255, 255, 255, .14);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .values-cloud-c5__cloud p {
        margin: .45rem 0 0;

    }

    .values-cloud-c5__cloud span {
        display: block;
        margin-top: .55rem;
        color: rgba(255, 255, 255, .76);
    }

.why-choose-light-alt {

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

    .why-choose-light-alt .why-choose-light-alt__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

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

    }

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

    .why-choose-light-alt h2::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 0;
        width: 100%;
        height: 4px;
        background: var(--bg-primary);
        border-radius: var(--radius-sm);
        animation: shimmer 3s ease-in-out infinite;
    }

    @keyframes shimmer {
        0%, 100% {
            opacity: 1;
            transform: scaleX(1);
        }
        50% {
            opacity: 0.4;
            transform: scaleX(0.8);
        }
    }

    .why-choose-light-alt .why-choose-light-alt__subtitle {
        font-size: clamp(16px, 2vw, 20px);
        margin: 0;
        color: var(--neutral-600);
    }

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

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

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

    .why-choose-light-alt .why-choose-light-alt__wave {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg,
        var(--bg-primary) 0%,
        var(--accent) 50%,
        var(--bg-primary) 100%);
        background-size: 200% 100%;
        animation: wave 3s linear infinite;

        transition: opacity var(--anim-duration) var(--anim-ease);
    }

    @keyframes wave {
        0% {
            background-position: 0% 0%;
        }
        100% {
            background-position: 200% 0%;
        }
    }

    .why-choose-light-alt .why-choose-light-alt__item:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-lg);
    }

    .why-choose-light-alt .why-choose-light-alt__item:hover .why-choose-light-alt__wave {
        opacity: 1;
    }

    .why-choose-light-alt .why-choose-light-alt__number {
        flex-shrink: 0;
        width: 56px;
        height: 56px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-radius: var(--radius-md);
        font-size: clamp(20px, 2.5vw, 28px);
        font-weight: 700;
        position: relative;
        animation: sparkle 4s ease-in-out infinite;
    }

    @keyframes sparkle {
        0%, 100% {
            box-shadow: 0 0 0 rgba(0, 85, 183, 0);
        }
        10% {
            box-shadow: 0 0 20px rgba(0, 85, 183, 0.6);
        }
        20%, 80% {
            box-shadow: 0 0 0 rgba(0, 85, 183, 0);
        }
        90% {
            box-shadow: 0 0 20px rgba(0, 85, 183, 0.6);
        }
    }

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

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

    .why-choose-light-alt .why-choose-light-alt__item h3::before {
        content: '';
        position: absolute;
        left: -12px;
        top: 50%;
        transform: translateY(-50%);
        width: 4px;
        height: 0;
        background: var(--bg-primary);
        border-radius: var(--radius-sm);
        transition: height var(--anim-duration) var(--anim-ease);
    }

    .why-choose-light-alt .why-choose-light-alt__item:hover h3::before {
        height: 100%;
    }

    .why-choose-light-alt .why-choose-light-alt__item p {
        margin: 0;
        color: var(--neutral-600);
        line-height: var(--line-height-base);
    }

.visual-wave-c5 {
        padding: clamp(3.5rem, 8vw, 6rem) var(--space-x);
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
    }

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

    .visual-wave-c5__head {
        text-align: center;
        margin-bottom: 1rem;
    }

    .visual-wave-c5__head p {
        margin: 0;
        color: rgba(255, 255, 255, .76);
    }

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

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

    .visual-wave-c5__grid figure {
        margin: 0;
        overflow: hidden;
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .visual-wave-c5__image {
        overflow: hidden;
    }

    .visual-wave-c5__image img {
        display: block;
        width: 100%;
        height: 14rem;
        object-fit: cover;
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .visual-wave-c5__grid figure:hover img {
        transform: scale(1.05);
    }

    .visual-wave-c5__grid figcaption {
        padding: 1rem;
    }

    .visual-wave-c5__grid small {
        color: rgba(255, 255, 255, .76);
    }

    .visual-wave-c5__grid h3 {
        margin: .45rem 0 .35rem;
    }

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

.next-ux21 {
        padding: clamp(3rem, 7vw, 5.6rem) var(--space-x);
        background: var(--neutral-100);
        color: var(--neutral-900);
    }

    .next-ux21__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        gap: 1rem;
        align-items: end;
        flex-wrap: wrap;
    }

    .next-ux21__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

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

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

    .next-ux21__actions {
        max-width: var(--max-w);
        margin: 1rem auto 0;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
        gap: .75rem;
    }

    .next-ux21__actions a {
        display: block;
        padding: .95rem;
        border-radius: var(--radius-lg);
        background: var(--neutral-100);
        border: 1px solid var(--neutral-300);
        text-decoration: none;
        color: var(--neutral-900);
        box-shadow: var(--shadow-sm);
    }

    .next-ux21__actions span {
        display: block;
        margin-top: .35rem;
        color: var(--neutral-600);
    }

    .next-ux21 {
        overflow: hidden;
    }

    .next-ux21__wrap {
        background-image: linear-gradient(rgba(255, 255, 255, .86), rgba(255, 255, 255, .86)), url('https://images.pexels.com/photos/3184291/pexels-photo-3184291.jpeg?auto=compress&cs=tinysrgb&w=800');
        color: var(--neutral-900);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        border-radius: var(--radius-xl);
        overflow: hidden;
        padding: var(--gap);
        box-shadow: var(--shadow-sm)
    }

.header {
  background-color: var(--surface-1);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: var(--space-y) 0;
}

.header__container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.header__logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: 0.02em;
  order: 2;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.header__logo:hover {
  color: var(--brand-contrast);
}

.header__burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  order: 1;
  z-index: 10;
}

.header__burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--fg-on-surface);
  margin: 5px 0;
  border-radius: var(--radius-sm);
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.header__burger[aria-expanded="true"] .header__burger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.header__burger[aria-expanded="true"] .header__burger-line:nth-child(2) {
  opacity: 0;
}

.header__burger[aria-expanded="true"] .header__burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.header__nav {
  order: 1;
  flex: 1;
}

.header__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: var(--gap);
}

.header__menu-item--left {
  margin-right: auto;
}

.header__menu-item--right {
  margin-left: auto;
}

.header__link {
  color: var(--fg-on-surface);
  text-decoration: none;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  padding: 8px 12px;
  border-radius: var(--radius-md);
  transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}

.header__link:hover,
.header__link:focus {
  background-color: var(--btn-ghost-bg-hover);
  color: var(--brand);
  outline: none;
}

.header__link:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 2px;
}

@media (max-width: 767px) {
  .header__container {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .header__logo {
    position: static;
    transform: none;
    order: 2;
    margin: 0 auto;
  }

  .header__burger {
    display: block;
    order: 1;
  }

  .header__nav {
    display: none;
    order: 3;
    width: 100%;
    margin-top: var(--space-y);
  }

  .header__nav.header__nav--open {
    display: block;
  }

  .header__menu {
    flex-direction: column;
    gap: 0;
    background-color: var(--surface-1);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: var(--space-y) 0;
  }

  .header__menu-item--left,
  .header__menu-item--right {
    margin: 0;
  }

  .header__link {
    display: block;
    padding: 12px var(--space-x);
    text-align: center;
    border-radius: 0;
  }

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

footer {
      background-color: #2c3e50;
      color: #ecf0f1;
      padding: 2rem 1rem;
      font-family: Arial, sans-serif;
    }
    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
    }
    .footer-top {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1.5rem;
    }
    .footer-logo a {
      font-size: 1.5rem;
      font-weight: bold;
      color: #e74c3c;
      text-decoration: none;
    }
    .footer-nav ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .footer-nav a {
      color: #bdc3c7;
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-nav a:hover {
      color: #e74c3c;
    }
    .footer-bottom {
      border-top: 1px solid #7f8c8d;
      padding-top: 1.5rem;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: flex-start;
      gap: 1rem;
    }
    .footer-contact {
      font-style: normal;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }
    .contact-item {
      font-size: 0.9rem;
    }
    .contact-item a {
      color: #ecf0f1;
      text-decoration: none;
    }
    .contact-item a:hover {
      color: #e74c3c;
    }
    .footer-legal {
      max-width: 500px;
    }
    .disclaimer {
      font-size: 0.8rem;
      line-height: 1.4;
      margin: 0 0 0.5rem 0;
    }
    .disclaimer a {
      color: #e74c3c;
      text-decoration: underline;
    }
    .disclaimer a:hover {
      color: #c0392b;
    }
    .copyright {
      font-size: 0.8rem;
      margin: 0;
    }
    @media (max-width: 768px) {
      .footer-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
      }
      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
      }
    }

.cookie-lv2 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-md);
    }

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

    .cookie-lv2__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

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

    .cookie-lv2__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

    .cookie-lv2__actions button[data-choice='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

.product-list--light-v6 {

    padding: 48px 20px;
    background: var(--surface-light);
    color: var(--fg-on-surface-light);
}

.product-list__inner {
    max-width: 640px;
    margin: 0 auto;
}

.product-list__inner h2 {
    margin: 0 0 10px;
    font-size: clamp(22px,3.5vw,28px);
}

.product-list__list {
    margin: 0;
    padding: 0;
    list-style: none;
    border-radius: var(--radius-xl);
    background: var(--bg-page);
    border: 1px solid var(--border-on-surface-light);
    overflow: hidden;
}

.product-list__row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 8px 12px;
    border-top: 1px solid var(--border-on-surface-light);
}

.product-list__row:first-child {
    border-top: none;
}

.product-list__row-name {
    font-size: 0.9rem;
    color: var(--neutral-800);
}

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

.header {
  background-color: var(--surface-1);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: var(--space-y) 0;
}

.header__container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.header__logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: 0.02em;
  order: 2;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.header__logo:hover {
  color: var(--brand-contrast);
}

.header__burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  order: 1;
  z-index: 10;
}

.header__burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--fg-on-surface);
  margin: 5px 0;
  border-radius: var(--radius-sm);
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.header__burger[aria-expanded="true"] .header__burger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.header__burger[aria-expanded="true"] .header__burger-line:nth-child(2) {
  opacity: 0;
}

.header__burger[aria-expanded="true"] .header__burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.header__nav {
  order: 1;
  flex: 1;
}

.header__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: var(--gap);
}

.header__menu-item--left {
  margin-right: auto;
}

.header__menu-item--right {
  margin-left: auto;
}

.header__link {
  color: var(--fg-on-surface);
  text-decoration: none;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  padding: 8px 12px;
  border-radius: var(--radius-md);
  transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}

.header__link:hover,
.header__link:focus {
  background-color: var(--btn-ghost-bg-hover);
  color: var(--brand);
  outline: none;
}

.header__link:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 2px;
}

@media (max-width: 767px) {
  .header__container {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .header__logo {
    position: static;
    transform: none;
    order: 2;
    margin: 0 auto;
  }

  .header__burger {
    display: block;
    order: 1;
  }

  .header__nav {
    display: none;
    order: 3;
    width: 100%;
    margin-top: var(--space-y);
  }

  .header__nav.header__nav--open {
    display: block;
  }

  .header__menu {
    flex-direction: column;
    gap: 0;
    background-color: var(--surface-1);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: var(--space-y) 0;
  }

  .header__menu-item--left,
  .header__menu-item--right {
    margin: 0;
  }

  .header__link {
    display: block;
    padding: 12px var(--space-x);
    text-align: center;
    border-radius: 0;
  }

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

footer {
      background-color: #2c3e50;
      color: #ecf0f1;
      padding: 2rem 1rem;
      font-family: Arial, sans-serif;
    }
    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
    }
    .footer-top {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1.5rem;
    }
    .footer-logo a {
      font-size: 1.5rem;
      font-weight: bold;
      color: #e74c3c;
      text-decoration: none;
    }
    .footer-nav ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .footer-nav a {
      color: #bdc3c7;
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-nav a:hover {
      color: #e74c3c;
    }
    .footer-bottom {
      border-top: 1px solid #7f8c8d;
      padding-top: 1.5rem;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: flex-start;
      gap: 1rem;
    }
    .footer-contact {
      font-style: normal;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }
    .contact-item {
      font-size: 0.9rem;
    }
    .contact-item a {
      color: #ecf0f1;
      text-decoration: none;
    }
    .contact-item a:hover {
      color: #e74c3c;
    }
    .footer-legal {
      max-width: 500px;
    }
    .disclaimer {
      font-size: 0.8rem;
      line-height: 1.4;
      margin: 0 0 0.5rem 0;
    }
    .disclaimer a {
      color: #e74c3c;
      text-decoration: underline;
    }
    .disclaimer a:hover {
      color: #c0392b;
    }
    .copyright {
      font-size: 0.8rem;
      margin: 0;
    }
    @media (max-width: 768px) {
      .footer-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
      }
      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
      }
    }

.cookie-lv2 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-md);
    }

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

    .cookie-lv2__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

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

    .cookie-lv2__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

    .cookie-lv2__actions button[data-choice='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

.product-item {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.social-l1 {

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

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

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

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

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

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

    .social-l1__card {
        grid-column: span 4;
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
        padding: 16px;
        position: relative;
        transform-style: preserve-3d;
        transition: transform 420ms var(--anim-ease);
        min-height: 170px;
    }

    .social-l1__card:hover {
        transform: rotateY(180deg);
    }

    .social-l1__front,
    .social-l1__back {
        position: absolute;
        inset: 0;
        padding: 16px;
        backface-visibility: hidden;
        border-radius: inherit;
    }

    .social-l1__front::before {
        content: '';
        position: absolute;
        inset: -1px;
        background: radial-gradient(260px 130px at 20% 15%, rgba(0, 86, 179, 0.12), transparent 60%),
        radial-gradient(240px 140px at 85% 35%, rgba(255, 107, 53, 0.12), transparent 62%);
        pointer-events: none;
        border-radius: inherit;
    }

    .social-l1__chip {
        display: inline-flex;
        padding: 6px 10px;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border: 1px solid rgba(0, 0, 0, 0.06);
        font-weight: 900;
        position: relative;
    }

    .social-l1__big {
        margin-top: 12px;
        font-weight: 900;
        font-size: clamp(18px, 2.4vw, 28px);
        letter-spacing: -.01em;
        position: relative;
    }

    .social-l1__small {
        margin-top: 8px;
        color: var(--neutral-600);
        line-height: var(--line-height-base);
        position: relative;
    }

    .social-l1__back {
        transform: rotateY(180deg);
        background: var(--bg-alt);
        border: 1px solid var(--neutral-300);
    }

    .social-l1__backTitle {
        font-weight: 900;
        color: var(--bg-primary);
        letter-spacing: -.01em;
        margin-bottom: 8px;
    }

    .social-l1__backText {
        color: var(--neutral-600);
        line-height: var(--line-height-base);
    }

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

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

    @media (prefers-reduced-motion: reduce) {
        .social-l1__card {
            transition: none;
        }
    }

.header {
  background-color: var(--surface-1);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: var(--space-y) 0;
}

.header__container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.header__logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: 0.02em;
  order: 2;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.header__logo:hover {
  color: var(--brand-contrast);
}

.header__burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  order: 1;
  z-index: 10;
}

.header__burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--fg-on-surface);
  margin: 5px 0;
  border-radius: var(--radius-sm);
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.header__burger[aria-expanded="true"] .header__burger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.header__burger[aria-expanded="true"] .header__burger-line:nth-child(2) {
  opacity: 0;
}

.header__burger[aria-expanded="true"] .header__burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.header__nav {
  order: 1;
  flex: 1;
}

.header__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: var(--gap);
}

.header__menu-item--left {
  margin-right: auto;
}

.header__menu-item--right {
  margin-left: auto;
}

.header__link {
  color: var(--fg-on-surface);
  text-decoration: none;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  padding: 8px 12px;
  border-radius: var(--radius-md);
  transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}

.header__link:hover,
.header__link:focus {
  background-color: var(--btn-ghost-bg-hover);
  color: var(--brand);
  outline: none;
}

.header__link:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 2px;
}

@media (max-width: 767px) {
  .header__container {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .header__logo {
    position: static;
    transform: none;
    order: 2;
    margin: 0 auto;
  }

  .header__burger {
    display: block;
    order: 1;
  }

  .header__nav {
    display: none;
    order: 3;
    width: 100%;
    margin-top: var(--space-y);
  }

  .header__nav.header__nav--open {
    display: block;
  }

  .header__menu {
    flex-direction: column;
    gap: 0;
    background-color: var(--surface-1);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: var(--space-y) 0;
  }

  .header__menu-item--left,
  .header__menu-item--right {
    margin: 0;
  }

  .header__link {
    display: block;
    padding: 12px var(--space-x);
    text-align: center;
    border-radius: 0;
  }

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

footer {
      background-color: #2c3e50;
      color: #ecf0f1;
      padding: 2rem 1rem;
      font-family: Arial, sans-serif;
    }
    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
    }
    .footer-top {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1.5rem;
    }
    .footer-logo a {
      font-size: 1.5rem;
      font-weight: bold;
      color: #e74c3c;
      text-decoration: none;
    }
    .footer-nav ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .footer-nav a {
      color: #bdc3c7;
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-nav a:hover {
      color: #e74c3c;
    }
    .footer-bottom {
      border-top: 1px solid #7f8c8d;
      padding-top: 1.5rem;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: flex-start;
      gap: 1rem;
    }
    .footer-contact {
      font-style: normal;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }
    .contact-item {
      font-size: 0.9rem;
    }
    .contact-item a {
      color: #ecf0f1;
      text-decoration: none;
    }
    .contact-item a:hover {
      color: #e74c3c;
    }
    .footer-legal {
      max-width: 500px;
    }
    .disclaimer {
      font-size: 0.8rem;
      line-height: 1.4;
      margin: 0 0 0.5rem 0;
    }
    .disclaimer a {
      color: #e74c3c;
      text-decoration: underline;
    }
    .disclaimer a:hover {
      color: #c0392b;
    }
    .copyright {
      font-size: 0.8rem;
      margin: 0;
    }
    @media (max-width: 768px) {
      .footer-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
      }
      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
      }
    }

.cookie-lv2 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-md);
    }

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

    .cookie-lv2__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

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

    .cookie-lv2__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

    .cookie-lv2__actions button[data-choice='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

.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-color: var(--surface-1);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: var(--space-y) 0;
}

.header__container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.header__logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: 0.02em;
  order: 2;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.header__logo:hover {
  color: var(--brand-contrast);
}

.header__burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  order: 1;
  z-index: 10;
}

.header__burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--fg-on-surface);
  margin: 5px 0;
  border-radius: var(--radius-sm);
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.header__burger[aria-expanded="true"] .header__burger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.header__burger[aria-expanded="true"] .header__burger-line:nth-child(2) {
  opacity: 0;
}

.header__burger[aria-expanded="true"] .header__burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.header__nav {
  order: 1;
  flex: 1;
}

.header__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: var(--gap);
}

.header__menu-item--left {
  margin-right: auto;
}

.header__menu-item--right {
  margin-left: auto;
}

.header__link {
  color: var(--fg-on-surface);
  text-decoration: none;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  padding: 8px 12px;
  border-radius: var(--radius-md);
  transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}

.header__link:hover,
.header__link:focus {
  background-color: var(--btn-ghost-bg-hover);
  color: var(--brand);
  outline: none;
}

.header__link:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 2px;
}

@media (max-width: 767px) {
  .header__container {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .header__logo {
    position: static;
    transform: none;
    order: 2;
    margin: 0 auto;
  }

  .header__burger {
    display: block;
    order: 1;
  }

  .header__nav {
    display: none;
    order: 3;
    width: 100%;
    margin-top: var(--space-y);
  }

  .header__nav.header__nav--open {
    display: block;
  }

  .header__menu {
    flex-direction: column;
    gap: 0;
    background-color: var(--surface-1);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: var(--space-y) 0;
  }

  .header__menu-item--left,
  .header__menu-item--right {
    margin: 0;
  }

  .header__link {
    display: block;
    padding: 12px var(--space-x);
    text-align: center;
    border-radius: 0;
  }

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

footer {
      background-color: #2c3e50;
      color: #ecf0f1;
      padding: 2rem 1rem;
      font-family: Arial, sans-serif;
    }
    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
    }
    .footer-top {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1.5rem;
    }
    .footer-logo a {
      font-size: 1.5rem;
      font-weight: bold;
      color: #e74c3c;
      text-decoration: none;
    }
    .footer-nav ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .footer-nav a {
      color: #bdc3c7;
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-nav a:hover {
      color: #e74c3c;
    }
    .footer-bottom {
      border-top: 1px solid #7f8c8d;
      padding-top: 1.5rem;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: flex-start;
      gap: 1rem;
    }
    .footer-contact {
      font-style: normal;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }
    .contact-item {
      font-size: 0.9rem;
    }
    .contact-item a {
      color: #ecf0f1;
      text-decoration: none;
    }
    .contact-item a:hover {
      color: #e74c3c;
    }
    .footer-legal {
      max-width: 500px;
    }
    .disclaimer {
      font-size: 0.8rem;
      line-height: 1.4;
      margin: 0 0 0.5rem 0;
    }
    .disclaimer a {
      color: #e74c3c;
      text-decoration: underline;
    }
    .disclaimer a:hover {
      color: #c0392b;
    }
    .copyright {
      font-size: 0.8rem;
      margin: 0;
    }
    @media (max-width: 768px) {
      .footer-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
      }
      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
      }
    }

.cookie-lv2 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-md);
    }

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

    .cookie-lv2__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

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

    .cookie-lv2__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

    .cookie-lv2__actions button[data-choice='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

.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__description ul {
        list-style: disc;
        padding-left: 1.5rem;
        margin-top: 0.5rem;
    }

    .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);
        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-color: var(--surface-1);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: var(--space-y) 0;
}

.header__container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.header__logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: 0.02em;
  order: 2;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.header__logo:hover {
  color: var(--brand-contrast);
}

.header__burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  order: 1;
  z-index: 10;
}

.header__burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--fg-on-surface);
  margin: 5px 0;
  border-radius: var(--radius-sm);
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.header__burger[aria-expanded="true"] .header__burger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.header__burger[aria-expanded="true"] .header__burger-line:nth-child(2) {
  opacity: 0;
}

.header__burger[aria-expanded="true"] .header__burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.header__nav {
  order: 1;
  flex: 1;
}

.header__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: var(--gap);
}

.header__menu-item--left {
  margin-right: auto;
}

.header__menu-item--right {
  margin-left: auto;
}

.header__link {
  color: var(--fg-on-surface);
  text-decoration: none;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  padding: 8px 12px;
  border-radius: var(--radius-md);
  transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}

.header__link:hover,
.header__link:focus {
  background-color: var(--btn-ghost-bg-hover);
  color: var(--brand);
  outline: none;
}

.header__link:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 2px;
}

@media (max-width: 767px) {
  .header__container {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .header__logo {
    position: static;
    transform: none;
    order: 2;
    margin: 0 auto;
  }

  .header__burger {
    display: block;
    order: 1;
  }

  .header__nav {
    display: none;
    order: 3;
    width: 100%;
    margin-top: var(--space-y);
  }

  .header__nav.header__nav--open {
    display: block;
  }

  .header__menu {
    flex-direction: column;
    gap: 0;
    background-color: var(--surface-1);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: var(--space-y) 0;
  }

  .header__menu-item--left,
  .header__menu-item--right {
    margin: 0;
  }

  .header__link {
    display: block;
    padding: 12px var(--space-x);
    text-align: center;
    border-radius: 0;
  }

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

footer {
      background-color: #2c3e50;
      color: #ecf0f1;
      padding: 2rem 1rem;
      font-family: Arial, sans-serif;
    }
    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
    }
    .footer-top {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1.5rem;
    }
    .footer-logo a {
      font-size: 1.5rem;
      font-weight: bold;
      color: #e74c3c;
      text-decoration: none;
    }
    .footer-nav ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .footer-nav a {
      color: #bdc3c7;
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-nav a:hover {
      color: #e74c3c;
    }
    .footer-bottom {
      border-top: 1px solid #7f8c8d;
      padding-top: 1.5rem;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: flex-start;
      gap: 1rem;
    }
    .footer-contact {
      font-style: normal;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }
    .contact-item {
      font-size: 0.9rem;
    }
    .contact-item a {
      color: #ecf0f1;
      text-decoration: none;
    }
    .contact-item a:hover {
      color: #e74c3c;
    }
    .footer-legal {
      max-width: 500px;
    }
    .disclaimer {
      font-size: 0.8rem;
      line-height: 1.4;
      margin: 0 0 0.5rem 0;
    }
    .disclaimer a {
      color: #e74c3c;
      text-decoration: underline;
    }
    .disclaimer a:hover {
      color: #c0392b;
    }
    .copyright {
      font-size: 0.8rem;
      margin: 0;
    }
    @media (max-width: 768px) {
      .footer-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
      }
      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
      }
    }

.cookie-lv2 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-md);
    }

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

    .cookie-lv2__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

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

    .cookie-lv2__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

    .cookie-lv2__actions button[data-choice='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

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

body{margin:0;padding:0;font-family:var(--font-family);font-size:var(--font-size-base);line-height:var(--line-height-base);box-sizing:border-box;background:var(--bg-page);color:var(--fg-on-page)}
*{box-sizing:border-box;}
.frm-lx10{padding:calc(var(--space-y)*2.7) var(--space-x)}
.frm-lx10 .frm-bounds{max-width:var(--max-w);margin:0 auto;display:grid;gap:.8rem}
.frm-lx10 .frm-copy{display:flex;justify-content:space-between;gap:1rem;align-items:end}
.frm-lx10 h2{margin:0;font-size:clamp(1.75rem,3.1vw,2.45rem)}
.frm-lx10 .frm-copy p{margin:0;color:var(--fg-on-surface-light);max-width:55ch}
.frm-lx10 .frm-frame{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:.6rem;padding:.9rem;border-radius:var(--radius-xl);background:var(--surface-2);border:1px solid var(--border-on-surface)}
.frm-lx10 label{grid-column:span 2;display:grid;gap:.22rem;padding:.65rem;border:1px solid var(--border-on-surface-light);border-radius:var(--radius-md);background:var(--surface-1)}
.frm-lx10 label span{font-size:.8rem;font-weight:700;color:var(--fg-on-surface-light)}
.frm-lx10 input,.frm-lx10 textarea{width:100%;padding:.64rem .72rem;border:1px solid var(--border-on-surface-light);border-radius:var(--radius-sm);font:inherit;background:var(--surface-1);color:var(--fg-on-surface)}
.frm-lx10 .frm-wide{grid-column:1/-1}
.frm-lx10 textarea{min-height:130px;resize:vertical}
.frm-lx10 button{grid-column:1/-1;justify-self:start;padding:.82rem 1.15rem;border-radius:var(--radius-md);border:0;background:var(--bg-primary);color:var(--fg-on-primary);font-weight:700;cursor:pointer}
@keyframes frmPulse{0%,100%{box-shadow:0 0 0 0 color-mix(in srgb,var(--ring) 0%, transparent)}50%{box-shadow:0 0 0 6px color-mix(in srgb,var(--ring) 18%, transparent)}}
.frm-lx10 button:focus-visible{animation:frmPulse .8s ease-out 1}
@media (max-width:900px){.frm-lx10 .frm-copy{display:grid}.frm-lx10 .frm-frame{grid-template-columns:1fr}.frm-lx10 label{grid-column:1/-1}}

.connect--colored-v5 {
        padding: 64px 20px;
        background: radial-gradient(circle at top left, rgba(59, 130, 246, 0.35), transparent),
        radial-gradient(circle at bottom right, rgba(139, 92, 246, 0.45), transparent),
        var(--neutral-900);
        color: var(--neutral-0);
    }

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

    .connect__header {
        text-align: center;
        margin-bottom: 32px;
    }

    .connect__eyebrow {
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 0.16em;
        color: rgba(191, 219, 254, 0.9);
        margin: 0 0 0.5rem;
    }

    .connect__header h2 {
        margin: 0 0 0.5rem;
        font-size: clamp(24px, 4vw, 32px);
        color: var(--brand-contrast);
    }

    .connect__text {
        margin: 0;
        color: var(--neutral-300);
    }

    .connect__channels {
        margin-top: 24px;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 18px;
    }

    .connect__channel {
        background: rgba(15, 23, 42, 0.95);
        border-radius: var(--radius-xl);
        padding: 16px 18px;
        border: 1px solid rgba(148, 163, 184, 0.7);
        display: grid;
        gap: 8px;
        box-shadow: var(--shadow-md);
    }

    .connect__icon {
        width: 36px;
        height: 36px;
        border-radius: 12px;
        background: rgba(17, 24, 39, 0.96);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .connect__channel-title {
        margin: 0;
        font-size: 1rem;
        color: var(--brand-contrast);
    }

    .connect__channel-text {
        margin: 0;
        font-size: 0.9rem;
        color: rgba(226, 232, 240, 0.9);
    }

    .connect__channel-link {
        margin-top: 4px;
        font-size: 0.88rem;
        color: var(--bg-accent);
        text-decoration: none;
    }

    .connect__channel-link:hover {
        text-decoration: underline;
    }

body{margin:0;padding:0;font-family:var(--font-family);font-size:var(--font-size-base);line-height:var(--line-height-base);box-sizing:border-box;background:var(--bg-page);color:var(--fg-on-page)}
*{box-sizing:border-box;}
.con-lx4{padding:calc(var(--space-y)*3) var(--space-x);background:var(--bg-alt)}
.con-lx4 .con-wrap{max-width:var(--max-w);margin:0 auto}
.con-lx4 h2{margin:0;font-size:clamp(1.75rem,3.2vw,2.5rem)}
.con-lx4 .con-sub{margin:.42rem 0 1rem;color:var(--fg-on-surface-light)}
.con-lx4 .con-strips{display:grid;gap:.55rem}
.con-lx4 .con-strips article{display:flex;justify-content:space-between;gap:1rem;align-items:center;padding:.85rem 1rem;border-radius:var(--radius-lg);background:var(--surface-1);border-left:4px solid var(--bg-primary)}
.con-lx4 h3{margin:0;font-size:1rem}
.con-lx4 .con-strips p{margin:0;color:var(--fg-on-surface-light)}
.con-lx4 a{text-decoration:none;color:var(--link)}
.con-lx4 .con-flow{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.6rem;margin-top:.8rem}
.con-lx4 .con-flow a{display:flex;justify-content:space-between;gap:.75rem;padding:.75rem .9rem;border-radius:var(--radius-md);background:var(--surface-1);border:1px solid var(--border-on-surface)}
.con-lx4 .con-flow span{color:var(--fg-on-surface-light)}
@media (max-width:760px){.con-lx4 .con-strips article{display:grid}.con-lx4 .con-flow{grid-template-columns:1fr}}

.header {
  background-color: var(--surface-1);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: var(--space-y) 0;
}

.header__container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.header__logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: 0.02em;
  order: 2;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.header__logo:hover {
  color: var(--brand-contrast);
}

.header__burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  order: 1;
  z-index: 10;
}

.header__burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--fg-on-surface);
  margin: 5px 0;
  border-radius: var(--radius-sm);
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.header__burger[aria-expanded="true"] .header__burger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.header__burger[aria-expanded="true"] .header__burger-line:nth-child(2) {
  opacity: 0;
}

.header__burger[aria-expanded="true"] .header__burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.header__nav {
  order: 1;
  flex: 1;
}

.header__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: var(--gap);
}

.header__menu-item--left {
  margin-right: auto;
}

.header__menu-item--right {
  margin-left: auto;
}

.header__link {
  color: var(--fg-on-surface);
  text-decoration: none;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  padding: 8px 12px;
  border-radius: var(--radius-md);
  transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}

.header__link:hover,
.header__link:focus {
  background-color: var(--btn-ghost-bg-hover);
  color: var(--brand);
  outline: none;
}

.header__link:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 2px;
}

@media (max-width: 767px) {
  .header__container {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .header__logo {
    position: static;
    transform: none;
    order: 2;
    margin: 0 auto;
  }

  .header__burger {
    display: block;
    order: 1;
  }

  .header__nav {
    display: none;
    order: 3;
    width: 100%;
    margin-top: var(--space-y);
  }

  .header__nav.header__nav--open {
    display: block;
  }

  .header__menu {
    flex-direction: column;
    gap: 0;
    background-color: var(--surface-1);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: var(--space-y) 0;
  }

  .header__menu-item--left,
  .header__menu-item--right {
    margin: 0;
  }

  .header__link {
    display: block;
    padding: 12px var(--space-x);
    text-align: center;
    border-radius: 0;
  }

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

footer {
      background-color: #2c3e50;
      color: #ecf0f1;
      padding: 2rem 1rem;
      font-family: Arial, sans-serif;
    }
    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
    }
    .footer-top {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1.5rem;
    }
    .footer-logo a {
      font-size: 1.5rem;
      font-weight: bold;
      color: #e74c3c;
      text-decoration: none;
    }
    .footer-nav ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .footer-nav a {
      color: #bdc3c7;
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-nav a:hover {
      color: #e74c3c;
    }
    .footer-bottom {
      border-top: 1px solid #7f8c8d;
      padding-top: 1.5rem;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: flex-start;
      gap: 1rem;
    }
    .footer-contact {
      font-style: normal;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }
    .contact-item {
      font-size: 0.9rem;
    }
    .contact-item a {
      color: #ecf0f1;
      text-decoration: none;
    }
    .contact-item a:hover {
      color: #e74c3c;
    }
    .footer-legal {
      max-width: 500px;
    }
    .disclaimer {
      font-size: 0.8rem;
      line-height: 1.4;
      margin: 0 0 0.5rem 0;
    }
    .disclaimer a {
      color: #e74c3c;
      text-decoration: underline;
    }
    .disclaimer a:hover {
      color: #c0392b;
    }
    .copyright {
      font-size: 0.8rem;
      margin: 0;
    }
    @media (max-width: 768px) {
      .footer-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
      }
      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
      }
    }

.cookie-lv2 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-md);
    }

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

    .cookie-lv2__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

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

    .cookie-lv2__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

    .cookie-lv2__actions button[data-choice='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

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

.header {
  background-color: var(--surface-1);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: var(--space-y) 0;
}

.header__container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.header__logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: 0.02em;
  order: 2;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.header__logo:hover {
  color: var(--brand-contrast);
}

.header__burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  order: 1;
  z-index: 10;
}

.header__burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--fg-on-surface);
  margin: 5px 0;
  border-radius: var(--radius-sm);
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.header__burger[aria-expanded="true"] .header__burger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.header__burger[aria-expanded="true"] .header__burger-line:nth-child(2) {
  opacity: 0;
}

.header__burger[aria-expanded="true"] .header__burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.header__nav {
  order: 1;
  flex: 1;
}

.header__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: var(--gap);
}

.header__menu-item--left {
  margin-right: auto;
}

.header__menu-item--right {
  margin-left: auto;
}

.header__link {
  color: var(--fg-on-surface);
  text-decoration: none;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  padding: 8px 12px;
  border-radius: var(--radius-md);
  transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}

.header__link:hover,
.header__link:focus {
  background-color: var(--btn-ghost-bg-hover);
  color: var(--brand);
  outline: none;
}

.header__link:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 2px;
}

@media (max-width: 767px) {
  .header__container {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .header__logo {
    position: static;
    transform: none;
    order: 2;
    margin: 0 auto;
  }

  .header__burger {
    display: block;
    order: 1;
  }

  .header__nav {
    display: none;
    order: 3;
    width: 100%;
    margin-top: var(--space-y);
  }

  .header__nav.header__nav--open {
    display: block;
  }

  .header__menu {
    flex-direction: column;
    gap: 0;
    background-color: var(--surface-1);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: var(--space-y) 0;
  }

  .header__menu-item--left,
  .header__menu-item--right {
    margin: 0;
  }

  .header__link {
    display: block;
    padding: 12px var(--space-x);
    text-align: center;
    border-radius: 0;
  }

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

footer {
      background-color: #2c3e50;
      color: #ecf0f1;
      padding: 2rem 1rem;
      font-family: Arial, sans-serif;
    }
    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
    }
    .footer-top {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1.5rem;
    }
    .footer-logo a {
      font-size: 1.5rem;
      font-weight: bold;
      color: #e74c3c;
      text-decoration: none;
    }
    .footer-nav ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .footer-nav a {
      color: #bdc3c7;
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-nav a:hover {
      color: #e74c3c;
    }
    .footer-bottom {
      border-top: 1px solid #7f8c8d;
      padding-top: 1.5rem;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: flex-start;
      gap: 1rem;
    }
    .footer-contact {
      font-style: normal;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }
    .contact-item {
      font-size: 0.9rem;
    }
    .contact-item a {
      color: #ecf0f1;
      text-decoration: none;
    }
    .contact-item a:hover {
      color: #e74c3c;
    }
    .footer-legal {
      max-width: 500px;
    }
    .disclaimer {
      font-size: 0.8rem;
      line-height: 1.4;
      margin: 0 0 0.5rem 0;
    }
    .disclaimer a {
      color: #e74c3c;
      text-decoration: underline;
    }
    .disclaimer a:hover {
      color: #c0392b;
    }
    .copyright {
      font-size: 0.8rem;
      margin: 0;
    }
    @media (max-width: 768px) {
      .footer-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
      }
      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
      }
    }

.cookie-lv2 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-md);
    }

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

    .cookie-lv2__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

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

    .cookie-lv2__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

    .cookie-lv2__actions button[data-choice='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

.policy-layout-c {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

    .policy-layout-c .wrap {
        max-width: 920px;
        margin: 0 auto;
    }

    .policy-layout-c .section-head {
        margin-bottom: 14px;
    }

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

    .policy-layout-c .section-head p {
        margin: 10px 0 0;
        opacity: .92;
    }

    .policy-layout-c .stack {
        display: grid;
        gap: 10px;
    }

    .policy-layout-c article {
        border: 1px solid rgba(255, 255, 255, .3);
        border-radius: var(--radius-md);
        padding: 12px;
        background: rgba(255, 255, 255, .1);
    }

    .policy-layout-c h3 {
        margin: 0;
        display: flex;
        gap: 8px;
        align-items: center;
    }

    .policy-layout-c h3 span {
        display: inline-grid;
        place-items: center;
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: rgba(255, 255, 255, .18);
    }

    .policy-layout-c article p {
        margin: 8px 0 0;
        opacity: .95;
    }

.header {
  background-color: var(--surface-1);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: var(--space-y) 0;
}

.header__container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.header__logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: 0.02em;
  order: 2;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.header__logo:hover {
  color: var(--brand-contrast);
}

.header__burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  order: 1;
  z-index: 10;
}

.header__burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--fg-on-surface);
  margin: 5px 0;
  border-radius: var(--radius-sm);
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.header__burger[aria-expanded="true"] .header__burger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.header__burger[aria-expanded="true"] .header__burger-line:nth-child(2) {
  opacity: 0;
}

.header__burger[aria-expanded="true"] .header__burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.header__nav {
  order: 1;
  flex: 1;
}

.header__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: var(--gap);
}

.header__menu-item--left {
  margin-right: auto;
}

.header__menu-item--right {
  margin-left: auto;
}

.header__link {
  color: var(--fg-on-surface);
  text-decoration: none;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  padding: 8px 12px;
  border-radius: var(--radius-md);
  transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}

.header__link:hover,
.header__link:focus {
  background-color: var(--btn-ghost-bg-hover);
  color: var(--brand);
  outline: none;
}

.header__link:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 2px;
}

@media (max-width: 767px) {
  .header__container {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .header__logo {
    position: static;
    transform: none;
    order: 2;
    margin: 0 auto;
  }

  .header__burger {
    display: block;
    order: 1;
  }

  .header__nav {
    display: none;
    order: 3;
    width: 100%;
    margin-top: var(--space-y);
  }

  .header__nav.header__nav--open {
    display: block;
  }

  .header__menu {
    flex-direction: column;
    gap: 0;
    background-color: var(--surface-1);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: var(--space-y) 0;
  }

  .header__menu-item--left,
  .header__menu-item--right {
    margin: 0;
  }

  .header__link {
    display: block;
    padding: 12px var(--space-x);
    text-align: center;
    border-radius: 0;
  }

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

footer {
      background-color: #2c3e50;
      color: #ecf0f1;
      padding: 2rem 1rem;
      font-family: Arial, sans-serif;
    }
    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
    }
    .footer-top {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1.5rem;
    }
    .footer-logo a {
      font-size: 1.5rem;
      font-weight: bold;
      color: #e74c3c;
      text-decoration: none;
    }
    .footer-nav ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .footer-nav a {
      color: #bdc3c7;
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-nav a:hover {
      color: #e74c3c;
    }
    .footer-bottom {
      border-top: 1px solid #7f8c8d;
      padding-top: 1.5rem;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: flex-start;
      gap: 1rem;
    }
    .footer-contact {
      font-style: normal;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }
    .contact-item {
      font-size: 0.9rem;
    }
    .contact-item a {
      color: #ecf0f1;
      text-decoration: none;
    }
    .contact-item a:hover {
      color: #e74c3c;
    }
    .footer-legal {
      max-width: 500px;
    }
    .disclaimer {
      font-size: 0.8rem;
      line-height: 1.4;
      margin: 0 0 0.5rem 0;
    }
    .disclaimer a {
      color: #e74c3c;
      text-decoration: underline;
    }
    .disclaimer a:hover {
      color: #c0392b;
    }
    .copyright {
      font-size: 0.8rem;
      margin: 0;
    }
    @media (max-width: 768px) {
      .footer-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
      }
      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
      }
    }

.cookie-lv2 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-md);
    }

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

    .cookie-lv2__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

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

    .cookie-lv2__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

    .cookie-lv2__actions button[data-choice='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

body{margin:0;padding:0;font-family:var(--font-family);box-sizing:border-box;}
*{box-sizing:border-box;}
.thank-u5{padding:calc(var(--space-y)*2.9) var(--space-x);background:var(--neutral-900);color:var(--neutral-0)} .thank-u5 .shell{max-width:var(--max-w);margin:0 auto;display:grid;gap:var(--gap)} .thank-u5 h2{margin:0;font-size:clamp(1.85rem,3.6vw,2.8rem);line-height:1.1} .thank-u5 .sub{margin:.35rem 0 0;opacity:.9;} .thank-u5 article,.thank-u5 li{padding:.85rem;border-radius:var(--radius-sm);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);list-style:none} .thank-u5 p{margin:0} .thank-u5 a{text-decoration:none;color:inherit;font-weight:700} .thank-u5 .split{display:grid;grid-template-columns:1fr 1fr;gap:var(--gap)} .thank-u5 .panel{padding:1rem;border-radius:var(--radius-lg);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover)} .thank-u5 .grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:.55rem} @media (max-width:860px){.thank-u5 .split,.thank-u5 .media,.thank-u5 .grid,.thank-u5 .cards,.thank-u5 .bento,.thank-u5 .foot{grid-template-columns:1fr}}

.header {
  background-color: var(--surface-1);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: var(--space-y) 0;
}

.header__container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.header__logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: 0.02em;
  order: 2;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.header__logo:hover {
  color: var(--brand-contrast);
}

.header__burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  order: 1;
  z-index: 10;
}

.header__burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--fg-on-surface);
  margin: 5px 0;
  border-radius: var(--radius-sm);
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.header__burger[aria-expanded="true"] .header__burger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.header__burger[aria-expanded="true"] .header__burger-line:nth-child(2) {
  opacity: 0;
}

.header__burger[aria-expanded="true"] .header__burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.header__nav {
  order: 1;
  flex: 1;
}

.header__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: var(--gap);
}

.header__menu-item--left {
  margin-right: auto;
}

.header__menu-item--right {
  margin-left: auto;
}

.header__link {
  color: var(--fg-on-surface);
  text-decoration: none;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  padding: 8px 12px;
  border-radius: var(--radius-md);
  transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}

.header__link:hover,
.header__link:focus {
  background-color: var(--btn-ghost-bg-hover);
  color: var(--brand);
  outline: none;
}

.header__link:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 2px;
}

@media (max-width: 767px) {
  .header__container {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .header__logo {
    position: static;
    transform: none;
    order: 2;
    margin: 0 auto;
  }

  .header__burger {
    display: block;
    order: 1;
  }

  .header__nav {
    display: none;
    order: 3;
    width: 100%;
    margin-top: var(--space-y);
  }

  .header__nav.header__nav--open {
    display: block;
  }

  .header__menu {
    flex-direction: column;
    gap: 0;
    background-color: var(--surface-1);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: var(--space-y) 0;
  }

  .header__menu-item--left,
  .header__menu-item--right {
    margin: 0;
  }

  .header__link {
    display: block;
    padding: 12px var(--space-x);
    text-align: center;
    border-radius: 0;
  }

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

footer {
      background-color: #2c3e50;
      color: #ecf0f1;
      padding: 2rem 1rem;
      font-family: Arial, sans-serif;
    }
    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
    }
    .footer-top {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1.5rem;
    }
    .footer-logo a {
      font-size: 1.5rem;
      font-weight: bold;
      color: #e74c3c;
      text-decoration: none;
    }
    .footer-nav ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .footer-nav a {
      color: #bdc3c7;
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-nav a:hover {
      color: #e74c3c;
    }
    .footer-bottom {
      border-top: 1px solid #7f8c8d;
      padding-top: 1.5rem;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: flex-start;
      gap: 1rem;
    }
    .footer-contact {
      font-style: normal;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }
    .contact-item {
      font-size: 0.9rem;
    }
    .contact-item a {
      color: #ecf0f1;
      text-decoration: none;
    }
    .contact-item a:hover {
      color: #e74c3c;
    }
    .footer-legal {
      max-width: 500px;
    }
    .disclaimer {
      font-size: 0.8rem;
      line-height: 1.4;
      margin: 0 0 0.5rem 0;
    }
    .disclaimer a {
      color: #e74c3c;
      text-decoration: underline;
    }
    .disclaimer a:hover {
      color: #c0392b;
    }
    .copyright {
      font-size: 0.8rem;
      margin: 0;
    }
    @media (max-width: 768px) {
      .footer-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
      }
      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
      }
    }

.cookie-lv2 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-md);
    }

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

    .cookie-lv2__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

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

    .cookie-lv2__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

    .cookie-lv2__actions button[data-choice='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

.nf404-v7 {
        padding: clamp(56px, 10vw, 112px) 20px;
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

    .nf404-v7__box {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
    }

    .nf404-v7 h1 {
        margin: 0;
        font-size: clamp(34px, 6vw, 58px);
    }

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

    .nf404-v7 a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 16px;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        color: var(--fg-on-page);
        text-decoration: none;
    }