:root {
  --font-family: "Rubik", sans-serif;
  --font-size-base: 14.8px;
  --line-height-base: 1.27;

  --max-w: 1100px;
  --space-x: 0.78rem;
  --space-y: 0.88rem;
  --gap: 0.41rem;

  --radius-xl: 0.76rem;
  --radius-lg: 0.56rem;
  --radius-md: 0.4rem;
  --radius-sm: 0.22rem;

  --shadow-sm: 0 0px 4px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 10px rgba(0,0,0,0.1);
  --shadow-lg: 0 6px 28px rgba(0,0,0,0.12);

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

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

  --neutral-0: #ffffff;
  --neutral-100: #f5f7fa;
  --neutral-300: #d0d5dd;
  --neutral-600: #667085;
  --neutral-800: #344054;
  --neutral-900: #101828;

  --bg-page: #f9fafb;
  --fg-on-page: #1d2939;

  --bg-alt: #eef2f6;
  --fg-on-alt: #1d2939;

  --surface-1: #ffffff;
  --surface-2: #f2f4f7;
  --fg-on-surface: #1d2939;
  --border-on-surface: #e4e7ec;

  --surface-light: #ffffff;
  --fg-on-surface-light: #1d2939;
  --border-on-surface-light: #eaecf0;

  --bg-primary: #1a5c8a;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #144b73;
  --ring: #d94f14;

  --bg-accent: #d94f14;
  --fg-on-accent: #ffffff;
  --bg-accent-hover: #b84310;

  --link: #1a5c8a;
  --link-hover: #d94f14;

  --gradient-hero: linear-gradient(135deg, #1a3a5c 0%, #2a5f7a 100%);
  --gradient-accent: linear-gradient(135deg, #d94f14 0%, #f06a2e 100%);

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

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

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

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

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

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

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

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

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

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

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

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

.nav-link {
  text-decoration: none;
  color: var(--neutral-800);
  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);
}

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

.header-cta {
  display: flex;
  align-items: center;
  gap: var(--gap);
}

.contact-info {
  color: var(--neutral-600);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  white-space: nowrap;
}

.btn-action {
  display: inline-block;
  background-color: var(--accent);
  color: var(--accent-contrast);
  text-decoration: none;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  font-weight: 600;
  padding: 10px 20px;
  border-radius: var(--radius-lg);
  transition: background-color var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}

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

@media (max-width: 767px) {
  .burger {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--surface-1);
    box-shadow: var(--shadow-md);
    padding: var(--space-y) var(--space-x);
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

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

  .nav-list {
    flex-direction: column;
    gap: 0;
  }

  .nav-link {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-on-surface);
  }

  .header-cta {
    display: none;
  }
}

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 30px 20px;
    font-family: Arial, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-logo a {
    font-size: 1.8em;
    font-weight: bold;
    color: #e67e22;
    text-decoration: none;
    margin-bottom: 15px;
    display: inline-block;
  }
  .footer-logo a:hover {
    color: #d35400;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  .footer-nav ul li a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 1em;
    padding: 5px 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s;
  }
  .footer-nav ul li a:hover {
    border-bottom-color: #e67e22;
  }
  .footer-contact {
    font-size: 0.95em;
    margin-bottom: 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px 10px;
  }
  .footer-contact a {
    color: #e67e22;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    font-size: 0.85em;
    border-top: 1px solid #7f8c8d;
    padding-top: 15px;
    width: 100%;
  }
  .footer-legal p {
    margin: 5px 0;
  }
  .footer-legal a {
    color: #e67e22;
    text-decoration: none;
  }
  .footer-legal a:hover {
    text-decoration: underline;
  }
  .disclaimer {
    font-style: italic;
    color: #bdc3c7;
    margin-top: 10px;
  }
  @media (max-width: 600px) {
    .footer-nav ul {
      flex-direction: column;
      gap: 10px;
    }
    .footer-contact {
      flex-direction: column;
      gap: 5px;
    }
  }

.cookie-cv7 {
        position: fixed;
        left: var(--space-x);
        bottom: var(--space-y);
        width: min(360px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv7__card {
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        background: linear-gradient(140deg, var(--brand), var(--bg-primary-hover));
        color: var(--brand-contrast);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv7__card h3 {
        margin: 0 0 6px;
    }

    .cookie-cv7__card p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv7__actions {
        margin-top: 12px;
        display: grid;
        gap: 8px;
    }

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

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

.hero-arc-v1 {
        padding: calc(var(--space-y) * 3) var(--space-x);
        background: var(--gradient-hero);
        color: var(--brand-contrast);
    }

    .hero-arc-v1 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns:1.1fr .9fr;
        gap: calc(var(--gap) * 2);
        align-items: center;
    }

    .hero-arc-v1 .copy h1 {
        margin: .4rem 0;
        font-size: clamp(2rem, 5vw, 3.8rem);
        line-height: 1.1;
    }

    .hero-arc-v1 .subtitle {
        font-size: 1.05rem;
        opacity: .95;
        max-width: 48ch;
    }

    .hero-arc-v1 .desc {
        opacity: .84;
        max-width: 54ch;
    }

    .hero-arc-v1 .actions {
        display: flex;
        flex-wrap: wrap;
        gap: var(--gap);
        margin-top: calc(var(--space-y) * 1.1);
    }

    .hero-arc-v1 .actions a {
        padding: .7rem 1.1rem;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        text-decoration: none;
        font-weight: 700;
        box-shadow: var(--shadow-md);
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .hero-arc-v1 .actions a:hover {
        transform: translateY(-2px);
    }

    .hero-arc-v1 .media {
        order: var(--random-number);
        display: grid;
        gap: var(--gap);
    }

    .hero-arc-v1 img {
        width: 100%;
        aspect-ratio: 4/3;
        object-fit: cover;
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
    }

    .hero-arc-v1 .stats {
        display: grid;
        grid-template-columns:repeat(3, minmax(0, 1fr));
        gap: var(--gap);
    }

    .hero-arc-v1 .stats div {
        background: var(--chip-bg);
        border: 1px solid var(--btn-ghost-bg-hover);
        padding: .8rem;
        border-radius: var(--radius-md);
        backdrop-filter: blur(2px);
    }

    .hero-arc-v1 strong {
        display: block;
        font-size: 1.2rem;
    }

    .hero-arc-v1 span {
        font-size: .88rem;
        opacity: .9;
    }

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

        .hero-arc-v1 .media {
            order: 2;
        }
    }

.values-papers-l6 {
        padding: clamp(3.1rem, 7vw, 5.7rem) var(--space-x);
        background: linear-gradient(180deg, var(--surface-1), var(--bg-alt));
        color: var(--fg-on-page);
    }

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

    .values-papers-l6__head {
        margin-bottom: 1.1rem;
    }

    .values-papers-l6__head p {
        margin: 0;
        color: var(--brand);
        font-size: .82rem;
        letter-spacing: .1em;
        text-transform: uppercase;
    }

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

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

    .values-papers-l6__grid article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border: 1px dashed var(--border-on-surface-light);
    }

    .values-papers-l6__grid div {
        font-size: 1.25rem;
    }

    .values-papers-l6__grid h3 {
        margin: .75rem 0 .35rem;
    }

    .values-papers-l6__grid p {
        margin: 0;
        color: var(--neutral-600);
    }

    .values-papers-l6__grid small {
        display: block;
        margin-top: .55rem;
        color: var(--neutral-800);
    }

.why-choose {

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

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

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

    .why-choose__top {
        display: grid;
        grid-template-columns:1.35fr 0.65fr;
        gap: clamp(14px, 2vw, 20px);
        align-items: start;
        margin-bottom: clamp(14px, 2.4vw, 26px);
    }

    .why-choose__title {
        margin: 0;
        font-size: clamp(26px, 4.6vw, 42px);
        line-height: 1.1;
        color: var(--fg-on-primary);
        letter-spacing: -0.02em;
    }

    .why-choose__subtitle {
        margin: 10px 0 0;
        color: rgba(255, 255, 255, 0.8);
        max-width: 68ch;
    }

    .why-choose__stats {
        display: grid;
        gap: 12px;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.16);
        box-shadow: var(--shadow-md);
    }

    .why-choose__statValue {
        font-size: clamp(20px, 2.8vw, 28px);
        font-weight: 700;
        color: var(--fg-on-primary);
    }

    .why-choose__statLabel {
        margin-top: 4px;
        color: rgba(255, 255, 255, 0.78);
        font-size: 0.9rem;
    }

    .why-choose__list {
        display: grid;
        gap: 12px;
    }

    .why-choose__row {
        position: relative;
        display: grid;
        grid-template-columns:18px 1fr;
        gap: 12px;
        padding: clamp(14px, 2vw, 18px);
        border-radius: var(--radius-xl);
        background: rgba(0, 0, 0, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.14);
        box-shadow: var(--shadow-sm);
        overflow: hidden;
        transition: transform var(--anim-duration) var(--anim-ease);
        will-change: transform;
    }

    .why-choose__row:hover {
        transform: translateY(-3px);
    }

    /* SHIMMER SWEEP */
    .why-choose__row::after {
        content: '';
        position: absolute;
        inset: -40px -60px;
        transform: translateX(-120%) rotate(12deg);
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);

        pointer-events: none;
    }

    .why-choose__row:hover::after {
        opacity: 1;
        animation: whyChooseShimmer 900ms var(--anim-ease) 1;
    }

    @keyframes whyChooseShimmer {
        0% {
            transform: translateX(-120%) rotate(12deg);
        }
        100% {
            transform: translateX(120%) rotate(12deg);
        }
    }

    .why-choose__bullet {
        width: 12px;
        height: 12px;
        border-radius: 999px;
        margin-top: 6px;
        background: var(--accent);
        box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.12);
    }

    .why-choose__rowTitle {
        font-weight: 700;
        color: var(--fg-on-primary);
        margin-bottom: 6px;
    }

    .why-choose__rowText {
        color: rgba(255, 255, 255, 0.78);
        line-height: var(--line-height-base);
    }

    @media (max-width: 920px) {
        .why-choose__top {
            grid-template-columns:1fr;
        }
    }

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

        .why-choose__row::after {
            display: none;
        }
    }

.visual-column-l6 {
        padding: clamp(3.1rem, 7vw, 5.7rem) var(--space-x);
        background: linear-gradient(180deg, var(--surface-1), var(--bg-alt));
        color: var(--fg-on-page);
    }

    .visual-column-l6__wrap {
        max-width: 62rem;
        margin: 0 auto;
    }

    .visual-column-l6__head {
        margin-bottom: 1rem;
    }

    .visual-column-l6__head p {
        margin: 0;
        color: var(--brand);
        font-size: .82rem;
        letter-spacing: .1em;
        text-transform: uppercase;
    }

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

    .visual-column-l6__list {
        display: grid;
        gap: .8rem;
    }

    .visual-column-l6__list article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
    }

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

    .visual-column-l6__meta span {
        color: var(--neutral-600);
    }

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

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

    .visual-column-l6__content small {
        color: var(--neutral-600);
    }

    .visual-column-l6__content h3 {
        margin: .45rem 0 .35rem;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

.nav-link {
  text-decoration: none;
  color: var(--neutral-800);
  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);
}

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

.header-cta {
  display: flex;
  align-items: center;
  gap: var(--gap);
}

.contact-info {
  color: var(--neutral-600);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  white-space: nowrap;
}

.btn-action {
  display: inline-block;
  background-color: var(--accent);
  color: var(--accent-contrast);
  text-decoration: none;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  font-weight: 600;
  padding: 10px 20px;
  border-radius: var(--radius-lg);
  transition: background-color var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}

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

@media (max-width: 767px) {
  .burger {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--surface-1);
    box-shadow: var(--shadow-md);
    padding: var(--space-y) var(--space-x);
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

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

  .nav-list {
    flex-direction: column;
    gap: 0;
  }

  .nav-link {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-on-surface);
  }

  .header-cta {
    display: none;
  }
}

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 30px 20px;
    font-family: Arial, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-logo a {
    font-size: 1.8em;
    font-weight: bold;
    color: #e67e22;
    text-decoration: none;
    margin-bottom: 15px;
    display: inline-block;
  }
  .footer-logo a:hover {
    color: #d35400;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  .footer-nav ul li a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 1em;
    padding: 5px 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s;
  }
  .footer-nav ul li a:hover {
    border-bottom-color: #e67e22;
  }
  .footer-contact {
    font-size: 0.95em;
    margin-bottom: 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px 10px;
  }
  .footer-contact a {
    color: #e67e22;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    font-size: 0.85em;
    border-top: 1px solid #7f8c8d;
    padding-top: 15px;
    width: 100%;
  }
  .footer-legal p {
    margin: 5px 0;
  }
  .footer-legal a {
    color: #e67e22;
    text-decoration: none;
  }
  .footer-legal a:hover {
    text-decoration: underline;
  }
  .disclaimer {
    font-style: italic;
    color: #bdc3c7;
    margin-top: 10px;
  }
  @media (max-width: 600px) {
    .footer-nav ul {
      flex-direction: column;
      gap: 10px;
    }
    .footer-contact {
      flex-direction: column;
      gap: 5px;
    }
  }

.cookie-cv7 {
        position: fixed;
        left: var(--space-x);
        bottom: var(--space-y);
        width: min(360px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv7__card {
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        background: linear-gradient(140deg, var(--brand), var(--bg-primary-hover));
        color: var(--brand-contrast);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv7__card h3 {
        margin: 0 0 6px;
    }

    .cookie-cv7__card p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv7__actions {
        margin-top: 12px;
        display: grid;
        gap: 8px;
    }

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

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

.product-list {

        color: var(--fg-on-page);
        background: linear-gradient(180deg, var(--bg-accent) 0%, var(--bg-page) 40%);
        padding: clamp(24px, 4vw, 56px) clamp(16px, 4vw, 40px);
    }

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

    .product-list .product-list__header-wrapper {
        display: grid;
        grid-template-columns: 1fr auto;
        gap: clamp(24px, 4vw, 48px);
        align-items: start;
        margin-bottom: clamp(32px, 5vw, 56px);
    }

    /* Si randomNumber es 1 (impar) - primer hijo mantiene order: 0 */
    .product-list .product-list__header-wrapper > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

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

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

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

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

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

    /* Si randomNumber es 1 (impar) - primer hijo mantiene order: 0 */
    .product-list .product-list__filters > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.nav-link {
  text-decoration: none;
  color: var(--neutral-800);
  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);
}

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

.header-cta {
  display: flex;
  align-items: center;
  gap: var(--gap);
}

.contact-info {
  color: var(--neutral-600);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  white-space: nowrap;
}

.btn-action {
  display: inline-block;
  background-color: var(--accent);
  color: var(--accent-contrast);
  text-decoration: none;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  font-weight: 600;
  padding: 10px 20px;
  border-radius: var(--radius-lg);
  transition: background-color var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}

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

@media (max-width: 767px) {
  .burger {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--surface-1);
    box-shadow: var(--shadow-md);
    padding: var(--space-y) var(--space-x);
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

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

  .nav-list {
    flex-direction: column;
    gap: 0;
  }

  .nav-link {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-on-surface);
  }

  .header-cta {
    display: none;
  }
}

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 30px 20px;
    font-family: Arial, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-logo a {
    font-size: 1.8em;
    font-weight: bold;
    color: #e67e22;
    text-decoration: none;
    margin-bottom: 15px;
    display: inline-block;
  }
  .footer-logo a:hover {
    color: #d35400;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  .footer-nav ul li a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 1em;
    padding: 5px 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s;
  }
  .footer-nav ul li a:hover {
    border-bottom-color: #e67e22;
  }
  .footer-contact {
    font-size: 0.95em;
    margin-bottom: 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px 10px;
  }
  .footer-contact a {
    color: #e67e22;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    font-size: 0.85em;
    border-top: 1px solid #7f8c8d;
    padding-top: 15px;
    width: 100%;
  }
  .footer-legal p {
    margin: 5px 0;
  }
  .footer-legal a {
    color: #e67e22;
    text-decoration: none;
  }
  .footer-legal a:hover {
    text-decoration: underline;
  }
  .disclaimer {
    font-style: italic;
    color: #bdc3c7;
    margin-top: 10px;
  }
  @media (max-width: 600px) {
    .footer-nav ul {
      flex-direction: column;
      gap: 10px;
    }
    .footer-contact {
      flex-direction: column;
      gap: 5px;
    }
  }

.cookie-cv7 {
        position: fixed;
        left: var(--space-x);
        bottom: var(--space-y);
        width: min(360px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv7__card {
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        background: linear-gradient(140deg, var(--brand), var(--bg-primary-hover));
        color: var(--brand-contrast);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv7__card h3 {
        margin: 0 0 6px;
    }

    .cookie-cv7__card p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv7__actions {
        margin-top: 12px;
        display: grid;
        gap: 8px;
    }

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

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

.product-item--colored-v5 {

    padding: 56px 20px;
    background: var(--neutral-900);
    color: var(--neutral-0);
}

.product-item__inner {
    max-width: 720px;
    margin: 0 auto;
}

.product-item__card {
    background: rgba(15,23,42,0.98);
    border-radius: var(--radius-xl);
    padding: 20px 22px;
    border: 1px solid rgba(148,163,184,0.75);
    box-shadow: var(--shadow-lg);
}

.product-item__header {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: baseline;
    margin-bottom: 8px;
}

.product-item__header h1 {
    margin: 0;
    font-size: clamp(22px,3.5vw,28px);
    color: var(--brand-contrast);
}

.product-item__desc {
    margin: 0 0 10px;
    font-size: 0.95rem;
    color: var(--neutral-200);
}

.product-item__meta {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--neutral-300);
}

.product-item__badge {
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--accent);
    color: var(--fg-on-accent);
}

.product-item__sku {
    opacity: 0.9;
}

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

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

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

.two-column-section__media img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    width: 100%;
    display: block;
}

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

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

.two-column-section__btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--radius-md);
    font-weight: 500;
    text-align: center;
    transition: all var(--anim-duration) var(--anim-ease);
    cursor: pointer;
    border: 1px solid var(--bg-primary);
    font-size: 1rem;
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
}

.two-column-section__btn:hover {
    background-color: var(--bg-primary-hover);
    border-color: var(--bg-primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

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

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

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

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

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

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

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

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

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

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

.nav-link {
  text-decoration: none;
  color: var(--neutral-800);
  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);
}

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

.header-cta {
  display: flex;
  align-items: center;
  gap: var(--gap);
}

.contact-info {
  color: var(--neutral-600);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  white-space: nowrap;
}

.btn-action {
  display: inline-block;
  background-color: var(--accent);
  color: var(--accent-contrast);
  text-decoration: none;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  font-weight: 600;
  padding: 10px 20px;
  border-radius: var(--radius-lg);
  transition: background-color var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}

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

@media (max-width: 767px) {
  .burger {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--surface-1);
    box-shadow: var(--shadow-md);
    padding: var(--space-y) var(--space-x);
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

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

  .nav-list {
    flex-direction: column;
    gap: 0;
  }

  .nav-link {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-on-surface);
  }

  .header-cta {
    display: none;
  }
}

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 30px 20px;
    font-family: Arial, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-logo a {
    font-size: 1.8em;
    font-weight: bold;
    color: #e67e22;
    text-decoration: none;
    margin-bottom: 15px;
    display: inline-block;
  }
  .footer-logo a:hover {
    color: #d35400;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  .footer-nav ul li a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 1em;
    padding: 5px 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s;
  }
  .footer-nav ul li a:hover {
    border-bottom-color: #e67e22;
  }
  .footer-contact {
    font-size: 0.95em;
    margin-bottom: 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px 10px;
  }
  .footer-contact a {
    color: #e67e22;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    font-size: 0.85em;
    border-top: 1px solid #7f8c8d;
    padding-top: 15px;
    width: 100%;
  }
  .footer-legal p {
    margin: 5px 0;
  }
  .footer-legal a {
    color: #e67e22;
    text-decoration: none;
  }
  .footer-legal a:hover {
    text-decoration: underline;
  }
  .disclaimer {
    font-style: italic;
    color: #bdc3c7;
    margin-top: 10px;
  }
  @media (max-width: 600px) {
    .footer-nav ul {
      flex-direction: column;
      gap: 10px;
    }
    .footer-contact {
      flex-direction: column;
      gap: 5px;
    }
  }

.cookie-cv7 {
        position: fixed;
        left: var(--space-x);
        bottom: var(--space-y);
        width: min(360px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv7__card {
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        background: linear-gradient(140deg, var(--brand), var(--bg-primary-hover));
        color: var(--brand-contrast);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv7__card h3 {
        margin: 0 0 6px;
    }

    .cookie-cv7__card p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv7__actions {
        margin-top: 12px;
        display: grid;
        gap: 8px;
    }

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

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

.product-item--colored-v5 {

    padding: 56px 20px;
    background: var(--neutral-900);
    color: var(--neutral-0);
}

.product-item__inner {
    max-width: 720px;
    margin: 0 auto;
}

.product-item__card {
    background: rgba(15,23,42,0.98);
    border-radius: var(--radius-xl);
    padding: 20px 22px;
    border: 1px solid rgba(148,163,184,0.75);
    box-shadow: var(--shadow-lg);
}

.product-item__header {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: baseline;
    margin-bottom: 8px;
}

.product-item__header h1 {
    margin: 0;
    font-size: clamp(22px,3.5vw,28px);
    color: var(--brand-contrast);
}

.product-item__desc {
    margin: 0 0 10px;
    font-size: 0.95rem;
    color: var(--neutral-200);
}

.product-item__meta {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--neutral-300);
}

.product-item__badge {
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--accent);
    color: var(--fg-on-accent);
}

.product-item__sku {
    opacity: 0.9;
}

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

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

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

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

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

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

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

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

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

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

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

.nav-link {
  text-decoration: none;
  color: var(--neutral-800);
  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);
}

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

.header-cta {
  display: flex;
  align-items: center;
  gap: var(--gap);
}

.contact-info {
  color: var(--neutral-600);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  white-space: nowrap;
}

.btn-action {
  display: inline-block;
  background-color: var(--accent);
  color: var(--accent-contrast);
  text-decoration: none;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  font-weight: 600;
  padding: 10px 20px;
  border-radius: var(--radius-lg);
  transition: background-color var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}

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

@media (max-width: 767px) {
  .burger {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--surface-1);
    box-shadow: var(--shadow-md);
    padding: var(--space-y) var(--space-x);
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

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

  .nav-list {
    flex-direction: column;
    gap: 0;
  }

  .nav-link {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-on-surface);
  }

  .header-cta {
    display: none;
  }
}

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 30px 20px;
    font-family: Arial, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-logo a {
    font-size: 1.8em;
    font-weight: bold;
    color: #e67e22;
    text-decoration: none;
    margin-bottom: 15px;
    display: inline-block;
  }
  .footer-logo a:hover {
    color: #d35400;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  .footer-nav ul li a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 1em;
    padding: 5px 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s;
  }
  .footer-nav ul li a:hover {
    border-bottom-color: #e67e22;
  }
  .footer-contact {
    font-size: 0.95em;
    margin-bottom: 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px 10px;
  }
  .footer-contact a {
    color: #e67e22;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    font-size: 0.85em;
    border-top: 1px solid #7f8c8d;
    padding-top: 15px;
    width: 100%;
  }
  .footer-legal p {
    margin: 5px 0;
  }
  .footer-legal a {
    color: #e67e22;
    text-decoration: none;
  }
  .footer-legal a:hover {
    text-decoration: underline;
  }
  .disclaimer {
    font-style: italic;
    color: #bdc3c7;
    margin-top: 10px;
  }
  @media (max-width: 600px) {
    .footer-nav ul {
      flex-direction: column;
      gap: 10px;
    }
    .footer-contact {
      flex-direction: column;
      gap: 5px;
    }
  }

.cookie-cv7 {
        position: fixed;
        left: var(--space-x);
        bottom: var(--space-y);
        width: min(360px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv7__card {
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        background: linear-gradient(140deg, var(--brand), var(--bg-primary-hover));
        color: var(--brand-contrast);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv7__card h3 {
        margin: 0 0 6px;
    }

    .cookie-cv7__card p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv7__actions {
        margin-top: 12px;
        display: grid;
        gap: 8px;
    }

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

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

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

        /* Si randomNumber es 1 (impar) - 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;
    }

    /* Si randomNumber es 1 (impar) - 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);
    }

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

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

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

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

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

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

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

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

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

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

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

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

.nav-link {
  text-decoration: none;
  color: var(--neutral-800);
  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);
}

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

.header-cta {
  display: flex;
  align-items: center;
  gap: var(--gap);
}

.contact-info {
  color: var(--neutral-600);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  white-space: nowrap;
}

.btn-action {
  display: inline-block;
  background-color: var(--accent);
  color: var(--accent-contrast);
  text-decoration: none;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  font-weight: 600;
  padding: 10px 20px;
  border-radius: var(--radius-lg);
  transition: background-color var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}

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

@media (max-width: 767px) {
  .burger {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--surface-1);
    box-shadow: var(--shadow-md);
    padding: var(--space-y) var(--space-x);
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

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

  .nav-list {
    flex-direction: column;
    gap: 0;
  }

  .nav-link {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-on-surface);
  }

  .header-cta {
    display: none;
  }
}

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 30px 20px;
    font-family: Arial, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-logo a {
    font-size: 1.8em;
    font-weight: bold;
    color: #e67e22;
    text-decoration: none;
    margin-bottom: 15px;
    display: inline-block;
  }
  .footer-logo a:hover {
    color: #d35400;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  .footer-nav ul li a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 1em;
    padding: 5px 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s;
  }
  .footer-nav ul li a:hover {
    border-bottom-color: #e67e22;
  }
  .footer-contact {
    font-size: 0.95em;
    margin-bottom: 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px 10px;
  }
  .footer-contact a {
    color: #e67e22;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    font-size: 0.85em;
    border-top: 1px solid #7f8c8d;
    padding-top: 15px;
    width: 100%;
  }
  .footer-legal p {
    margin: 5px 0;
  }
  .footer-legal a {
    color: #e67e22;
    text-decoration: none;
  }
  .footer-legal a:hover {
    text-decoration: underline;
  }
  .disclaimer {
    font-style: italic;
    color: #bdc3c7;
    margin-top: 10px;
  }
  @media (max-width: 600px) {
    .footer-nav ul {
      flex-direction: column;
      gap: 10px;
    }
    .footer-contact {
      flex-direction: column;
      gap: 5px;
    }
  }

.cookie-cv7 {
        position: fixed;
        left: var(--space-x);
        bottom: var(--space-y);
        width: min(360px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv7__card {
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        background: linear-gradient(140deg, var(--brand), var(--bg-primary-hover));
        color: var(--brand-contrast);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv7__card h3 {
        margin: 0 0 6px;
    }

    .cookie-cv7__card p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv7__actions {
        margin-top: 12px;
        display: grid;
        gap: 8px;
    }

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

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

.support-ux10 {
        padding: clamp(48px, 6vw, 80px) clamp(16px, 4vw, 36px);
        background: var(--neutral-100);
        color: var(--neutral-900);
    }

    .support-ux10__wrap {
        max-width: 900px;
        margin: 0 auto;
        display: grid;
        gap: 12px;
        grid-template-columns: 1fr 1fr;
    }

    .support-ux10__wrap article {
        border: 1px solid var(--neutral-300);
        border-radius: var(--radius-lg);
        background: var(--neutral-100);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-sm);
    }

    .support-ux10__wrap h3 {
        margin: 0 0 7px;
        color: var(--brand);
    }

    .support-ux10__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

    @media (max-width: 700px) {
        .support-ux10__wrap {
            grid-template-columns: 1fr;
        }
    }

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

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

body{margin:0;padding:0;font-family:var(--font-family);box-sizing:border-box;}
*{box-sizing:border-box;}
.form-u5{padding:calc(var(--space-y)*2.9) var(--space-x);background:var(--neutral-900);color:var(--neutral-0)} .form-u5 .shell{max-width:var(--max-w);margin:0 auto;display:grid;gap:var(--gap)} .form-u5 h2{margin:0;font-size:clamp(1.85rem,3.6vw,2.8rem);line-height:1.1} .form-u5 .sub{margin:.35rem 0 0;opacity:.9;} .form-u5 .panel,.form-u5 .box{padding:1.1rem;border-radius:var(--radius-xl);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);box-shadow:var(--shadow-md)} .form-u5 form{display:grid;gap:.75rem} .form-u5 .field{display:grid;gap:.28rem} .form-u5 .field span{font-size:.82rem;font-weight:700;color:var(--fg-on-surface-light)} .form-u5 input,.form-u5 textarea{width:100%;padding:.8rem .85rem;border-radius:var(--radius-md);border:1px solid var(--border-on-surface-light);background:var(--surface-1);color:var(--fg-on-surface);font:inherit;outline:none;transition:border-color var(--anim-duration) var(--anim-ease),box-shadow var(--anim-duration) var(--anim-ease)} .form-u5 input:focus,.form-u5 textarea:focus{border-color:var(--ring);box-shadow:0 0 0 3px color-mix(in srgb,var(--ring) 22%, transparent)} .form-u5 textarea{min-height:120px;resize:vertical} .form-u5 button{padding:.82rem 1rem;border:0;border-radius:var(--radius-md);background:var(--bg-primary);color:var(--fg-on-primary);font-weight:700;cursor:pointer;transition:transform var(--anim-duration) var(--anim-ease),background var(--anim-duration) var(--anim-ease)} .form-u5 button:hover{transform:translateY(-1px);background:var(--bg-primary-hover)} .form-u5 .split{display:grid;grid-template-columns:1fr 1fr;gap:var(--gap)} .form-u5 .grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.65rem} .form-u5 .line{padding:1rem;border-radius:var(--radius-lg);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover)} .form-u5 .bar{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.65rem;padding:1rem;border-radius:var(--radius-lg);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover)} .form-u5 .stack{padding:1rem;border-radius:var(--radius-lg);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover)} .form-u5 .steps{display:flex;gap:.45rem;flex-wrap:wrap} .form-u5 .steps span{padding:.33rem .55rem;border-radius:var(--radius-sm);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);font-size:.8rem} .form-u5 .agree{display:flex;align-items:center;gap:.45rem;font-size:.86rem} .form-u5 .media{display:grid;grid-template-columns:.9fr 1.1fr;gap:var(--gap)} .form-u5 .media img,.form-u5 .frame img{width:100%;height:100%;min-height:320px;object-fit:cover;border-radius:var(--radius-xl)} .form-u5 .frame{display:grid;grid-template-columns:1.1fr .9fr;gap:var(--gap)} .form-u5 .full{grid-column:1/-1} @media (max-width:860px){.form-u5 .split,.form-u5 .media,.form-u5 .frame{grid-template-columns:1fr} .form-u5 .grid,.form-u5 .bar{grid-template-columns:1fr}}

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

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

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

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

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

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

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

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

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

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

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

.nav-link {
  text-decoration: none;
  color: var(--neutral-800);
  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);
}

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

.header-cta {
  display: flex;
  align-items: center;
  gap: var(--gap);
}

.contact-info {
  color: var(--neutral-600);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  white-space: nowrap;
}

.btn-action {
  display: inline-block;
  background-color: var(--accent);
  color: var(--accent-contrast);
  text-decoration: none;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  font-weight: 600;
  padding: 10px 20px;
  border-radius: var(--radius-lg);
  transition: background-color var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}

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

@media (max-width: 767px) {
  .burger {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--surface-1);
    box-shadow: var(--shadow-md);
    padding: var(--space-y) var(--space-x);
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

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

  .nav-list {
    flex-direction: column;
    gap: 0;
  }

  .nav-link {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-on-surface);
  }

  .header-cta {
    display: none;
  }
}

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 30px 20px;
    font-family: Arial, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-logo a {
    font-size: 1.8em;
    font-weight: bold;
    color: #e67e22;
    text-decoration: none;
    margin-bottom: 15px;
    display: inline-block;
  }
  .footer-logo a:hover {
    color: #d35400;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  .footer-nav ul li a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 1em;
    padding: 5px 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s;
  }
  .footer-nav ul li a:hover {
    border-bottom-color: #e67e22;
  }
  .footer-contact {
    font-size: 0.95em;
    margin-bottom: 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px 10px;
  }
  .footer-contact a {
    color: #e67e22;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    font-size: 0.85em;
    border-top: 1px solid #7f8c8d;
    padding-top: 15px;
    width: 100%;
  }
  .footer-legal p {
    margin: 5px 0;
  }
  .footer-legal a {
    color: #e67e22;
    text-decoration: none;
  }
  .footer-legal a:hover {
    text-decoration: underline;
  }
  .disclaimer {
    font-style: italic;
    color: #bdc3c7;
    margin-top: 10px;
  }
  @media (max-width: 600px) {
    .footer-nav ul {
      flex-direction: column;
      gap: 10px;
    }
    .footer-contact {
      flex-direction: column;
      gap: 5px;
    }
  }

.cookie-cv7 {
        position: fixed;
        left: var(--space-x);
        bottom: var(--space-y);
        width: min(360px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv7__card {
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        background: linear-gradient(140deg, var(--brand), var(--bg-primary-hover));
        color: var(--brand-contrast);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv7__card h3 {
        margin: 0 0 6px;
    }

    .cookie-cv7__card p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv7__actions {
        margin-top: 12px;
        display: grid;
        gap: 8px;
    }

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

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

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;}
.pol-lx8{padding:calc(var(--space-y)*2.95) var(--space-x);background:var(--bg-alt)}
.pol-lx8 .pol-wrap{max-width:var(--max-w);margin:0 auto}
.pol-lx8 h2{margin:0 0 .85rem;font-size:clamp(1.76rem,3.1vw,2.45rem)}
.pol-lx8 .pol-cols{display:grid;grid-template-columns:.95fr 1.05fr;gap:var(--gap)}
.pol-lx8 .pol-left{padding:1rem;border-radius:var(--radius-lg);border:1px solid var(--border-on-surface);background:var(--surface-1)}
.pol-lx8 .pol-left h3{margin:0 0 .32rem}
.pol-lx8 .pol-left p{margin:0;color:var(--fg-on-surface-light)}
.pol-lx8 .pol-right{list-style:none;margin:0;padding:0;display:grid;gap:.5rem}
.pol-lx8 .pol-right li{padding:.8rem;border-radius:var(--radius-md);background:var(--surface-1);border:1px solid var(--border-on-surface)}
.pol-lx8 .pol-right h4{margin:0 0 .2rem;font-size:1rem}
.pol-lx8 .pol-right p{margin:0;color:var(--fg-on-surface-light)}
.pol-lx8 .pol-note{display:flex;gap:.7rem;margin-top:.75rem;padding:.8rem;border-radius:var(--radius-md);background:var(--surface-2)}
@media (max-width:860px){.pol-lx8 .pol-cols{grid-template-columns:1fr}.pol-lx8 .pol-note{display:grid}}

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

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

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

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

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

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

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

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

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

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

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

.nav-link {
  text-decoration: none;
  color: var(--neutral-800);
  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);
}

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

.header-cta {
  display: flex;
  align-items: center;
  gap: var(--gap);
}

.contact-info {
  color: var(--neutral-600);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  white-space: nowrap;
}

.btn-action {
  display: inline-block;
  background-color: var(--accent);
  color: var(--accent-contrast);
  text-decoration: none;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  font-weight: 600;
  padding: 10px 20px;
  border-radius: var(--radius-lg);
  transition: background-color var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}

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

@media (max-width: 767px) {
  .burger {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--surface-1);
    box-shadow: var(--shadow-md);
    padding: var(--space-y) var(--space-x);
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

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

  .nav-list {
    flex-direction: column;
    gap: 0;
  }

  .nav-link {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-on-surface);
  }

  .header-cta {
    display: none;
  }
}

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 30px 20px;
    font-family: Arial, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-logo a {
    font-size: 1.8em;
    font-weight: bold;
    color: #e67e22;
    text-decoration: none;
    margin-bottom: 15px;
    display: inline-block;
  }
  .footer-logo a:hover {
    color: #d35400;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  .footer-nav ul li a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 1em;
    padding: 5px 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s;
  }
  .footer-nav ul li a:hover {
    border-bottom-color: #e67e22;
  }
  .footer-contact {
    font-size: 0.95em;
    margin-bottom: 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px 10px;
  }
  .footer-contact a {
    color: #e67e22;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    font-size: 0.85em;
    border-top: 1px solid #7f8c8d;
    padding-top: 15px;
    width: 100%;
  }
  .footer-legal p {
    margin: 5px 0;
  }
  .footer-legal a {
    color: #e67e22;
    text-decoration: none;
  }
  .footer-legal a:hover {
    text-decoration: underline;
  }
  .disclaimer {
    font-style: italic;
    color: #bdc3c7;
    margin-top: 10px;
  }
  @media (max-width: 600px) {
    .footer-nav ul {
      flex-direction: column;
      gap: 10px;
    }
    .footer-contact {
      flex-direction: column;
      gap: 5px;
    }
  }

.cookie-cv7 {
        position: fixed;
        left: var(--space-x);
        bottom: var(--space-y);
        width: min(360px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv7__card {
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        background: linear-gradient(140deg, var(--brand), var(--bg-primary-hover));
        color: var(--brand-contrast);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv7__card h3 {
        margin: 0 0 6px;
    }

    .cookie-cv7__card p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv7__actions {
        margin-top: 12px;
        display: grid;
        gap: 8px;
    }

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

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

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

    .policy-layout-b .wrap {
        max-width: 900px;
        margin: 0 auto;
    }

    .policy-layout-b .section-head {
        margin-bottom: 16px;
        text-align: center;
    }

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

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

    .policy-layout-b ol {
        margin: 0;
        padding-left: 18px;
        display: grid;
        gap: 10px;
    }

    .policy-layout-b li {
        background: var(--bg-alt);
        border-radius: var(--radius-md);
        border: 1px solid var(--border-on-surface);
        padding: 12px;
    }

    .policy-layout-b h3 {
        margin: 0;
        color: var(--brand);
        font-size: 1rem;
    }

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

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

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

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

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

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

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

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

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

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

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

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

.nav-link {
  text-decoration: none;
  color: var(--neutral-800);
  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);
}

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

.header-cta {
  display: flex;
  align-items: center;
  gap: var(--gap);
}

.contact-info {
  color: var(--neutral-600);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  white-space: nowrap;
}

.btn-action {
  display: inline-block;
  background-color: var(--accent);
  color: var(--accent-contrast);
  text-decoration: none;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  font-weight: 600;
  padding: 10px 20px;
  border-radius: var(--radius-lg);
  transition: background-color var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}

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

@media (max-width: 767px) {
  .burger {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--surface-1);
    box-shadow: var(--shadow-md);
    padding: var(--space-y) var(--space-x);
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

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

  .nav-list {
    flex-direction: column;
    gap: 0;
  }

  .nav-link {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-on-surface);
  }

  .header-cta {
    display: none;
  }
}

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 30px 20px;
    font-family: Arial, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-logo a {
    font-size: 1.8em;
    font-weight: bold;
    color: #e67e22;
    text-decoration: none;
    margin-bottom: 15px;
    display: inline-block;
  }
  .footer-logo a:hover {
    color: #d35400;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  .footer-nav ul li a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 1em;
    padding: 5px 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s;
  }
  .footer-nav ul li a:hover {
    border-bottom-color: #e67e22;
  }
  .footer-contact {
    font-size: 0.95em;
    margin-bottom: 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px 10px;
  }
  .footer-contact a {
    color: #e67e22;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    font-size: 0.85em;
    border-top: 1px solid #7f8c8d;
    padding-top: 15px;
    width: 100%;
  }
  .footer-legal p {
    margin: 5px 0;
  }
  .footer-legal a {
    color: #e67e22;
    text-decoration: none;
  }
  .footer-legal a:hover {
    text-decoration: underline;
  }
  .disclaimer {
    font-style: italic;
    color: #bdc3c7;
    margin-top: 10px;
  }
  @media (max-width: 600px) {
    .footer-nav ul {
      flex-direction: column;
      gap: 10px;
    }
    .footer-contact {
      flex-direction: column;
      gap: 5px;
    }
  }

.cookie-cv7 {
        position: fixed;
        left: var(--space-x);
        bottom: var(--space-y);
        width: min(360px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv7__card {
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        background: linear-gradient(140deg, var(--brand), var(--bg-primary-hover));
        color: var(--brand-contrast);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv7__card h3 {
        margin: 0 0 6px;
    }

    .cookie-cv7__card p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv7__actions {
        margin-top: 12px;
        display: grid;
        gap: 8px;
    }

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

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

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;}
.thx-lx10{padding:calc(var(--space-y)*2.7) var(--space-x)}
.thx-lx10 .thx-wrap{max-width:820px;margin:0 auto;display:grid;gap:.58rem}
.thx-lx10 .thx-note{padding:1rem;border-radius:var(--radius-xl);background:linear-gradient(180deg,var(--surface-1),var(--surface-2));border:1px solid var(--border-on-surface);text-align:center}
.thx-lx10 h2{margin:0;font-size:clamp(1.72rem,3vw,2.4rem)}
.thx-lx10 .thx-note p{margin:.38rem 0 0;color:var(--fg-on-surface-light)}
.thx-lx10 .thx-inline{margin:0;padding:.72rem .8rem;border-radius:var(--radius-md);background:var(--surface-1);border:1px solid var(--border-on-surface)}

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

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

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

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

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

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

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

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

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

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

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

.nav-link {
  text-decoration: none;
  color: var(--neutral-800);
  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);
}

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

.header-cta {
  display: flex;
  align-items: center;
  gap: var(--gap);
}

.contact-info {
  color: var(--neutral-600);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  white-space: nowrap;
}

.btn-action {
  display: inline-block;
  background-color: var(--accent);
  color: var(--accent-contrast);
  text-decoration: none;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  font-weight: 600;
  padding: 10px 20px;
  border-radius: var(--radius-lg);
  transition: background-color var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}

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

@media (max-width: 767px) {
  .burger {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--surface-1);
    box-shadow: var(--shadow-md);
    padding: var(--space-y) var(--space-x);
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

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

  .nav-list {
    flex-direction: column;
    gap: 0;
  }

  .nav-link {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-on-surface);
  }

  .header-cta {
    display: none;
  }
}

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 30px 20px;
    font-family: Arial, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-logo a {
    font-size: 1.8em;
    font-weight: bold;
    color: #e67e22;
    text-decoration: none;
    margin-bottom: 15px;
    display: inline-block;
  }
  .footer-logo a:hover {
    color: #d35400;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  .footer-nav ul li a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 1em;
    padding: 5px 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s;
  }
  .footer-nav ul li a:hover {
    border-bottom-color: #e67e22;
  }
  .footer-contact {
    font-size: 0.95em;
    margin-bottom: 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px 10px;
  }
  .footer-contact a {
    color: #e67e22;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    font-size: 0.85em;
    border-top: 1px solid #7f8c8d;
    padding-top: 15px;
    width: 100%;
  }
  .footer-legal p {
    margin: 5px 0;
  }
  .footer-legal a {
    color: #e67e22;
    text-decoration: none;
  }
  .footer-legal a:hover {
    text-decoration: underline;
  }
  .disclaimer {
    font-style: italic;
    color: #bdc3c7;
    margin-top: 10px;
  }
  @media (max-width: 600px) {
    .footer-nav ul {
      flex-direction: column;
      gap: 10px;
    }
    .footer-contact {
      flex-direction: column;
      gap: 5px;
    }
  }

.cookie-cv7 {
        position: fixed;
        left: var(--space-x);
        bottom: var(--space-y);
        width: min(360px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv7__card {
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        background: linear-gradient(140deg, var(--brand), var(--bg-primary-hover));
        color: var(--brand-contrast);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv7__card h3 {
        margin: 0 0 6px;
    }

    .cookie-cv7__card p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv7__actions {
        margin-top: 12px;
        display: grid;
        gap: 8px;
    }

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

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

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

    .nf404-v12__box {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        border-top: 6px solid var(--accent);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border-left: 1px solid var(--border-on-surface);
        border-right: 1px solid var(--border-on-surface);
        border-bottom: 1px solid var(--border-on-surface);
        padding: clamp(28px, 4vw, 46px);
    }

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

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

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