@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap');
@font-face{font-family:"KO Sans";font-weight:100;font-style:normal;font-display:swap;src:url("fonts/ko-sans-thin.otf") format("opentype");}
@font-face{font-family:"KO Sans";font-weight:200;font-style:normal;font-display:swap;src:url("fonts/ko-sans-extralight.otf") format("opentype");}
@font-face{font-family:"KO Sans";font-weight:300;font-style:normal;font-display:swap;src:url("fonts/ko-sans-light.otf") format("opentype");}
@font-face{font-family:"KO Sans";font-weight:400;font-style:normal;font-display:swap;src:url("fonts/ko-sans-regular.otf") format("opentype");}
@font-face{font-family:"KO Sans";font-weight:500;font-style:normal;font-display:swap;src:url("fonts/ko-sans-medium.otf") format("opentype");}
@font-face{font-family:"KO Sans";font-weight:600;font-style:normal;font-display:swap;src:url("fonts/ko-sans-semibold.otf") format("opentype");}
@font-face{font-family:"KO Sans";font-weight:700;font-style:normal;font-display:swap;src:url("fonts/ko-sans-bold.otf") format("opentype");}


:root {
  --lx-bg:         #fafafa;
  --lx-muted:      #fafafa;
  --lx-surface:    #ffffff;
  --lx-ink:        #1a1c1c;
  --lx-ink-soft:   #45483e;
  --lx-text:       #1a1c1c;
  --lx-text-muted: #5f5e5e;
  --lx-olive:      #708255;
  --lx-olive-dark: #516238;
  --lx-olive-mid:  #697b4e;
  --lx-olive-deep: #434e2f;
  --lx-olive-pale: #bace9a;
  --lx-line:       #e2e2e2;
  --lx-line-2:     #e5e7eb;
  --lx-footer-bg:  #1a1c1c;
  --lx-footer-fg:  rgba(255,255,255,.68);

  --lx-radius:    14px;
  --lx-radius-sm: 8px;
  --lx-radius-lg: 22px;
  --lx-container: 1440px;
  --lx-gutter: 24px;
  --lx-shadow:    0 1px 2px rgba(20,22,15,.04), 0 10px 30px rgba(20,22,15,.07);
  --lx-shadow-lg: 0 18px 50px rgba(20,22,15,.16);

  --lx-font:    "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --lx-display: "Manrope", var(--lx-font);

  --lx-ease: cubic-bezier(.22,.61,.36,1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }

body {
  font-family: var(--lx-font);
  color: var(--lx-text);
  background: var(--lx-bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 { font-family: var(--lx-display); color: var(--lx-ink); line-height: 1.12; margin: 0 0 .5em; font-weight: 800; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.1rem, 4.4vw, 3.3rem); }
h2 { font-size: clamp(1.6rem, 2.8vw, 2.25rem); }
h3 { font-size: 1.15rem; font-weight: 700; }
p { margin: 0 0 1rem; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.lx-container { width: min(88%, var(--lx-container)); margin-inline: auto; }
.lx-section { padding-block: clamp(52px, 7vw, 92px); }
.lx-section--muted { background: var(--lx-muted); }
.lx-section--surface { background: var(--lx-surface); }
/* Match Figma: tighter onboarding->contact spacing + white contact background */
.lx-section:has(.lx-steps) { padding-block: clamp(44px, 5vw, 64px); }
.lx-section:has(.lx-contact2) { padding-top: clamp(44px, 5vw, 64px); background: #fff; }

.lx-eyebrow {
  display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--lx-olive-deep);
  background: transparent; padding: 0; border-radius: 0;
}
.lx-section__head { max-width: 640px; margin-bottom: 2.4rem; }
.lx-section__head--center { margin-inline: auto; text-align: center; }
.lx-lead { color: var(--lx-text-muted); font-size: 1.05rem; }

.lx-btn {
  --_y: 0;
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: "Manrope", sans-serif; font-weight: 600; font-size: .95rem;
  padding: .74em 1.5em; border-radius: var(--lx-radius-sm);
  border: 1px solid transparent; cursor: pointer; white-space: nowrap;
  transform: translateY(var(--_y));
  transition: background .18s var(--lx-ease), transform .18s var(--lx-ease), box-shadow .18s var(--lx-ease), border-color .18s var(--lx-ease);
}
.lx-btn:hover { --_y: -2px; box-shadow: 0 8px 20px rgba(81,98,56,.22); }
.lx-btn:active { --_y: 0; }
.lx-btn--primary { background: var(--lx-olive); color: #fff; }
.lx-btn--primary:hover { background: var(--lx-olive-dark); }
.lx-btn--dark { background: var(--lx-ink); color: #fff; }
.lx-btn--dark:hover { background: #000; box-shadow: 0 8px 20px rgba(0,0,0,.22); }
.lx-btn--ghost { background: transparent; color: var(--lx-ink); border-color: var(--lx-line); }
.lx-btn--ghost:hover { border-color: var(--lx-ink); box-shadow: none; }
.lx-btn--light { background: #fff; color: var(--lx-ink); }
.lx-btn--light:hover { background: #f0f0ea; }
.lx-btn--sm { padding: .55em 1.05em; font-size: .85rem; }
.lx-btn--block { width: 100%; }

.lx-header { position: sticky; top: 0; z-index: 40; background: rgba(249,249,249,.85); backdrop-filter: blur(12px); border-bottom: 1px solid transparent; transition: border-color .25s ease, box-shadow .25s ease, background .25s ease; }
.lx-header.scrolled { border-bottom-color: var(--lx-line); box-shadow: 0 4px 20px rgba(20,22,15,.05); }
.lx-header__inner { display: flex; align-items: center; gap: 1.5rem; height: 72px; }
.lx-logo { font-family: var(--lx-display); font-weight: 800; font-size: 1.4rem; letter-spacing: .14em; color: var(--lx-ink); }
.lx-nav { display: flex; gap: 1.7rem; margin-inline: auto; }
.lx-nav a { font-weight: 500; color: var(--lx-ink-soft); font-size: .95rem; padding: .3rem 0; position: relative; }
.lx-nav a::after { content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0; background: var(--lx-olive); transition: width .25s var(--lx-ease); }
.lx-nav a:hover, .lx-nav a.active { color: var(--lx-olive-dark); }
.lx-nav a:hover::after, .lx-nav a.active::after { width: 100%; }
.lx-header__actions { display: flex; align-items: center; gap: .75rem; }
.lx-lang { display: inline-flex; border: 1px solid var(--lx-line); border-radius: var(--lx-radius-sm); overflow: hidden; }
.lx-lang a { padding: .3em .7em; font-size: .8rem; font-weight: 600; color: var(--lx-text-muted); transition: background .18s ease, color .18s ease; }
.lx-lang a.active { background: var(--lx-olive); color: #fff; }
.lx-burger { display: none; background: none; border: 0; cursor: pointer; padding: .4rem; }
.lx-burger span { display: block; width: 22px; height: 2px; background: var(--lx-ink); margin: 4px 0; transition: transform .25s ease, opacity .2s ease; }

.lx-hero { position: relative; overflow: hidden; background: var(--lx-bg); }
.lx-hero::before, .lx-hero::after { content: ""; position: absolute; width: 140%; height: 2px; background: linear-gradient(90deg, transparent, rgba(81,98,56,.35), transparent); top: 22%; left: -20%; transform: rotate(-18deg); pointer-events: none; }
.lx-hero::after { top: 70%; transform: rotate(-18deg); }
.lx-hero__grid { position: relative; display: grid; grid-template-columns: 1.05fr 1fr; gap: 3rem; align-items: center; padding-block: clamp(44px, 6vw, 84px); }
.lx-hero__title { margin-bottom: 1rem; }
.lx-hero__text { color: var(--lx-text-muted); font-size: 1.1rem; max-width: 44ch; margin-bottom: 1.6rem; }
.lx-hero__cta { display: flex; gap: .8rem; flex-wrap: wrap; }
.lx-hero__media { position: relative; border-radius: var(--lx-radius-lg); overflow: hidden; aspect-ratio: 4 / 3; background: linear-gradient(135deg, #10130f, #2a2f22); box-shadow: var(--lx-shadow-lg); animation: lx-float 6s ease-in-out infinite; }
.lx-hero__media img { width: 100%; height: 100%; object-fit: cover; }

.lx-trust { border-block: 1px solid var(--lx-line); background: var(--lx-surface); }
.lx-trust__row { display: flex; flex-wrap: wrap; gap: 1rem 2rem; justify-content: space-between; padding-block: 1.15rem; }
.lx-trust__item { display: flex; align-items: center; gap: .55rem; color: var(--lx-text-muted); font-size: .9rem; font-weight: 500; }
.lx-trust__item svg { color: var(--lx-olive); flex: none; }

.lx-grid { display: grid; gap: var(--lx-gutter); }
.lx-grid--2 { grid-template-columns: repeat(2, 1fr); }
.lx-grid--3 { grid-template-columns: repeat(3, 1fr); }
.lx-grid--4 { grid-template-columns: repeat(4, 1fr); }

.lx-cat { position: relative; border-radius: var(--lx-radius); overflow: hidden; min-height: 230px; display: flex; align-items: flex-end; background: #14170f; color: #fff; transform: translateY(0); transition: transform .28s var(--lx-ease), box-shadow .28s var(--lx-ease); }
.lx-cat:hover { transform: translateY(-4px); box-shadow: var(--lx-shadow-lg); }
.lx-cat img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .78; transition: transform .5s var(--lx-ease); }
.lx-cat:hover img { transform: scale(1.06); }
.lx-cat::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.78), rgba(0,0,0,.05) 65%); }
.lx-cat__body { position: relative; z-index: 1; padding: 1.5rem; }
.lx-cat__body h3 { color: #fff; margin-bottom: .2rem; }
.lx-cat__body span { color: rgba(255,255,255,.82); font-size: .88rem; }

.lx-adv { background: var(--lx-surface); border: 1px solid rgba(20,22,15,.06); border-radius: 20px; padding: 1.7rem; transition: transform .24s var(--lx-ease), box-shadow .24s var(--lx-ease), border-color .24s ease; }
.lx-adv:hover { transform: translateY(-4px); box-shadow: var(--lx-shadow); border-color: transparent; }
.lx-adv__icon { width: 32px; height: 32px; background: none; color: var(--lx-olive-deep); display: grid; place-items: start; margin-bottom: 1.1rem; transition: transform .24s var(--lx-ease); }
.lx-adv__icon svg { width: 30px; height: 30px; }
.lx-adv:hover .lx-adv__icon { transform: scale(1.08) rotate(-4deg); }
/* Value-prop icon badge — matched to Figma (56x56 rounded background, ~24px icon) */
.lx-adv .lx-adv__icon { width: 56px; height: 56px; background: #f0f0ec; border-radius: 16px; place-items: center; }
.lx-adv .lx-adv__icon img, .lx-adv .lx-adv__icon svg { width: 24px; height: 24px; }
.lx-adv h3 { font-size: 1.02rem; }
.lx-adv p { color: var(--lx-text-muted); font-size: .9rem; margin: 0; }

.lx-product { background: var(--lx-surface); border: 1px solid var(--lx-line); border-radius: var(--lx-radius); overflow: hidden; display: flex; flex-direction: column; transition: box-shadow .2s var(--lx-ease), transform .2s var(--lx-ease), border-color .2s ease; }
.lx-product:hover { box-shadow: var(--lx-shadow-lg); transform: translateY(-5px); border-color: transparent; }
.lx-product__media { aspect-ratio: 1/1; background: var(--lx-muted); overflow: hidden; }
.lx-product__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--lx-ease); }
.lx-product:hover .lx-product__media img { transform: scale(1.05); }
.lx-product__body { padding: 1rem 1.1rem 1.2rem; display: flex; flex-direction: column; flex: 1; }
.lx-product__model { font-size: .72rem; letter-spacing: .06em; color: var(--lx-text-muted); text-transform: uppercase; }
.lx-product__name { font-family: var(--lx-display); font-weight: 700; color: var(--lx-ink); margin: .15rem 0 .5rem; }
.lx-product__tags { display: flex; flex-wrap: wrap; gap: .35rem; margin-bottom: .9rem; }
.lx-tag { font-size: .72rem; color: var(--lx-olive-dark); background: var(--lx-olive-pale); padding: .2em .6em; border-radius: 999px; }
.lx-product__actions { display: flex; gap: .5rem; margin-top: auto; }

.lx-banner { background: var(--lx-olive); color: #fff; border-radius: var(--lx-radius-lg); overflow: hidden; }
.lx-banner__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; padding: clamp(28px, 4vw, 58px); }
.lx-banner h2 { color: #fff; }
.lx-banner__list { list-style: none; padding: 0; margin: 1.2rem 0 1.6rem; display: grid; gap: .6rem; }
.lx-banner__list li { display: flex; align-items: center; gap: .6rem; color: rgba(255,255,255,.92); }
.lx-banner__media { border-radius: var(--lx-radius); overflow: hidden; aspect-ratio: 4/3; background: #10130f; }
.lx-banner__media img { width: 100%; height: 100%; object-fit: cover; }

.lx-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--lx-gutter); text-align: center; position: relative; }
.lx-steps::before { content: ""; position: absolute; top: 24px; left: 16.67%; right: 16.67%; height: 1px; background: var(--lx-line); z-index: 0; }
.lx-step { position: relative; z-index: 1; }
.lx-step__icon { width: 48px; height: 48px; border-radius: 50%; border: 1px solid #e4e6de; background: #eef0ea; color: var(--lx-olive-dark); font-weight: 700; display: grid; place-items: center; margin: 0 auto 1rem; transition: transform .24s var(--lx-ease), background .24s ease, color .24s ease; }
.lx-step:hover .lx-step__icon { transform: translateY(-4px); background: var(--lx-olive); color: #fff; }
.lx-step h3 { font-size: 1rem; }
.lx-step p { color: var(--lx-text-muted); font-size: .9rem; }

.lx-split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.lx-split__media { border-radius: var(--lx-radius); overflow: hidden; aspect-ratio: 4/3; background: transparent; }
.lx-split__media img { width: 100%; height: 100%; object-fit: contain; }
.lx-badges { display: flex; gap: 1rem; flex-wrap: wrap; margin: 1rem 0 1.4rem; }
.lx-badge { display: inline-flex; align-items: center; gap: .45rem; font-size: .85rem; font-weight: 600; color: var(--lx-ink-soft); }
.lx-badge svg { color: var(--lx-olive); }

.lx-finalcta { text-align: center; }
.lx-finalcta p { max-width: 52ch; margin-inline: auto; color: var(--lx-text-muted); }

.lx-footer { background: var(--lx-footer-bg); color: var(--lx-footer-fg); padding-block: 3rem 1.5rem; }
.lx-footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.3fr; gap: 2rem; }
.lx-footer h4 { color: #fff; font-size: 1.15rem; font-weight: 700; letter-spacing: 0; text-transform: none; margin-bottom: 1.4rem; }
.lx-footer a { color: rgba(255,255,255,.82); font-size: .98rem; display: block; padding: .42rem 0; transition: color .18s ease, padding-inline-start .18s ease; }
.lx-footer a:hover { color: #fff; padding-inline-start: 4px; }
.lx-footer__brand .lx-logo { color: #fff; }
.lx-footer__brand p { color: rgba(255,255,255,.78); font-size: .95rem; line-height: 1.65; max-width: 32ch; margin-top: 1.1rem; }
.lx-footer__social { display: flex; gap: 1.1rem; margin-top: 1.8rem; }
.lx-footer__social a { color: #fff; padding: 0; display: inline-flex; }
.lx-footer__social a:hover { padding-inline-start: 0; opacity: .8; }
.lx-footer__contact { display: inline-flex; align-items: center; gap: .6rem; padding: .42rem 0; }
.lx-footer__mail { display: inline-flex; color: #fff; }
.lx-footer__bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 2.2rem; padding-top: 1.2rem; font-size: .82rem; color: rgba(255,255,255,.5); display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }

.lx-wa { position: fixed; bottom: 22px; inset-inline-end: 22px; z-index: 60; width: 58px; height: 58px; border-radius: 50%; background: #25D366; color: #fff; display: grid; place-items: center; box-shadow: 0 8px 24px rgba(0,0,0,.25); transition: transform .18s var(--lx-ease); animation: lx-pop .4s var(--lx-ease) both; }
.lx-wa::before { content: ""; position: absolute; inset: 0; border-radius: 50%; box-shadow: 0 0 0 0 rgba(37,211,102,.5); animation: lx-ring 2.4s ease-out infinite; }
.lx-wa:hover { transform: scale(1.08); }
.lx-wa svg { width: 30px; height: 30px; position: relative; }

.lx-pager { display: flex; align-items: center; gap: .4rem; flex-wrap: wrap; justify-content: center; margin-top: 2rem; }
.lx-pager a, .lx-pager span { min-width: 38px; height: 38px; padding: 0 .6rem; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--lx-line); border-radius: var(--lx-radius-sm); background: var(--lx-surface); font-size: .9rem; transition: background .16s ease, color .16s ease, border-color .16s ease; }
.lx-pager a:hover { border-color: var(--lx-olive); color: var(--lx-olive-dark); }
.lx-pager .current { background: var(--lx-olive); color: #fff; border-color: var(--lx-olive); }
.lx-pager .disabled { opacity: .45; pointer-events: none; }
.lx-pagesize, .lx-field { display: flex; align-items: center; gap: .5rem; font-size: .88rem; color: var(--lx-text-muted); }
.lx-field { flex-direction: column; align-items: flex-start; gap: .3rem; }
.lx-pagesize select, .lx-field select, .lx-field input { font: inherit; padding: .45rem .6rem; border: 1px solid var(--lx-line); border-radius: var(--lx-radius-sm); background: #fff; transition: border-color .16s ease; }
.lx-field select:focus, .lx-field input:focus { outline: none; border-color: var(--lx-olive); }
.lx-toolbar { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; justify-content: space-between; margin-bottom: 1.5rem; }

.lx-stack > * + * { margin-top: 1rem; }
.text-muted { color: var(--lx-text-muted); }
.lx-link-arrow { color: var(--lx-olive); font-family: "Inter", sans-serif; font-weight: 700; font-size: 14px; transition: gap .18s ease; }
.lx-catalog-link { color: var(--lx-text-muted); font-weight: 500; font-size: .92rem; }
.lx-catalog-link:hover { color: var(--lx-ink); }
.lx-link-arrow:hover { text-decoration: underline; }

@keyframes lx-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes lx-pop { from { transform: scale(0); } to { transform: scale(1); } }
@keyframes lx-ring { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); } 70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }
@keyframes lx-fade-up { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }
@keyframes hx-rise { from { transform: translateY(14px); } to { transform: none; } }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--lx-ease), transform .7s var(--lx-ease); will-change: opacity, transform; }
.reveal--left  { transform: translateX(-36px); }
.reveal--right { transform: translateX(36px); }
.reveal--scale { transform: scale(.94); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }

[dir="rtl"] .lx-nav a::after { left: auto; right: 0; }
[dir="rtl"] .reveal--left  { transform: translateX(36px); }
[dir="rtl"] .reveal--right { transform: translateX(-36px); }
[dir="rtl"] .reveal.is-visible { transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

@media (max-width: 960px) {
  .lx-hero__grid, .lx-banner__grid, .lx-split { grid-template-columns: 1fr; }
  .lx-hero__media, .lx-banner__media { order: -1; }
  .lx-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .lx-nav, .lx-header .lx-lang { display: none; }
  .lx-burger { display: block; }
  .lx-nav.open { display: flex; position: absolute; top: 72px; inset-inline: 0; flex-direction: column; background: var(--lx-bg); padding: 1rem var(--lx-gutter); border-bottom: 1px solid var(--lx-line); margin: 0; animation: lx-fade-up .25s var(--lx-ease) both; }
}
@media (max-width: 620px) {
  .lx-grid--2, .lx-grid--3, .lx-grid--4, .lx-steps { grid-template-columns: 1fr; }
  .lx-footer__grid { grid-template-columns: 1fr 1fr; }
}

.lx-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.lx-gallery__main { border: 1px solid var(--lx-line); border-radius: var(--lx-radius); overflow: hidden; aspect-ratio: 1/1; background: var(--lx-muted); }
.lx-gallery__main img { width: 100%; height: 100%; object-fit: cover; animation: lx-fade-up .4s var(--lx-ease) both; }
.lx-gallery__thumbs { display: flex; gap: .6rem; margin-top: .8rem; flex-wrap: wrap; }
.lx-thumb { width: 74px; height: 74px; border: 1px solid var(--lx-line); border-radius: 10px; overflow: hidden; background: var(--lx-muted); cursor: pointer; padding: 0; transition: border-color .18s ease, transform .18s ease; }
.lx-thumb:hover { transform: translateY(-2px); }
.lx-thumb.active { border-color: var(--lx-olive); box-shadow: 0 0 0 2px rgba(81,98,56,.25); }
.lx-thumb img { width: 100%; height: 100%; object-fit: cover; }
.lx-detail__info h1 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
.lx-spec { display: flex; gap: .4rem; flex-wrap: wrap; margin-top: .4rem; }
.lx-keyfeatures { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; margin-top: 1.2rem; }
.lx-keyfeature { display: flex; align-items: center; gap: .5rem; font-size: .92rem; }
.lx-keyfeature svg { color: var(--lx-olive); flex: none; }
@media (max-width: 860px) { .lx-detail { grid-template-columns: 1fr; gap: 2rem; } .lx-keyfeatures { grid-template-columns: 1fr; } }

.lx-admin-head { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.lx-admin-nav { display: flex; gap: .5rem; margin-bottom: 1.5rem; }
.lx-admin-nav a { padding: .5rem .9rem; border-radius: var(--lx-radius-sm); font-size: .9rem; font-weight: 600; color: var(--lx-text-muted); border: 1px solid var(--lx-line); background: #fff; }
.lx-admin-nav a.active, .lx-admin-nav a:hover { background: var(--lx-olive); color: #fff; border-color: var(--lx-olive); }
.lx-table { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--lx-line); border-radius: var(--lx-radius); overflow: hidden; }
.lx-table th, .lx-table td { text-align: start; padding: .8rem 1rem; border-bottom: 1px solid var(--lx-line); font-size: .9rem; vertical-align: middle; }
.lx-table th { background: var(--lx-muted); font-family: var(--lx-display); font-size: .78rem; text-transform: uppercase; letter-spacing: .05em; color: var(--lx-text-muted); }
.lx-table tr:last-child td { border-bottom: 0; }
.lx-table tbody tr { transition: background .15s ease; }
.lx-table tbody tr:hover { background: var(--lx-muted); }
.lx-badge-status { font-size: .74rem; font-weight: 600; padding: .2em .6em; border-radius: 999px; }
.lx-badge-on { background: var(--lx-olive-pale); color: var(--lx-olive-dark); }
.lx-badge-off { background: #f0d9d6; color: #b3261e; }
.lx-form { display: grid; gap: 1.1rem; max-width: 820px; }
.lx-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.lx-form label { display: block; text-transform: uppercase; font-size: 11px; letter-spacing: .06em; font-weight: 600; color: var(--lx-text-muted); margin-bottom: .45rem; }
.lx-input, .lx-form input, .lx-form select, .lx-form textarea { width: 100%; padding: .55rem .7rem; border: 1px solid var(--lx-line); border-radius: var(--lx-radius-sm); font: inherit; background: #fff; }
.lx-input:focus, .lx-form input:focus, .lx-form select:focus, .lx-form textarea:focus { outline: none; border-color: var(--lx-olive); }
.lx-form textarea { min-height: 90px; resize: vertical; }
.lx-repeat-row { display: flex; gap: .5rem; align-items: center; margin-bottom: .5rem; }
.lx-fieldset { border: 1px solid var(--lx-line); border-radius: var(--lx-radius); padding: 1.1rem; }
.lx-fieldset > legend { font-family: var(--lx-display); font-weight: 700; font-size: .95rem; padding: 0 .4rem; }
.lx-icon-btn { background: none; border: 1px solid var(--lx-line); border-radius: var(--lx-radius-sm); padding: .4rem .6rem; cursor: pointer; font-size: .82rem; transition: all .15s ease; }
.lx-icon-btn:hover { border-color: var(--lx-ink); }
.lx-icon-btn--danger:hover { border-color: #b3261e; color: #b3261e; }
@media (max-width: 720px) { .lx-form-grid { grid-template-columns: 1fr; } }

[dir="rtl"] body { font-family: "KO Sans", "Inter", system-ui, sans-serif; }
[dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] h3, [dir="rtl"] h4,
[dir="rtl"] .lx-logo, [dir="rtl"] .lx-product__name { font-family: "KO Sans", "Manrope", sans-serif; }
[dir="rtl"] .lx-hero__text, [dir="rtl"] .lx-lead { margin-inline: 0; }
[dir="rtl"] .lx-link-arrow, [dir="rtl"] .lx-cat__body span { direction: rtl; }

[tabindex="-1"]:focus,
h1:focus,
h2:focus { outline: none; }
:focus:not(:focus-visible) { outline: none; }

.hx { position: relative; overflow: hidden; min-height: clamp(520px, 44vw, 760px); display: flex; align-items: stretch;
  background: linear-gradient(120deg, #1c2114 0%, #3a4327 45%, #708255 100%); color: #fff; }
.hx__streaks { position: absolute; inset: 0; background:
  repeating-linear-gradient(115deg, rgba(255,255,255,.06) 0 2px, transparent 2px 26px); pointer-events: none; opacity:.7; }
.hx__grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr 1fr; gap: 2.5rem; align-items: center; width: 100%; }
.hx__eyebrow { display: inline-flex; align-items: center; gap: .5rem; font-family: "Manrope", sans-serif; font-size: 14px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; color: #434e2f; background: rgba(255,255,255,.1); border: 1px solid #adadad; padding: 10px 16px; border-radius: 400px; margin-bottom: 40px; }
.hx h1 { color: #fff; font-family: "Manrope", sans-serif; font-weight: 800; font-size: clamp(2.4rem, 4.6vw, 56px); line-height: 1.1; letter-spacing: -0.064em; margin: 0 0 20px; }
.hx h1 .accent { color: #bace9a; }
.hx__text { color: rgba(255,255,255,.85); font-family: "Inter", sans-serif; font-weight: 300; font-size: 16px; line-height: 24px; max-width: 424px; margin: 0 0 24px; }
.hx__cta { display: flex; gap: 26px; flex-wrap: wrap; }
.hx__media { position: relative; }
.hx__media img { width: 100%; height: auto; filter: drop-shadow(0 30px 60px rgba(0,0,0,.5)); animation: lx-float 6s ease-in-out infinite; }
.hx__slide { animation: hx-rise .5s var(--lx-ease) both; display: flex; flex-direction: column; align-items: flex-start; }
.hx__dots { display: flex; gap: .5rem; margin-top: 2rem; }
.hx__dots button { width: 10px; height: 10px; border-radius: 999px; border: 0; background: rgba(255,255,255,.35); cursor: pointer; padding: 0; transition: all .2s ease; }
.hx__dots button.active { background: var(--lx-olive); width: 12px; height: 12px; }
.hx__pills { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; margin-top: 2.5rem; }
.hx__pill { display: flex; align-items: center; gap: .75rem; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.16); backdrop-filter: blur(12px); border-radius: 16px; padding: 16px; min-height: 74px; font-family: "Manrope", sans-serif; font-size: 1rem; font-weight: 600; color: #fff; }
.hx__pill svg { color: #bace9a; flex: none; }

.lx-cat5 { display: grid; grid-template-columns: repeat(6, 1fr); gap: var(--lx-gutter); }
.lx-cat5 > *:nth-child(1), .lx-cat5 > *:nth-child(2) { grid-column: span 3; }
.lx-cat5 > *:nth-child(3), .lx-cat5 > *:nth-child(4), .lx-cat5 > *:nth-child(5) { grid-column: span 2; }
.lx-ccard { position: relative; background: var(--lx-surface); border: 1px solid rgba(20,22,15,.05); border-radius: 24px; padding: 32px; display: flex; align-items: flex-start; gap: 1rem; min-height: 200px; overflow: hidden; transition: transform .24s var(--lx-ease), box-shadow .24s var(--lx-ease); box-shadow: 0 1px 2px rgba(20,22,15,.04), 0 14px 34px rgba(20,22,15,.06); }
.lx-ccard:hover { transform: translateY(-4px); box-shadow: var(--lx-shadow-lg); }
.lx-ccard__body { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: flex-start; max-width: 60%; }
.lx-ccard__body h3 { font-family: "Manrope", sans-serif; font-weight: 700; font-size: 22px; letter-spacing: -.01em; color: var(--lx-ink); margin: 0 0 10px; }
.lx-ccard__body p { color: var(--lx-text-muted); font-size: 15px; line-height: 1.5; margin: 0; max-width: 24ch; }
.lx-ccard__arrow { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--lx-line); display: grid; place-items: center; color: var(--lx-ink); flex: none; margin-top: 18px; transition: all .2s ease; }
.lx-ccard:hover .lx-ccard__arrow { background: var(--lx-olive); color: #fff; border-color: var(--lx-olive); }
.lx-ccard__img { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); width: auto; height: auto; max-width: 46%; max-height: 74%; object-fit: contain; object-position: right center; opacity: 1; pointer-events: none; }

.lx-bcard { position: relative; background: var(--lx-surface); border: none; border-radius: 28px; padding: 16px; overflow: hidden; display: flex; flex-direction: column; cursor: pointer; transition: transform .2s var(--lx-ease), box-shadow .2s var(--lx-ease); }
.lx-bcard .lx-link-arrow::after { content: ""; position: absolute; inset: 0; z-index: 1; }
.lx-bcard .lx-chips, .lx-bcard .lx-bcard__cat { position: relative; z-index: 2; }
.lx-bcard:hover { transform: translateY(-5px); box-shadow: var(--lx-shadow-lg); border-color: transparent; }
.lx-bcard__media { position: relative; aspect-ratio: 1/1; background: #fff; border-radius: 16px; overflow: hidden; margin-bottom: 4px; }
.lx-bcard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--lx-ease); }
.lx-bcard:hover .lx-bcard__media img { transform: scale(1.05); }
.lx-bcard__cat { display: inline-block; align-self: flex-start; font-family: "Inter", sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: #fff; background: var(--lx-olive); padding: 4px 12px; border-radius: 9999px; margin-bottom: .7rem; }
.lx-bcard__body { padding: .8rem 0 0; display: flex; flex-direction: column; flex: 1; }
.lx-bcard__name { font-family: var(--lx-display); font-weight: 700; font-size: 18px; line-height: 28px; color: var(--lx-ink); margin-bottom: .35rem; min-height: 56px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.lx-bcard__desc { font-family: "Inter", sans-serif; color: #45483e; font-size: 14px; line-height: 20px; margin-bottom: 1rem; min-height: 40px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.lx-bcard__foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }

.lx-collection-quote { text-align: center; font-style: italic; color: var(--lx-text-muted); margin: 1.6rem 0 0; }
.lx-collection-quote::before { content: "\201C"; }
.lx-collection-quote::after { content: "\201D"; }
.lx-btn--ghost-light { background: transparent; border: 1px solid rgba(255,255,255,.55); color: #fff; }
.lx-btn--ghost-light:hover { background: rgba(255,255,255,.12); }
.lx-explore-cta .lx-btn--ghost { background: transparent; border: 1px solid var(--lx-olive); color: var(--lx-olive); }
.lx-explore-cta .lx-btn--ghost:hover { background: rgba(112,130,85,.08); }
.lx-tabs { display: flex; gap: .5rem; flex-wrap: wrap; justify-content: center; margin-bottom: 2rem; }
.lx-tab { padding: .5rem 1.1rem; border-radius: 999px; border: 1px solid var(--lx-line); background: #fff; font-size: .9rem; font-weight: 600; color: var(--lx-text-muted); cursor: pointer; transition: all .18s ease; }
.lx-tab:hover { border-color: var(--lx-olive); color: var(--lx-olive-dark); }
.lx-tab.active { background: var(--lx-olive); color: #fff; border-color: var(--lx-olive); }

.lx-why { position: relative; overflow: hidden; color: #fff; background: linear-gradient(150deg, #434e2f 0%, #516238 60%, #3a4426 100%); }
.lx-why__wm { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; gap: 3rem; font-family: var(--lx-display); font-weight: 800; font-size: 16vw; color: rgba(255,255,255,.05); white-space: nowrap; pointer-events: none; }
.lx-why__inner { position: relative; z-index: 2; }
.lx-why h2 { color: #fff; }
.lx-why__lead { color: rgba(255,255,255,.8); max-width: 60ch; margin-inline: auto; }
.lx-why__grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; margin-top: 2.5rem; }
.lx-wcard { flex: 0 0 calc((100% - 48px) / 3); box-sizing: border-box; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 20px; padding: 2rem; transition: transform .24s var(--lx-ease), background .24s ease; }
.lx-wcard:hover { transform: translateY(-4px); background: rgba(255,255,255,.1); }
.lx-wcard__icon { width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,.10); display: grid; place-items: center; color: #fff; margin-bottom: 1.1rem; }
.lx-wcard h3 { color: #fff; font-size: 1.05rem; }
.lx-wcard p { color: rgba(255,255,255,.75); font-size: .88rem; margin: 0; }
.lx-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.14); text-align: center; }
.lx-stats > div { border-inline-end: 1px solid rgba(255,255,255,.14); }
.lx-stats > div:last-child { border-inline-end: 0; }
.lx-stat__n { font-family: var(--lx-display); font-weight: 800; font-size: 1.6rem; color: #fff; }
.lx-stat__l { font-family: "Inter", sans-serif; font-size: 12px; letter-spacing: .05em; text-transform: uppercase; color: #bace9a; margin-top: .35rem; }
.lx-why__cta { display: flex; gap: .8rem; justify-content: center; margin-top: 2.5rem; padding-top: 2.5rem; border-top: 1px solid rgba(255,255,255,.14); }

.lx-contact2 { display: grid; grid-template-columns: 1fr 1.05fr; gap: 3rem; align-items: start; }
.lx-contact2__card { background: #fff; border: 1px solid #ececec; border-radius: 24px; box-shadow: 0 2px 4px rgba(20,22,15,.03), 0 14px 40px rgba(20,22,15,.07); padding: 2rem; }
.lx-check { list-style: none; padding: 1.4rem 0 0; margin: 1.4rem 0 0; border-top: 1px solid var(--lx-line); display: grid; gap: .75rem; }
.lx-check li { display: flex; align-items: center; gap: .6rem; font-weight: 500; }
.lx-check svg { color: var(--lx-olive); flex: none; }
@media (max-width: 960px) { .lx-contact2 { grid-template-columns: 1fr; } .lx-cat5 { grid-template-columns: repeat(2,1fr); } .lx-cat5 > * { grid-column: span 1 !important; } .lx-wcard { flex: 0 0 calc((100% - 24px) / 2); } .hx__pills { grid-template-columns: 1fr 1fr; } .hx__grid { grid-template-columns: 1fr; } }
@media (max-width: 620px) { .lx-cat5, .lx-stats, .hx__pills { grid-template-columns: 1fr; } .lx-wcard { flex: 0 0 100%; } }

.lx-footer { background: linear-gradient(150deg, #697b4e 0%, #516238 80%); color: rgba(255,255,255,.82); }
.lx-footer__news { display: flex; border: 1px solid rgba(255,255,255,.4); border-radius: 8px; overflow: hidden; max-width: 260px; }
.lx-footer__news input { flex: 1; background: transparent; border: 0; padding: .6rem .7rem; color: #fff; font: inherit; outline: none; }
.lx-footer__news input::placeholder { color: rgba(255,255,255,.6); }
.lx-footer__news button { background: transparent; border: 0; color: #fff; padding: 0 .8rem; cursor: pointer; }
.lx-footer__bottom { border-top-color: rgba(255,255,255,.16); }

.lx-btn--lg { padding: 16px 24px; font-size: 18px; border-radius: 16px; }

.hx { padding-block: clamp(40px, 6vw, 72px) clamp(56px, 7vw, 88px); }
.hx__bgimg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; z-index: 0; opacity: 1; }
.hx__product { position: absolute; inset-inline-end: clamp(24px, 15vw, 360px); top: 50%; transform: translateY(-50%); width: clamp(220px, 32vw, 470px); height: clamp(250px, 48vh, 520px); object-fit: contain; object-position: center; z-index: 2; pointer-events: none; filter: drop-shadow(0 26px 44px rgba(20,22,15,.20)); animation: hx-fade .6s var(--lx-ease) both; }
@keyframes hx-fade { from { opacity: 0; transform: translateY(-50%) scale(.94); } to { opacity: 1; transform: translateY(-50%) scale(1); } }
.hx__pic { display: contents; }
.hx__mobimg { display: none; }
.hx__grid, .hx__pills, .hx__streaks { position: relative; z-index: 2; }
.hx__media { display: flex; justify-content: center; }
.hx__media img { max-width: 100%; max-height: 460px; width: auto; height: auto; object-fit: contain; }
.hx__pills { margin-top: clamp(2rem, 4vw, 3.5rem); }

.hx__pill { background: rgba(255,255,255,.6); border: 1px solid rgba(197,200,187,.2); color: var(--lx-ink); box-shadow: none; }
.hx__pill svg { color: #516238; }
.hx__pill .hx__pill-ic { width: 44px; height: 44px; border-radius: 50%; background: rgba(81,98,56,.10); display: grid; place-items: center; flex: none; }
.hx__pill .hx__pill-ic svg { width: 100%; height: 100%; }

@media (max-width: 1024px) {
  .hx__media img { max-height: 300px; }
  .hx { min-height: auto; }
}
@media (max-width: 620px) {
  .hx__media img { max-height: 220px; }
}

.lxnav { position: sticky; top: 0; z-index: 50; padding: 20px 0 0; }
.lxnav__bar { width: min(88%, var(--lx-container)); margin-inline: auto; display: flex; align-items: center; gap: 1.5rem;
  background: rgba(255,255,255,.80); backdrop-filter: blur(12px);
  border: 1px solid rgba(197,200,187,.35); border-radius: 16px;
  padding: 16px 40px; box-shadow: 0 8px 30px rgba(20,22,15,.08); }
.lxnav .lx-logo { font-family: var(--lx-display); font-weight: 800; font-size: 1.4rem; letter-spacing: .04em; color: var(--lx-ink); }
.lxnav__links { display: flex; gap: 2rem; margin-inline: auto; }
.lxnav__links a { font-family: var(--lx-display); font-weight: 500; font-size: .95rem; color: #57534e; padding: .3rem 0; position: relative; }
.lxnav__links a:hover { color: var(--lx-ink); }
.lxnav__links a.active { color: var(--lx-ink); font-weight: 700; }
.lxnav__links a.active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 2px; background: var(--lx-olive); border-radius: 2px; }
.lxnav__actions { display: flex; align-items: center; gap: .7rem; }
.lxnav__actions > .lx-btn--primary { margin-inline-start: .5rem; }
.lxnav .lx-lang { display: inline-flex; border: 1px solid var(--lx-line); border-radius: var(--lx-radius-sm); overflow: hidden; }
.lxnav .lx-lang a { padding: .25em .6em; font-size: .78rem; font-weight: 600; color: var(--lx-text-muted); }
.lxnav .lx-lang a.active { background: var(--lx-olive); color: #fff; }
.lxnav__signin { font-size: .85rem; font-weight: 600; color: var(--lx-ink-soft); }
.lxnav__signin:hover { color: var(--lx-olive-dark); }
.lxnav__burger { display: none; background: none; border: 0; cursor: pointer; padding: .3rem; }
.lxnav__burger span { display: block; width: 22px; height: 2px; background: var(--lx-ink); margin: 4px 0; }
@media (max-width: 900px) {
  .lxnav__links { display: none; }
  .lxnav__links.open { display: flex; position: absolute; top: 68px; left: var(--lx-gutter); right: var(--lx-gutter); flex-direction: column; gap: .8rem; background: #fff; border: 1px solid var(--lx-line); border-radius: 14px; padding: 1rem 1.2rem; margin: 0; box-shadow: var(--lx-shadow); }
  .lxnav .lx-lang { display: none; }
  .lxnav__burger { display: block; }
}

.lxnav { padding-top: 12px; }

.hx { margin-top: -84px; padding-top: calc(84px + clamp(28px, 4vw, 52px)); }
@media (max-width: 900px) {
  .hx { margin-top: -76px; padding-top: calc(76px + 28px); }
}

.hx { background: #eceee4; color: var(--lx-text); }
.hx__bgimg { object-position: center; opacity: 1; z-index: 0; }
.hx::after { content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(236,238,228,.92) 0%, rgba(236,238,228,.55) 34%, rgba(236,238,228,0) 58%); }
.hx__body { position: relative; z-index: 2; min-height: 560px; display: flex; flex-direction: column; justify-content: space-between; padding-block: clamp(20px, 3.5vw, 52px); gap: 1.5rem; }
.hx__slide { max-width: 560px; }
.hx h1 { color: var(--lx-ink); }
.hx h1 .accent { color: var(--lx-olive-deep); }
.hx__text { color: #212121; }
.hx__eyebrow { background: rgba(255,255,255,.1); border-color: #adadad; color: #434e2f; }
.hx__cta .lx-btn { font-family: "Manrope", sans-serif; font-weight: 600; font-size: 18px; border-radius: 16px; padding: 16px 24px; }
.hx__cta .lx-btn--primary { background: #708255; color: #fff; border-color: #708255; }
.hx__cta .lx-btn--primary:hover { background: var(--lx-olive-dark); }
.hx__cta .lx-btn--light { background: #dfdfdf; color: #708255; border: 1px solid #e2e8f0; }
.hx__cta .lx-btn--light:hover { background: #d2d2d2; }
.hx__dots button { background: rgba(26,28,27,.22); }
.hx__dots button.active { background: var(--lx-olive); }
@media (max-width: 900px) {
  .hx::after { background: linear-gradient(180deg, rgba(236,238,228,.92) 0%, rgba(236,238,228,.4) 60%, rgba(236,238,228,.7) 100%); }
  .hx__body { min-height: 480px; }
}

.hx__bgimg { object-fit: contain; object-position: right center; }
@media (max-width: 900px) {
  .hx__bgimg { object-fit: contain; object-position: center bottom; opacity: .85; }
}

.hx__bgimg { object-fit: cover; object-position: right center; }
@media (max-width: 900px) { .hx__bgimg { object-fit: cover; object-position: center; } }

/* ===== Mobile Home hero: image banner on top, content stacked below ===== */
@media (max-width: 720px) {
  .hx { display: flex; flex-direction: column; min-height: auto; overflow: visible; margin-top: -76px; padding-top: calc(76px + 14px); }
  .hx::after { display: none !important; }
  .hx__pic { display: block; order: -1; position: relative; width: calc(100% - 32px); margin: 0 auto 22px; height: auto; aspect-ratio: 1100 / 619; overflow: hidden; border-radius: 20px; box-shadow: 0 10px 30px rgba(20,22,15,.10); }
  .hx__mobimg { display: block; position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
  .hx__bgimg, .hx__product { display: none !important; }
  .hx__body { position: static; display: block; min-height: 0; z-index: 2; padding: 0 var(--lx-gutter) 10px; }
  .hx__wm { display: none; }
  .hx__slide { max-width: none; animation: none; }
  .hx__eyebrow { align-self: flex-start; }
  .hx h1 { font-size: clamp(2rem, 8vw, 2.7rem); }
  .hx__cta { flex-direction: column; align-items: stretch; }
  .hx__cta .lx-btn { width: 100%; justify-content: center; }
  .hx__pills { grid-template-columns: 1fr; gap: 10px; margin-top: 1.6rem; }
}

.lx-bcard__media { background: #fff; border-radius: 16px; }
.lx-bcard__media img { object-fit: contain; padding: .8rem; }
.lx-product__media { background: #f4f5f0; }
.lx-product__media img { object-fit: contain; padding: 1.2rem; }

.lx-ccard__img { width: auto; height: auto; max-width: 46%; max-height: 74%; object-fit: contain; object-position: right center; top: 50%; right: 16px; bottom: auto; transform: translateY(-50%); opacity: 1; }

.lx-footer__news { max-width: 290px; }
.lx-footer__news input { min-width: 0; }
.lx-footer__news button { flex: none; min-width: 46px; padding: 0 .9rem; font-size: 1.15rem; line-height: 1; display: grid; place-items: center; }

.lx-wcard__icon { color: #fff; }
.lx-wcard__icon img { display: block; }

.lx-abouthero { text-align: center; padding-block: clamp(48px, 7vw, 90px) clamp(24px,3vw,40px); }
.lx-abouthero h1 { max-width: none; margin-inline: auto; font-size: clamp(2.4rem, 5.4vw, 4.4rem); line-height: 1.08; letter-spacing: -0.025em; }
.lx-abouthero h1 .accent { color: var(--lx-olive); }

.lx-heritage { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.lx-heritage p { color: var(--lx-text-muted); }
.lx-heritage .lx-hl { color: var(--lx-olive); }
.lx-heritage strong.lx-hl { font-weight: 700; }

.lx-mv { display: grid; grid-template-columns: 1fr 1fr; gap: var(--lx-gutter); }
.lx-mv-card { background: var(--lx-surface); border: 1px solid var(--lx-line); border-radius: var(--lx-radius-lg); padding: 2.2rem; transition: transform .24s var(--lx-ease), box-shadow .24s ease; }
.lx-mv-card:hover { transform: translateY(-4px); box-shadow: var(--lx-shadow); }
.lx-mv-card--dark { background: linear-gradient(150deg, #516238, #434e2f); color: #fff; border-color: transparent; }
.lx-mv-card--dark h3, .lx-mv-card--dark p { color: #fff; }
.lx-mv-card--dark p { color: #d6eab5; }
.lx-mv-card__icon { color: var(--lx-olive-dark); margin-bottom: 1.2rem; line-height: 0; }
.lx-mv-card__icon svg { width: 30px; height: 30px; }
.lx-mv-card--dark .lx-mv-card__icon { color: var(--lx-olive-pale); }
.lx-mv-card h3 { font-size: 1.4rem; }
.lx-mv-card p { margin: 0; }

.lx-standard-head { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; margin-bottom: 2.5rem; }
.lx-standard-head p { color: var(--lx-text-muted); margin: 0; text-align: start; align-self: start; }
.lx-pillars { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.25rem; }
.lx-pillar { padding: 1.7rem 1.4rem; border: 1px solid var(--lx-line); border-radius: 16px; background: var(--lx-surface); transition: transform .28s var(--lx-ease), box-shadow .28s var(--lx-ease); }
.lx-pillar:hover { transform: translateY(-4px); box-shadow: var(--lx-shadow-lg); }
.lx-pillar__icon { color: var(--lx-olive-dark); margin-bottom: 1rem; line-height: 0; }
.lx-pillar__icon svg { width: 30px; height: 30px; }
.lx-pillar h3 { font-size: 1.05rem; }
.lx-pillar p { color: var(--lx-text-muted); font-size: .88rem; margin: 0; }

.lx-infra { background: linear-gradient(150deg, #434e2f 0%, #516238 60%, #3a4426 100%); color: #fff; }
.lx-infra h2 { color: #fff; }
.lx-infra__lead { color: rgba(255,255,255,.8); max-width: 60ch; margin-inline: auto; }
.lx-infra__grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--lx-gutter); margin-top: 2.5rem; }
.lx-infra-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: var(--lx-radius); padding: 1.8rem; }
.lx-infra-card__icon { color: #bace9a; margin-bottom: 1rem; line-height: 0; }
.lx-infra-card__icon svg { width: 30px; height: 30px; }
.lx-infra-card h3 { color: #fff; }
.lx-infra-card p { color: rgba(255,255,255,.78); margin: 0; }

.lx-quote-section { position: relative; overflow: hidden; }
.lx-quote-deco { position: absolute; z-index: 0; width: 132px; opacity: .10; pointer-events: none; line-height: 0; }
.lx-quote-deco svg { width: 100%; height: auto; display: block; }
.lx-quote-deco--tr { top: 44px; inset-inline-end: 6%; }
.lx-quote-deco--bl { bottom: 44px; inset-inline-start: 6%; }
.lx-quote { position: relative; z-index: 1; text-align: center; max-width: 1040px; margin-inline: auto; padding-inline: 40px; }
.lx-quote blockquote { font-family: var(--lx-display); font-weight: 700; font-size: clamp(1.3rem, 2.4vw, 1.9rem); line-height: 1.4; color: var(--lx-ink); margin: 0 0 1.6rem; }
.lx-quote__attr { display: inline-flex; align-items: center; gap: .8rem; }
.lx-quote__line { width: 40px; height: 1px; background: var(--lx-olive); }
.lx-quote__who { text-align: start; }
.lx-quote__who strong { display: block; font-size: .8rem; letter-spacing: .12em; color: var(--lx-olive-dark); }
.lx-quote__who span { font-size: .82rem; color: var(--lx-text-muted); }

.lx-bizsec { background: #eeeeee; }
.lx-bizcase { display: grid; gap: 1rem; }
.lx-biz-row { display: flex; align-items: center; gap: 1.2rem; background: var(--lx-surface); border: 1px solid var(--lx-line); border-radius: var(--lx-radius); padding: 1.2rem 1.5rem; transition: transform .2s var(--lx-ease), box-shadow .2s ease; }
.lx-biz-row:hover { transform: translateX(4px); box-shadow: var(--lx-shadow); }
.lx-biz-row__icon { width: 42px; height: 42px; border-radius: 50%; background: #edefeb; color: var(--lx-olive-dark); display: grid; place-items: center; flex: none; }
.lx-biz-row__body { flex: 1; }
.lx-biz-row__body h3 { font-size: 1.02rem; margin-bottom: .15rem; }
.lx-biz-row__body p { color: var(--lx-text-muted); font-size: .88rem; margin: 0; }
.lx-biz-row__tag { color: var(--lx-olive-dark); font-weight: 700; font-size: .85rem; white-space: nowrap; }

@media (max-width: 900px) {
  .lx-heritage, .lx-mv, .lx-standard-head, .lx-infra__grid { grid-template-columns: 1fr; }
  .lx-pillars { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .lx-pillar { border-left: 0; padding: 0; }
}
@media (max-width: 560px) {
  .lx-pillars { grid-template-columns: 1fr; }
  .lx-biz-row { flex-wrap: wrap; }
}

.lx-quote blockquote { margin-inline: auto; }
@media (max-width: 900px) {
  .lx-quote-deco { width: 84px; }
  .lx-quote-deco--tr { top: 24px; inset-inline-end: 5%; }
  .lx-quote-deco--bl { bottom: 24px; inset-inline-start: 5%; }
}

.lx-logo--img { display: inline-flex; align-items: center; }
.lx-logo--img img { height: 30px; width: auto; display: block; }
.lx-footer .lx-logo--white img { height: 34px; filter: brightness(0) invert(1); }

.lxnav .lx-lang a, .lx-lang a { display: inline-flex; align-items: center; justify-content: center; min-width: 34px; line-height: 1; padding: .55em .8em; font-size: .85rem; }

.lx-footer .lx-logo--white img { filter: none; height: 34px; }

.lx-lang a.lx-ar { transform: none; }

.lx-qhero { position: relative; overflow: hidden; text-align: center; padding-block: clamp(40px, 5vw, 76px); background: var(--lx-bg); }
.lx-qhero__inner { position: relative; z-index: 2; max-width: 820px; margin-inline: auto;
  display: flex; flex-direction: column; align-items: center; gap: 26px; }
.lx-eyebrow--pale { background: #cfe3a3; color: #121f01; letter-spacing: .12em; font-size: .8rem; padding: 9px 20px; border-radius: 999px; }
.lx-qhero h1 { font-size: clamp(2.6rem, 6vw, 4.5rem); letter-spacing: -0.025em;
  line-height: 1.06; margin: 0; }
.lx-qhero__sub { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--lx-ink-soft);
  max-width: 680px; margin: 0; line-height: 1.5; }
.lx-qhero__wm { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 1; pointer-events: none; width: min(42vw, 320px); aspect-ratio: 351 / 411; background: url("/images/design/quality-x.png") center / contain no-repeat; opacity: .85; }

.lx-qhead { text-align: center; max-width: 720px; margin: 0 auto clamp(38px, 5vw, 60px); }
.lx-qhead h2 { margin: 0 0 .5rem; }
.lx-qhead p { color: var(--lx-ink-soft); margin: 0; font-size: 1.05rem; }
.lx-qhead--left { text-align: start; max-width: none; margin-left: 0; margin-right: 0; }
.lx-qhead--left .lx-underline { margin-top: 14px; }

.lx-qgrid4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.lx-qcard { background: var(--lx-surface); border: 1px solid var(--lx-line);
  border-radius: 12px; padding: 30px 26px; box-shadow: var(--lx-shadow);
  transition: transform .35s var(--lx-ease), box-shadow .35s var(--lx-ease); }
.lx-qcard:hover { transform: translateY(-6px); box-shadow: var(--lx-shadow-lg); }
.lx-qcard__icon { margin-bottom: 20px; line-height: 0; color: var(--lx-olive-dark); }
.lx-qcard__icon svg { width: 34px; height: 34px; }
.lx-qcard h3 { margin: 0 0 .55rem; font-size: 1.15rem; color: var(--lx-ink); }
.lx-qcard p { margin: 0; color: var(--lx-ink-soft); font-size: .95rem; line-height: 1.55; }
.lx-qcard--hl { background: var(--lx-olive); border-color: transparent;
  box-shadow: 0 18px 42px rgba(81,98,56,.32); }
.lx-qcard--hl .lx-qcard__icon { color: #fff; }
.lx-qcard--hl h3 { color: #fff; }
.lx-qcard--hl p { color: #d6eab5; }

.lx-qtest { background: #eff5e5; }
.lx-qtest .lx-qgrid4 { gap: 24px; }
.lx-qenv { background: var(--lx-surface); border: 1px solid var(--lx-line);
  border-radius: 12px; padding: 28px 24px; text-align: center;
  transition: transform .35s var(--lx-ease), box-shadow .35s var(--lx-ease); }
.lx-qenv:hover { transform: translateY(-6px); box-shadow: var(--lx-shadow-lg); }
.lx-qenv__icon { width: 52px; height: 52px; border-radius: 50%; background: #edefeb;
  color: var(--lx-olive-dark); display: grid; place-items: center; margin: 0 auto 18px; }
.lx-qenv__icon svg { width: 26px; height: 26px; }
.lx-qenv h3 { margin: 0 0 .5rem; font-size: 1.1rem; }
.lx-qenv p { margin: 0; color: var(--lx-ink-soft); font-size: .95rem; }

.lx-qsafety { position: relative; overflow: hidden; color: #fff;
  background: linear-gradient(139deg, #697b4e 0%, #516238 100%); }
.lx-qsafety .lx-qhead h2 { color: #fff; }
.lx-qsafety .lx-qhead p { color: #c6d5a9; }
.lx-qsafety__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.lx-prot { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px; padding: 26px 20px; backdrop-filter: blur(2px);
  transition: transform .35s var(--lx-ease), background .35s var(--lx-ease); }
.lx-prot:hover { transform: translateY(-6px); background: rgba(255,255,255,.12); }
.lx-prot__tag { font-size: .66rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: #d6eab5; margin-bottom: 16px; }
.lx-prot__icon { width: 44px; height: 44px; color: #fff; margin-bottom: 16px; }
.lx-prot__icon svg { width: 100%; height: 100%; }
.lx-prot h3 { color: #fff; margin: 0 0 .5rem; font-size: 1.05rem; }
.lx-prot p { margin: 0; color: rgba(255,255,255,.8); font-size: .88rem; line-height: 1.5; }

.lx-qgrid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.lx-qtechcard { background: var(--lx-surface); border: 1px solid var(--lx-line);
  border-radius: 12px; padding: 30px 28px; display: flex; gap: 18px; align-items: flex-start;
  transition: transform .35s var(--lx-ease), box-shadow .35s var(--lx-ease); }
.lx-qtechcard:hover { transform: translateY(-5px); box-shadow: var(--lx-shadow-lg); }
.lx-qtechcard__icon { flex: 0 0 auto; width: 48px; height: 48px; border-radius: 12px;
  display: grid; place-items: center; background: var(--lx-olive-pale); color: var(--lx-olive-deep); }
.lx-qtechcard h3 { margin: 0 0 .4rem; font-size: 1.05rem; }
.lx-qtechcard p { margin: 0; color: var(--lx-ink-soft); font-size: .92rem; line-height: 1.5; }

.lx-qcatrow { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.lx-qcatitem { text-align: center; padding: 28px 16px; border-radius: 14px;
  background: var(--lx-surface); border: 1px solid var(--lx-line);
  transition: transform .35s var(--lx-ease), box-shadow .35s var(--lx-ease); }
.lx-qcatitem:hover { transform: translateY(-6px); box-shadow: var(--lx-shadow-lg); }
.lx-qcatitem__icon { margin: 0 auto 16px; line-height: 0; color: var(--lx-olive-dark); }
.lx-qcatitem__icon svg { width: 40px; height: 40px; }
.lx-qcatitem span { font-weight: 700; color: var(--lx-ink); font-size: .98rem; }

.lx-qpillars { position: relative; overflow: hidden; color: #fff; text-align: center;
  background: linear-gradient(150deg, #434e2f 0%, #516238 60%, #3a4426 100%); }
.lx-qpillars__wm { position: absolute; inset: 0; display: flex; align-items: center;
  justify-content: center; z-index: 1; pointer-events: none; text-align: center;
  font-family: var(--lx-display); font-weight: 800; font-size: clamp(2.4rem, 8.5vw, 7rem);
  letter-spacing: -0.03em; line-height: 0.98;
  color: rgba(250,255,233,.05); }
.lx-qpillars__inner { position: relative; z-index: 2; max-width: 760px; margin-inline: auto;
  display: flex; flex-direction: column; align-items: center; gap: 18px; }
.lx-qpillars h2 { color: #fff; margin: 0; font-size: clamp(1.9rem, 3.4vw, 2.6rem); }
.lx-qpillars p { color: #a9ba8e; margin: 0; font-size: 1.08rem; line-height: 1.6; }

.lx-qcta { text-align: center; background: var(--lx-muted); }
.lx-qcta__inner { max-width: 680px; margin-inline: auto; display: flex;
  flex-direction: column; align-items: center; gap: 20px; }
.lx-qcta h2 { margin: 0; }
.lx-qcta p { margin: 0; color: var(--lx-ink-soft); font-size: 1.08rem; }

@media (max-width: 1000px) {
  .lx-qgrid4, .lx-qsafety__grid, .lx-qcatrow { grid-template-columns: repeat(2, 1fr); }
  .lx-qgrid3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .lx-qgrid4, .lx-qsafety__grid, .lx-qcatrow, .lx-qgrid3 { grid-template-columns: 1fr; }
  .lx-qtechcard { flex-direction: row; }
}

.lx-pthero { position: relative; overflow: hidden; text-align: center;
  padding-block: clamp(76px, 11vw, 150px); background: var(--lx-bg); }
.lx-pthero__wm { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 1; pointer-events: none; width: min(42vw, 320px); aspect-ratio: 351 / 411; background: url("/images/design/quality-x.png") center / contain no-repeat; opacity: .85; }
.lx-pthero__inner { position: relative; z-index: 2; max-width: 900px; margin-inline: auto;
  display: flex; flex-direction: column; align-items: center; gap: 30px; }
.lx-pthero h1 { font-size: clamp(2.6rem, 6vw, 4.5rem); letter-spacing: -0.025em; line-height: 1.02; margin: 0; }
.lx-pthero h1 .accent { color: var(--lx-olive-dark); }
.lx-pthero__sub { font-size: clamp(1.05rem, 1.5vw, 1.25rem); color: var(--lx-text-muted);
  max-width: 640px; margin: 0; line-height: 1.6; }
.lx-pthero__btns { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.lx-btn--ghost { background: #e8e8e8; color: var(--lx-olive-dark); }
.lx-btn--ghost:hover { background: #dcdcdc; }

.lx-pthead h2 { margin: 0 0 14px; }
.lx-underline { width: 64px; height: 4px; border-radius: 999px; background: var(--lx-olive-dark); }
.lx-pthead--center { text-align: center; }
.lx-pthead--center .lx-underline { margin-inline: auto; }
.lx-pthead__sub { color: var(--lx-text-muted); margin: 12px 0 0; font-size: 1.05rem; }

.lx-ptwho { background: #f3f3f3; }
.lx-whogrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; }
.lx-whocard { background: var(--lx-surface); border-radius: 28px; padding: 40px;
  transition: transform .35s var(--lx-ease), box-shadow .35s var(--lx-ease); }
.lx-whocard:hover { transform: translateY(-6px); box-shadow: var(--lx-shadow-lg); }
.lx-whocard__icon { width: 44px; height: 44px; color: var(--lx-olive-dark); margin-bottom: 14px; }
.lx-whocard__icon svg { width: 100%; height: 100%; }
.lx-whocard h3 { font-size: 1.4rem; margin: 0 0 10px; }
.lx-whocard p { margin: 0; color: var(--lx-text-muted); font-size: .98rem; line-height: 1.6; }

.lx-ptwhy .lx-container { display: grid; grid-template-columns: 2fr 3fr; gap: 32px; align-items: start; }
.lx-ptwhy__head h2 { font-size: clamp(2rem, 3.6vw, 3rem); margin: 0 0 20px; }
.lx-ptwhy__head h2 .accent { color: var(--lx-olive); }
.lx-ptwhy__head p { color: var(--lx-text-muted); font-size: 1.2rem; line-height: 1.6; margin: 0; }
.lx-whygrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.lx-whycard { background: #eee; border-radius: 28px; padding: 32px; display: flex;
  flex-direction: column; gap: 16px; transition: transform .35s var(--lx-ease), background .35s var(--lx-ease); }
.lx-whycard:hover { transform: translateY(-5px); background: #e6e6e6; }
.lx-whycard--wide { grid-column: 1 / span 2; }
.lx-whycard__icon { width: 30px; height: 30px; color: var(--lx-olive-dark); }
.lx-whycard__icon svg { width: 100%; height: 100%; }
.lx-whycard h4 { font-family: var(--lx-font); font-weight: 700; font-size: 1.1rem; margin: 0; color: var(--lx-ink); }

.lx-ptrange__head { display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; flex-wrap: wrap; margin-bottom: 48px; }
.lx-ptlink { display: inline-flex; align-items: center; gap: 8px; color: var(--lx-olive-dark);
  font-weight: 700; }
.lx-ptlink svg { width: 18px; height: 18px; transition: transform .3s var(--lx-ease); }
.lx-ptlink:hover svg { transform: translateX(4px); }
.lx-ptcatgrid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
.lx-ptcat { background: var(--lx-bg); border: 1px solid transparent; border-radius: 28px;
  padding: 32px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 14px;
  transition: transform .35s var(--lx-ease), box-shadow .35s var(--lx-ease), border-color .35s; }
.lx-ptcat:hover { transform: translateY(-6px); box-shadow: var(--lx-shadow-lg); border-color: var(--lx-olive-pale); }
.lx-ptcat__icon { width: 40px; height: 40px; color: var(--lx-olive-dark); }
.lx-ptcat__icon svg { width: 100%; height: 100%; }
.lx-ptcat span { font-weight: 700; color: var(--lx-ink); }

.lx-ptbenefits { position: relative; overflow: hidden; background: #e8e8e8; }
.lx-ptbenefits__x { position: absolute; top: -181px; left: -181px; width: 256px; height: 256px;
  transform: rotate(45deg); border: 32px solid rgba(255,255,255,.5); pointer-events: none; }
.lx-ptbenefits .lx-container { position: relative; z-index: 2; }
.lx-ptbenefits__head { text-align: center; margin-bottom: 64px; }
.lx-ptbenefits__head h2 { font-size: clamp(2rem, 3.6vw, 3rem); margin: 0 0 18px; }
.lx-ptbenefits__head p { color: var(--lx-text-muted); font-size: 1.2rem; margin: 0 auto; max-width: 680px; }
.lx-benerow1 { display: grid; grid-template-columns: 3fr 2fr; gap: 16px; margin-bottom: 16px; }
.lx-benerow2 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.lx-benecard { background: var(--lx-surface); border-radius: 28px; padding: 48px;
  transition: transform .35s var(--lx-ease), box-shadow .35s var(--lx-ease); }
.lx-benecard:hover { transform: translateY(-5px); box-shadow: var(--lx-shadow-lg); }
.lx-benecard h3 { font-family: var(--lx-font); font-weight: 700; font-size: 1.85rem; margin: 0 0 16px; color: var(--lx-ink); }
.lx-benecard--lg h3 { font-size: 1.85rem; }
.lx-benecard p { margin: 0; color: var(--lx-text-muted); font-size: 1.05rem; line-height: 1.6; }
.lx-benecard--olive { background: linear-gradient(134deg, #516238 0%, #697b4e 100%); }
.lx-benecard--olive h3 { color: #fff; }
.lx-benecard--olive p { color: rgba(250,255,233,.85); }
.lx-benecard--sm h3 { font-size: 1.4rem; }
.lx-benecard--sm p { font-size: .98rem; }

.lx-ptsteps__grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.lx-ptsteps__grid .lx-step { position: relative; z-index: 1; background: #f9f9f8; border: 1px solid var(--lx-line); border-radius: 20px;
  padding: 40px 24px 34px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 8px;
  transition: transform .28s var(--lx-ease), box-shadow .28s var(--lx-ease); }
.lx-ptsteps__grid .lx-step:hover { transform: translateY(-4px); box-shadow: var(--lx-shadow-lg); }
.lx-ptsteps__grid .lx-step:not(:last-child)::after { content: ""; position: absolute; top: 118px; inset-inline-end: -28px; width: 28px; height: 2px;
  background: #e2e2e2; z-index: 0; }
.lx-step__num { width: 48px; height: 48px; border-radius: 50%; background: var(--lx-olive-dark);
  color: #fff; font-weight: 700; display: grid; place-items: center; margin-bottom: 12px; }
.lx-ptsteps__grid .lx-step h4 { font-family: var(--lx-font); font-weight: 700; font-size: 1.1rem; margin: 6px 0 0; color: var(--lx-ink); }
.lx-ptsteps__grid .lx-step p { margin: 0; color: var(--lx-text-muted); font-size: .9rem; line-height: 1.5; }

.lx-ptform { background: var(--lx-muted); }
.lx-ptform__card { background: var(--lx-surface); border-radius: 32px; max-width: 896px;
  margin-inline: auto; padding: clamp(32px, 5vw, 64px); box-shadow: 0 25px 50px -12px rgba(81,98,56,.12); }
.lx-ptform__head { text-align: center; margin-bottom: 48px; }
.lx-ptform__head h2 { font-size: 2.25rem; margin: 0 0 10px; }
.lx-ptform__head p { color: var(--lx-text-muted); margin: 0; }
.lx-ptform__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.lx-field { display: flex; flex-direction: column; gap: 8px; }
.lx-field--full { grid-column: 1 / span 2; }
.lx-field label { font-size: .875rem; font-weight: 700; color: var(--lx-text-muted); }
.lx-field input, .lx-field select, .lx-field textarea { font-family: var(--lx-font); font-size: 1rem;
  color: var(--lx-ink); background: transparent; border: none; border-bottom: 2px solid #c5c8bb; width: 100%;
  padding: 12px 4px; outline: none; transition: border-color .25s var(--lx-ease); }
.lx-field input::placeholder, .lx-field textarea::placeholder { color: #9a9a94; }
.lx-field input:focus, .lx-field select:focus, .lx-field textarea:focus { border-color: var(--lx-olive); }
.lx-field textarea { resize: vertical; min-height: 96px; }
.lx-ptform__submit { grid-column: 1 / span 2; }
.lx-ptform__submit .lx-btn { width: 100%; justify-content: center; padding: 20px;
  font-size: 1.1rem; border-radius: 24px;
  background: linear-gradient(135deg, #516238 0%, #697b4e 100%);
  box-shadow: 0 20px 25px -5px rgba(81,98,56,.2); }

@media (max-width: 1000px) {
  .lx-whogrid, .lx-ptcatgrid { grid-template-columns: repeat(2, 1fr); }
  .lx-ptwhy .lx-container { grid-template-columns: 1fr; }
  .lx-benerow1, .lx-benerow2 { grid-template-columns: 1fr; }
  .lx-ptsteps__grid { grid-template-columns: repeat(2, 1fr); }
  .lx-ptsteps__grid::before { display: none; }
}
@media (max-width: 640px) {
  .lx-whogrid, .lx-ptcatgrid, .lx-whygrid, .lx-ptsteps__grid { grid-template-columns: 1fr; }
  .lx-whycard--wide { grid-column: auto; }
  .lx-ptform__grid { grid-template-columns: 1fr; }
  .lx-field--full, .lx-ptform__submit, .lx-prefill { grid-column: auto; }
}

.lx-pxhero { position: relative; overflow: hidden; text-align: center; margin-top: -84px; padding: calc(84px + clamp(36px, 5vw, 64px)) 0 clamp(36px, 5vw, 64px); background: #eef0e6; min-height: clamp(500px, 44vw, 1180px); display: flex; align-items: center; }
.lx-pxhero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; z-index: 0; }
.lx-pxhero__pic { display: contents; }
.lx-pxhero__pictitle { display: none; }
.lx-pxhero__inner { position: relative; z-index: 2; max-width: 700px; margin-inline: auto; display: flex; flex-direction: column; align-items: center; gap: 24px; }
.lx-pxhero h1 { font-size: clamp(1.9rem, 3.4vw, 3.3rem); letter-spacing: -0.025em; margin: 0; line-height: 1.12; max-width: 100%; overflow-wrap: break-word; }
.lx-pxhero h1 .accent { color: var(--lx-olive); }
.lx-pxhero__sub { color: var(--lx-text-muted); font-size: clamp(1rem,1.4vw,1.18rem); max-width: 640px; margin: 0; line-height: 1.6; }
.lx-pxhero__btns { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.lx-pxhero__pills { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; margin-top: 6px; }
.lx-pxpill { display: inline-flex; align-items: center; gap: 8px; color: var(--lx-ink-soft); font-weight: 600; font-size: .95rem; }
.lx-pxpill svg { width: 18px; height: 18px; color: var(--lx-olive); }

.lx-pxlayout { display: grid; grid-template-columns: 280px 1fr; gap: 40px; align-items: start; }
.lx-filters { position: sticky; top: 96px; max-height: calc(100vh - 112px); overflow-y: auto; background: var(--lx-surface); border: 1px solid var(--lx-line);
  border-radius: 20px; padding: 26px; box-shadow: var(--lx-shadow); }
.lx-fgroup { border-bottom: 1px solid var(--lx-line); }
.lx-fgroup:last-of-type { border-bottom: none; }
.lx-fgroup__sum { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 8px;
  padding: 18px 0; font-family: var(--lx-display); font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--lx-ink); }
.lx-fgroup:first-child .lx-fgroup__sum { padding-top: 0; }
.lx-fgroup__sum::-webkit-details-marker { display: none; }
.lx-fchev { color: var(--lx-text-muted); transition: transform .25s var(--lx-ease); flex: none; }
.lx-fgroup[open] > .lx-fgroup__sum .lx-fchev { transform: rotate(180deg); }
.lx-fgroup__body { padding-bottom: 18px; }
.lx-fsearch { width: 100%; border: 1px solid var(--lx-line); border-radius: 10px; padding: 10px 12px;
  font-family: var(--lx-font); font-size: .92rem; outline: none; transition: border-color .25s; background: var(--lx-bg); }
.lx-fsearch:focus { border-color: var(--lx-olive); }
.lx-fcatlist { display: flex; flex-direction: column; gap: 4px; }
.lx-fcat { display: flex; align-items: center; justify-content: space-between; gap: 8px; width: 100%;
  background: none; border: none; text-align: start; cursor: pointer; padding: 8px 10px; border-radius: 8px;
  font-family: var(--lx-font); font-size: .92rem; color: var(--lx-ink-soft); transition: background .2s, color .2s; }
.lx-fcat:hover { background: var(--lx-muted); }
.lx-fcat.active { background: var(--lx-olive-pale); color: var(--lx-olive-deep); font-weight: 700; }
.lx-fcat span.count { color: var(--lx-text-muted); font-size: .82rem; }
.lx-fcat.active span.count { color: var(--lx-olive-deep); }
.lx-wgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.lx-wchip { border: 1px solid var(--lx-line); background: var(--lx-surface); border-radius: 999px; padding: 7px 6px;
  font-size: .8rem; font-weight: 600; color: var(--lx-ink-soft); cursor: pointer; font-family: var(--lx-font); text-align: center;
  transition: all .2s var(--lx-ease); }
.lx-wchip:hover { border-color: var(--lx-olive); color: var(--lx-olive-dark); }
.lx-wchip.active { background: #eef1e6; border-color: var(--lx-olive); color: var(--lx-olive-dark); font-weight: 700; }
.lx-fopts { display: flex; flex-direction: column; gap: 10px; }
.lx-fopt { display: flex; align-items: center; gap: 10px; font-size: .9rem; color: var(--lx-ink-soft); cursor: pointer; }
.lx-fopt input { accent-color: var(--lx-olive); width: 16px; height: 16px; }
.lx-filters__actions { display: flex; flex-direction: column; gap: 10px; padding-top: 20px; }
.lx-filters__actions .lx-btn { width: 100%; justify-content: center; }

.lx-presults__head { display: flex; align-items: center; justify-content: space-between; gap: 16px;
  flex-wrap: wrap; margin-bottom: 24px; }
.lx-presults__head .count { color: var(--lx-ink); font-weight: 700; }
.lx-presults__head .count small { color: var(--lx-text-muted); font-weight: 400; }
.lx-presults__sort { display: inline-flex; align-items: center; gap: 8px; color: var(--lx-text-muted); font-size: .9rem; }
.lx-presults__sort select { border: 1px solid var(--lx-line); border-radius: 8px; padding: 7px 10px;
  font-family: var(--lx-font); font-size: .9rem; color: var(--lx-ink); background: var(--lx-surface); outline: none; }
.lx-pgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.lx-pcard { background: var(--lx-surface); border: 1px solid var(--lx-line); border-radius: 20px; overflow: hidden;
  display: flex; flex-direction: column; transition: transform .35s var(--lx-ease), box-shadow .35s var(--lx-ease); }
.lx-pcard:hover { transform: translateY(-6px); box-shadow: var(--lx-shadow-lg); }
.lx-pcard__media { display: block; aspect-ratio: 4/3; background: var(--lx-bg); padding: 24px; }
.lx-pcard__media img { width: 100%; height: 100%; object-fit: contain; transition: transform .4s var(--lx-ease); }
.lx-pcard:hover .lx-pcard__media img { transform: scale(1.05); }
.lx-pcard__body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.lx-pcard__cat { font-size: .64rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: #fff; background: var(--lx-olive-dark); padding: 5px 11px; border-radius: 7px; align-self: flex-start; }
.lx-pcard__name { font-family: var(--lx-display); font-weight: 700; font-size: 1.02rem; color: var(--lx-ink);
  line-height: 1.3; }
.lx-pcard__desc { color: var(--lx-text-muted); font-size: .86rem; line-height: 1.5; margin: 0; }
.lx-pcard__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; }
.lx-ptag { display: inline-flex; align-items: center; gap: 5px; font-size: .72rem; font-weight: 600;
  color: var(--lx-ink-soft); background: var(--lx-muted); border-radius: 999px; padding: 5px 11px; }
.lx-ptag svg { flex: none; color: var(--lx-olive-dark); }
.lx-pcard__more { display: inline-flex; align-items: center; gap: 6px; color: var(--lx-olive-dark);
  font-weight: 700; font-size: .9rem; margin-top: 4px; }
.lx-pcard__more svg { width: 15px; height: 15px; transition: transform .3s var(--lx-ease); }
.lx-pcard:hover .lx-pcard__more svg { transform: translateX(4px); }

.lx-ppager { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 40px; flex-wrap: wrap; }
.lx-ppager a, .lx-ppager span.num { min-width: 40px; height: 40px; display: inline-flex; align-items: center;
  justify-content: center; padding: 0 12px; border-radius: 10px; border: 1px solid var(--lx-line);
  color: var(--lx-ink-soft); font-weight: 600; font-size: .9rem; background: var(--lx-surface); transition: all .2s; }
.lx-ppager a:hover { border-color: var(--lx-olive); color: var(--lx-olive-dark); }
.lx-ppager a.current { background: var(--lx-olive); border-color: var(--lx-olive); color: #fff; }
.lx-ppager a.disabled { opacity: .4; pointer-events: none; }
.lx-ppager .pageinfo { color: var(--lx-text-muted); font-size: .85rem; width: 100%; text-align: center; margin-bottom: 6px; }

.lx-perf { background: var(--lx-surface); }
.lx-perfgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.lx-perfitem { text-align: start; }
.lx-perfitem__icon { width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center;
  background: #d6eab5; color: var(--lx-olive-deep); margin-bottom: 16px; }
.lx-perfitem h3 { font-size: 1.1rem; margin: 0 0 8px; }
.lx-perfitem p { margin: 0; color: var(--lx-text-muted); font-size: .92rem; line-height: 1.55; }

.lx-stockcta { position: relative; overflow: hidden; text-align: center; color: #fff;
  background: linear-gradient(150deg, #434e2f 0%, #516238 60%, #3a4426 100%); }
.lx-stockcta__inner { position: relative; z-index: 2; max-width: 680px; margin-inline: auto;
  display: flex; flex-direction: column; align-items: center; gap: 20px; }
.lx-stockcta h2 { color: #fff; margin: 0; font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
.lx-stockcta p { color: rgba(255,255,255,.85); margin: 0; font-size: 1.08rem; }
.lx-stockcta .lx-btn { background: #fff; color: var(--lx-olive-dark); }
.lx-stockcta .lx-btn:hover { background: #f0f0e8; }

.lx-contact { background: var(--lx-bg); }
.lx-contact .lx-container { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.lx-contact__intro h2 { font-size: clamp(2rem, 3.6vw, 2.8rem); margin: 12px 0 20px; }
.lx-contact__intro p { color: var(--lx-text-muted); font-size: 1.05rem; line-height: 1.65; }
.lx-contact__intro .lead { color: var(--lx-ink); font-weight: 600; }
.lx-checklist { list-style: none; padding: 0; margin: 20px 0 0; display: flex; flex-direction: column; gap: 12px; }
.lx-checklist li { display: flex; align-items: center; gap: 10px; color: var(--lx-ink-soft); }
.lx-checklist li svg { width: 20px; height: 20px; color: var(--lx-olive); flex: 0 0 auto; }
.lx-contact__card { background: var(--lx-surface); border-radius: 24px; padding: clamp(28px,3vw,40px);
  box-shadow: var(--lx-shadow-lg); }
.lx-contact__card h3 { font-size: 1.4rem; margin: 0 0 24px; }
.lx-contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.lx-contact__grid .lx-field--full { grid-column: 1 / span 2; }
.lx-contact__grid .lx-btn { grid-column: 1 / span 2; width: 100%; justify-content: center; }
.lx-contact__note { grid-column: 1 / span 2; color: var(--lx-text-muted); font-size: .82rem; text-align: center; margin: 0; }

.lx-pd { padding-top: clamp(28px, 4vw, 44px); }
.lx-breadcrumb { color: var(--lx-text-muted); font-size: .82rem; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 28px; }
.lx-breadcrumb a { color: inherit; }
.lx-breadcrumb a:hover { color: var(--lx-olive-dark); }
.lx-breadcrumb__sep { color: var(--lx-text-muted); margin: 0 6px; }
.lx-pdtop { display: grid; grid-template-columns: minmax(0, 440px) 1fr; gap: 56px; align-items: start; }
.lx-pdgallery { display: flex; flex-direction: column; gap: 16px; position: sticky; top: 96px; }
.lx-pdgallery__main { background: var(--lx-surface); border: 1px solid var(--lx-line); border-radius: 24px;
  aspect-ratio: 1/1; display: grid; place-items: center; padding: 40px; }
.lx-pdgallery__main img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; }
.lx-pdthumbs { display: flex; gap: 12px; flex-wrap: wrap; }
.lx-pdthumb { width: 84px; height: 84px; border-radius: 14px; border: 2px solid var(--lx-line);
  background: var(--lx-surface); padding: 8px; cursor: pointer; transition: border-color .25s, transform .25s; }
.lx-pdthumb img { width: 100%; height: 100%; object-fit: contain; }
.lx-pdthumb:hover { transform: translateY(-2px); border-color: var(--lx-olive-pale); }
.lx-pdthumb.active { border-color: var(--lx-olive); }
.lx-pdinfo__eyebrow { display: inline-block; font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: #5f5e5e; background: #e8e8e8; border-radius: 999px; padding: 6px 14px; }
.lx-pdinfo h1 { font-size: clamp(2rem, 3.4vw, 2.9rem); line-height: 1.12; margin: 16px 0 16px; }
.lx-pdinfo__desc { color: var(--lx-ink-soft); font-size: 1.05rem; line-height: 1.65; margin: 0 0 24px; }
.lx-pdchips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 8px; }
.lx-pdchip { font-size: .82rem; font-weight: 500; letter-spacing: 0; text-transform: none; color: #5f5e5e; background: #f3f3f3;
  border-radius: 999px; padding: 9px 16px; }
.lx-pdstats { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 40px; padding: 24px 0; border-top: 1px solid var(--lx-line); margin: 24px 0 26px; }
.lx-pdstat__label { font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--lx-text-muted); margin-bottom: 6px; }
.lx-pdstat__value { font-weight: 700; font-size: 1.25rem; color: var(--lx-ink); }
/* Detail page loads its content after "Loading", so scroll-reveal can't catch it — keep it visible. */
.lx-pd .reveal, .lx-pdfeatures .reveal, .lx-pdspecs .reveal, .lx-pdinquiry .reveal, .lx-pdcompat .reveal, .lx-pdcontrol .reveal { opacity: 1 !important; transform: none !important; }
.lx-pdbtns { display: flex; gap: 14px; flex-wrap: wrap; }

.lx-pdfeatures { background: #f3f3f3; }
.lx-pdfeatures .lx-qhead { text-align: start; max-width: none; margin-left: 0; margin-right: 0; }
.lx-pdfeatures .lx-qhead .lx-eyebrow { margin-inline-start: 0; }
.lx-pdfeatgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.lx-pdfeat { background: #fff; border: none; border-radius: 16px; padding: 32px 30px;
  box-shadow: 0 2px 8px rgba(20,20,20,.05);
  transition: transform .35s var(--lx-ease), box-shadow .35s var(--lx-ease); }
.lx-pdfeat:hover { transform: translateY(-5px); box-shadow: var(--lx-shadow-lg); }
.lx-pdfeat__icon { width: 30px; height: 30px; color: var(--lx-olive); margin-bottom: 20px; }
.lx-pdfeat__icon svg { width: 100%; height: 100%; }
.lx-pdfeat h3 { font-size: 1.1rem; margin: 0 0 10px; }
.lx-pdfeat p { margin: 0; color: var(--lx-text-muted); font-size: .92rem; line-height: 1.55; }

.lx-spectable { border: none; border-radius: 0; overflow: visible; max-width: 940px; margin-inline: auto; }
.lx-specrow { display: grid; grid-template-columns: 1fr 1fr; column-gap: 48px; }
.lx-specrow:nth-child(odd) { background: transparent; }
.lx-speccell { display: grid; grid-template-columns: minmax(90px, auto) 1fr; gap: 16px; padding: 22px 4px; border-bottom: 1px solid var(--lx-line); align-items: start; }
.lx-speccell + .lx-speccell { border-left: none; }
.lx-speccell dt { color: var(--lx-text-muted); font-weight: 500; font-size: .92rem; margin: 0; }
.lx-speccell dd { color: var(--lx-ink); font-weight: 700; font-size: .95rem; margin: 0; text-align: right; }

.lx-pdcompat { background: #ededeb; text-align: center; }
.lx-pdcompat__eyebrow { font-size: .95rem; font-weight: 700; letter-spacing: .32em; text-transform: uppercase;
  color: #5f6357; margin-bottom: 40px; }
.lx-pdcompat__row { display: flex; flex-wrap: wrap; justify-content: center; gap: 72px; }
.lx-pdcompat__item { display: flex; flex-direction: column; align-items: center; gap: 14px; color: #7c8074; }
.lx-pdcompat__item svg { width: 34px; height: 34px; color: #8b8f82; stroke-width: 1.5; }
.lx-pdcompat__item span { font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #6b6f64; }

.lx-pdcontrol { color: #fff; background: linear-gradient(139deg, #697b4e 0%, #516238 100%); }
.lx-pdcontrol__head { margin-bottom: 48px; }
.lx-pdcontrol__head h2 { color: #fff; margin: 0 0 14px; }
.lx-pdcontrol__head p { color: rgba(255,255,255,.82); margin: 0; max-width: 720px; }
.lx-pdcontrol__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.lx-pdctrlcard { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); border-radius: 14px; padding: 26px 22px; }
.lx-pdctrlcard__icon { width: 30px; height: 30px; color: rgba(255,255,255,.85); margin-bottom: 16px; }
.lx-pdctrlcard__icon svg { width: 100%; height: 100%; stroke-width: 1.7; }
.lx-pdctrlcard h3 { color: #fff; font-size: 1.02rem; margin: 0 0 8px; }
.lx-pdctrlcard p { color: rgba(255,255,255,.8); font-size: .86rem; line-height: 1.5; margin: 0; }

/* Recommended Solutions — 4-across bestseller cards */
.lx-relgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 1100px) { .lx-relgrid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .lx-relgrid { grid-template-columns: 1fr; } }

/* Detail-page heading scale — matched to design measurements */
.lx-pdfeatures .lx-qhead h2,
.lx-pdspecs .lx-pthead h2,
.lx-pdrelated .lx-pthead h2 { font-size: 1.9rem; line-height: 1.15; }
.lx-pdcontrol__head h2 { font-size: 2.25rem; line-height: 1.12; }
.lx-pdfeat h3 { font-size: 1.25rem; }
.lx-pdctrlcard h3 { font-size: 1.1rem; }

.lx-pdinquiry { background: var(--lx-bg); }
.lx-pdinquiry__card { position: relative; background: var(--lx-surface); border-radius: 28px; max-width: 900px;
  margin-inline: auto; padding: clamp(30px, 4vw, 56px); box-shadow: var(--lx-shadow-lg); }
.lx-pdinquiry__q { position: absolute; top: 28px; inset-inline-end: 28px; width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid var(--lx-line); display: grid; place-items: center; color: var(--lx-text-muted); }
.lx-pdinquiry__head { text-align: center; margin-bottom: 40px; }
.lx-pdinquiry__head h2 { font-size: 2rem; margin: 0 0 10px; }
.lx-pdinquiry__head p { color: var(--lx-text-muted); margin: 0; }
.lx-prefill { grid-column: 1 / span 2; }
.lx-prefill input { background: var(--lx-muted); border: 1px solid var(--lx-line); border-radius: 10px; }

/* Product-detail B2B inquiry — boxed form matching the design */
.lx-pdinquiry__card::before { content: ""; position: absolute; inset-inline: 0; top: 0; height: 5px; border-radius: 28px 28px 0 0; background: linear-gradient(135deg, #516238 0%, #8a9a5b 100%); }
.lx-pdinquiry__q { display: none; }
.lx-pdinquiry .lx-field label { text-transform: uppercase; letter-spacing: .06em; font-size: .72rem; font-weight: 700; color: var(--lx-text-muted); }
.lx-pdinquiry .lx-field input,
.lx-pdinquiry .lx-field textarea { background: #fff; border: 1px solid var(--lx-line); border-radius: 10px; padding: 13px 15px; }
.lx-pdinquiry .lx-field input:focus,
.lx-pdinquiry .lx-field textarea:focus { border-color: var(--lx-olive); box-shadow: 0 0 0 3px rgba(123,138,63,.12); }
.lx-pdinquiry .lx-prefill input { background: var(--lx-muted); font-weight: 700; color: var(--lx-ink); }
.lx-pdinquiry .lx-ptform__submit .lx-btn { border-radius: 14px; }

@media (max-width: 1000px) {
  .lx-pxlayout { grid-template-columns: 1fr; }
  .lx-filters { position: static; }
  .lx-pgrid { grid-template-columns: repeat(2, 1fr); }
  .lx-perfgrid { grid-template-columns: repeat(2, 1fr); }
  .lx-pdtop { grid-template-columns: 1fr; gap: 32px; }
  .lx-pdgallery { position: static; max-width: 440px; margin-inline: auto; width: 100%; }
  .lx-pdfeatgrid { grid-template-columns: repeat(2, 1fr); }
  .lx-pdcontrol__grid { grid-template-columns: repeat(2, 1fr); }
  .lx-contact .lx-container { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 640px) {
  .lx-pgrid, .lx-perfgrid, .lx-pdfeatgrid, .lx-pdcontrol__grid { grid-template-columns: 1fr; }
  .lx-specrow { grid-template-columns: 1fr; }
  .lx-speccell + .lx-speccell { border-left: none; border-top: 1px solid var(--lx-line); }
  .lx-contact__grid { grid-template-columns: 1fr; }
  .lx-contact__grid .lx-field--full, .lx-contact__grid .lx-btn, .lx-contact__note { grid-column: auto; }
}

.lx-ptsteps { background: var(--lx-surface); }

.lx-ptrange { background: var(--lx-surface); }
.lx-ptcat { background: var(--lx-muted); }

.lx-btn { border-radius: 16px; }
.lx-ptag { background: rgba(112,130,85,.12); color: var(--lx-olive-deep); }
.lx-pcard__more { color: var(--lx-olive); }

.lx-pxhero__prod { position: absolute; z-index: 1; height: auto; pointer-events: none; transform: translate(-50%, -50%); filter: drop-shadow(0 16px 26px rgba(20,22,15,.16)); }
.lx-pxhero__prod--charger { left: 11%; top: 32%; width: min(19%, 240px); }
.lx-pxhero__prod--earphones { left: 13%; top: 76%; width: min(26%, 300px); }
.lx-pxhero__prod--car { left: 87%; top: 33%; width: min(13%, 185px); }
.lx-pxhero__prod--power { left: 78%; top: 76%; width: min(22%, 275px); }
@media (max-width: 900px) { .lx-pxhero__prod { display: none; } }

.lx-pdspecs, .lx-pdinquiry { scroll-margin-top: 100px; }

.lx-pxhero__pills { gap: 12px; }
.lx-pxpill { padding: 9px 18px; border-radius: 999px; background: rgba(255,255,255,.9); border: 1px solid rgba(20,22,15,.06); box-shadow: 0 2px 10px rgba(20,22,15,.07); color: var(--lx-ink); font-size: .92rem; -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.lx-pxpill svg { width: 16px; height: 16px; }

html, body { overflow-x: clip; max-width: 100%; }
.lxnav__menuacts { display: none; }
.lxnav__burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.lxnav__burger.open span:nth-child(2) { opacity: 0; }
.lxnav__burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
@media (max-width: 900px) {
  .lxnav__actions > .lx-lang,
  .lxnav__actions > .lxnav__signin,
  .lxnav__actions > .lx-btn--primary { display: none; }
  .lxnav__actions { margin-inline-start: auto; gap: .4rem; }
  .lxnav__menuacts { display: flex; flex-direction: column; align-items: flex-start; gap: .9rem;
    border-top: 1px solid var(--lx-line); margin-top: .4rem; padding-top: .9rem; }
  .lxnav__menuacts .lx-lang { display: inline-flex; }
  .lxnav__menuacts .lx-btn { width: 100%; justify-content: center; }
  .lxnav__links.open { gap: 1rem; }
}

@media (max-width: 620px) {
  .lx-footer__grid { grid-template-columns: 1fr; }
  .lx-footer__news { max-width: 100%; }
}
@media (max-width: 760px) {
  .lx-ptform__grid { grid-template-columns: 1fr; }
  .lx-ptform__grid > .lx-field--full, .lx-ptform__submit, .lx-prefill { grid-column: auto; }
}
@media (max-width: 560px) {
  .lx-ptform__card { padding: 28px 20px; border-radius: 24px; }
}
@media (max-width: 640px) {
  .lx-pxhero { min-height: 360px; padding-top: calc(80px + 22px); }
  .lx-presults__head { gap: 12px; }
  .lx-presults__sort { flex-wrap: wrap; }
}

.lx-filters-toggle { display: none; }
@media (max-width: 1000px) {
  .lx-filters-toggle { display: inline-flex; width: 100%; justify-content: center; margin-bottom: 18px; }
  .lx-filters { display: none; }
  .lx-filters.open { display: block; margin-bottom: 8px; }
}

.lx-pxhero__prods { display: contents; }
.lx-mobfilter { display: none; }
.lx-catchips { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 8px; scrollbar-width: none; }
.lx-catchips::-webkit-scrollbar { display: none; }
.lx-catchip { flex: 0 0 auto; border: 1px solid var(--lx-line); background: var(--lx-surface); border-radius: 999px; padding: 8px 16px; font-size: .88rem; font-weight: 600; color: var(--lx-ink-soft); white-space: nowrap; cursor: pointer; font-family: var(--lx-font); transition: all .2s var(--lx-ease); }
.lx-catchip.active { background: var(--lx-olive); border-color: var(--lx-olive); color: #fff; }
.lx-mobsearch { position: relative; margin-bottom: 14px; }
.lx-mobsearch svg { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; color: var(--lx-text-muted); pointer-events: none; }
.lx-mobsearch input { width: 100%; border: 1px solid var(--lx-line); border-radius: 12px; padding: 12px 14px 12px 42px; font: inherit; background: #fff; }
.lx-mobsearch input:focus { border-color: var(--lx-olive); outline: none; }
[dir="rtl"] .lx-mobsearch svg { left: auto; right: 14px; }
[dir="rtl"] .lx-mobsearch input { padding: 12px 42px 12px 14px; }
@media (max-width: 1000px) {
  .lx-mobfilter { display: block; margin-bottom: 22px; }
  .lx-mobfilter h3 { font-size: 1.1rem; margin: 0 0 12px; }
}
@media (max-width: 900px) {
  .lx-pxhero { flex-direction: column; min-height: 0; padding-top: calc(80px + 16px); padding-bottom: 26px; }
  .lx-pxhero__pic { display: block; position: relative; order: -1; width: 100%; height: 240px; margin-bottom: 20px; border-radius: 20px; overflow: hidden; box-shadow: 0 10px 30px rgba(20,22,15,.10); }
  .lx-pxhero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; margin: 0; border-radius: 0; box-shadow: none; }
  .lx-pxhero__prod { display: block; }
  .lx-pxhero__prod--charger { left: 15%; top: 33%; width: 22%; }
  .lx-pxhero__prod--earphones { left: 17%; top: 74%; width: 30%; }
  .lx-pxhero__prod--car { left: 85%; top: 33%; width: 16%; }
  .lx-pxhero__prod--power { left: 80%; top: 71%; width: 28%; }
  .lx-pxhero__pictitle { display: block; position: absolute; z-index: 3; top: 30%; left: 50%; transform: translate(-50%, -50%); width: 80%; text-align: center; font-family: "Manrope", sans-serif; font-weight: 800; font-size: 1.5rem; line-height: 1.12; letter-spacing: -0.02em; color: var(--lx-ink); text-shadow: 0 1px 8px rgba(255,255,255,.6); }
  .lx-pxhero__pictitle .accent { color: var(--lx-olive); }
  .lx-pxhero__inner { order: 0; }
  .lx-pxhero__pills { order: 3; flex-wrap: nowrap; gap: 8px; justify-content: center; }
  .lx-pxhero__pills .lx-pxpill { padding: 8px 12px; font-size: .8rem; gap: 5px; white-space: nowrap; }
  .lx-pxhero__pills .lx-pxpill svg { width: 14px; height: 14px; }
  .lx-pxhero__btns { order: 4; flex-direction: column; width: 100%; }
  .lx-pxhero__btns .lx-btn { width: 100%; }
}

@media (max-width: 620px) {
  .hx__cta { flex-direction: column; align-items: stretch; gap: .7rem; }
  .hx__cta .lx-btn { width: 100%; }
  .hx__pills { gap: .45rem; margin-top: 1.6rem; }
  .hx__pill { background: transparent; border: 0; box-shadow: none; padding: .3rem 0; font-size: .95rem; backdrop-filter: none; }
  .hx__pill .hx__pill-ic { width: 28px; height: 28px; }
  .lx-ccard { min-height: 150px; padding: 20px; align-items: flex-start; }
  .lx-ccard__body { max-width: 58%; }
  .lx-ccard__body h3 { font-size: 18px; }
  .lx-ccard__body p { font-size: 13.5px; max-width: 100%; }
  .lx-ccard__arrow { width: 38px; height: 38px; margin-top: 16px; }
  .lx-ccard__img { max-width: 42%; max-height: 72%; right: 12px; top: 50%; transform: translateY(-50%); }
}

@media (max-width: 620px) {
  .lx-explore-cta { flex-direction: column; }
  .lx-explore-cta .lx-btn { width: 100%; }
}

.lx-hp { position: absolute !important; left: -9999px !important; top: auto; width: 1px; height: 1px; opacity: 0; overflow: hidden; pointer-events: none; }

.lx-lang, .lxnav .lx-lang { align-items: stretch; }
.lx-lang a, .lxnav .lx-lang a { display: inline-flex; align-items: center; justify-content: center; line-height: 1; }
.lx-lang a.lx-ar { transform: none; font-size: 1.02rem; padding-top: .55em; padding-bottom: .55em; }

[dir="rtl"] .lx-ccard__img { right: auto; left: 20px; }
[dir="rtl"] .lx-ccard__body p { max-width: 26ch; }
[dir="rtl"] .lx-ccard__arrow svg,
[dir="rtl"] .lx-pcard__more svg,
[dir="rtl"] .lx-ptlink svg,
[dir="rtl"] .lx-pxpill svg { transform: scaleX(-1); }

[dir="rtl"] .hx__bgimg { transform: scaleX(-1); }
[dir="rtl"] .hx::after { transform: scaleX(-1); }

@media (max-width: 640px) {
  .lx-pcard__media { aspect-ratio: auto; height: 240px; padding: 18px; }
  .lx-pcard__media img { height: 100%; object-fit: contain; }
}

.lx-pxlayout, .lx-presults, .lx-pgrid, .lx-pcard { min-width: 0; }
.lx-pgrid > .lx-pcard { min-width: 0; max-width: 100%; }
@media (max-width: 640px) {
  .lx-presults__head { flex-wrap: wrap; }
  .lx-presults__sort { flex-wrap: wrap; min-width: 0; }
  .lx-presults__sort select { flex: 1 1 auto; min-width: 0; }
  .lx-pcard__desc { overflow-wrap: anywhere; }
}

.lx-pdtop, .lx-pdgallery, .lx-pdinfo { min-width: 0; }
.lx-pdinfo h1, .lx-pdinfo__desc, .lx-speccell dd { overflow-wrap: anywhere; }
.lx-pdthumbs { max-width: 100%; }

.lx-textarea { min-height: 96px; resize: vertical; font-family: inherit; }

.lx-legal__inner { max-width: 860px; }
.lx-legal h1 { font-family: "Manrope", sans-serif; font-weight: 800; font-size: clamp(2rem, 4vw, 2.6rem); letter-spacing: -.02em; color: var(--lx-ink); margin: 0 0 1.4rem; }
.lx-legal h2 { font-family: "Manrope", sans-serif; font-weight: 700; font-size: 1.15rem; color: var(--lx-ink); margin: 1.8rem 0 .5rem; }
.lx-legal p { color: var(--lx-ink-soft); font-size: 1rem; line-height: 1.75; margin: 0 0 .7rem; }
[dir="rtl"] .lx-legal { text-align: right; }

.lx-cat-section { background: linear-gradient(180deg, #E2E1DC 0%, #FAFAFA 62%); }


/* ===== Bestseller spec chips (Figma-exact) ===== */
.lx-chips { display: grid; grid-template-columns: repeat(2, max-content); gap: 8px; margin-bottom: 1rem; }
.lx-chip { display: inline-flex; align-items: center; gap: 8px; min-height: 34px; padding-block: 5px; padding-inline: 5px 14px; border-radius: 9999px; background: #e6eadd; font-family: "Inter", sans-serif; font-weight: 600; font-size: 11px; line-height: 1.45; color: var(--lx-olive-dark); white-space: nowrap; max-width: 100%; }
.lx-chip__ic { flex: 0 0 auto; width: 26px; height: 26px; border-radius: 50%; background: #f0f2ee; box-shadow: 0 1px 2px rgba(0,0,0,.05); display: inline-flex; align-items: center; justify-content: center; color: var(--lx-olive); }
.lx-chip__ic svg { width: 16px; height: 16px; display: block; }
.lx-chip__tx { overflow: visible; line-height: 1.6; }
[dir="rtl"] .lx-chip { direction: rtl; }

.lx-vp-title, .lx-section--muted .lx-section__head--center h2 { white-space: nowrap; }
@media (max-width: 820px) { .lx-vp-title, .lx-section--muted .lx-section__head--center h2 { white-space: normal; } }
