/* ═══════════════════════════════════════════════════════════
   Light-Line Catalog Page — matching static reference design
   Uses Montserrat/Roboto, warm gold accent (#ffe096)
   ═══════════════════════════════════════════════════════════ */

@font-face {
  font-family: "Montserrat";
  src: url("/assets/pages/light-line/landing/assets/fonts/Montserrat-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("/assets/pages/light-line/landing/assets/fonts/Montserrat-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("/assets/pages/light-line/landing/assets/fonts/Montserrat-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("/assets/pages/light-line/landing/assets/fonts/Roboto-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "roboto-light";
  src: url("/light-line-categories-test/assets/fonts/Roboto-Light.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ── Design tokens ──────────────────────────────────────── */
.llc-page {
  --bg-elevated: #151718;
  --panel: #1c1e1f;
  --panel-2: #242627;
  --panel-3: #292b2c;
  --text: #f7f5ef;
  --muted: #a4a9ad;
  --muted-2: #6c7478;
  --line: rgba(255, 255, 255, .095);
  --line-strong: rgba(255, 255, 255, .14);
  --orange: #ffe096;
  --orange-light: #fff0c4;
  --orange-dark: #d9ba72;
  --green: #77d29a;
  --shadow: 0 22px 70px rgba(0,0,0,.26);
  --radius: 16px;
  --radius-sm: 10px;
  --shell: 1180px;
  color: var(--text);
  font-family: "Montserrat", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  background:
    radial-gradient(circle at 50% -12%, rgba(255, 224, 150, .045), transparent 34rem),
    var(--bg);
  padding-top: 160px;
}

.llc-page *,
.llc-page *::before,
.llc-page *::after { box-sizing: border-box; }
.llc-page img { display: block; max-width: 100%; }
.llc-page svg { fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

.llc-shell {
  width: min(calc(100% - 48px), var(--shell));
  margin-inline: auto;
}

/* ── Headings ────────────────────────────────────────── */
.llc-page h1,
.llc-page h2,
.llc-page .final-cta h2 {
  font-family: "Roboto", Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -.045em;
}

.section-heading h2,
.task-selection__header h2,
.technical-features__header h2,
.configurations-table__header h2 {
  font-family: "Roboto", Arial, sans-serif;
  font-size: clamp(40px, 4.6vw, 60px);
  line-height: .97;
  text-transform: uppercase;
  letter-spacing: -.045em;
  margin: 0;
}

.llc-page .section-heading h2,
.llc-page .task-selection__header h2,
.llc-page .technical-features__header h2,
.llc-page .configurations-table__header h2,
.llc-page .kit-builder__title {
  position: relative;
  z-index: 3;
  color: var(--text) !important;
  opacity: 1 !important;
  transform: none !important;
  transition-property: color, background, border-color, box-shadow !important;
  visibility: visible !important;
  mix-blend-mode: normal !important;
  -webkit-text-fill-color: currentColor;
  background: none !important;
}

.llc-page .section-heading--split > p,
.llc-page .task-selection__header > p,
.llc-page .technical-features__header > p,
.llc-page .configurations-table__header > p,
.llc-page .kit-builder__lead {
  position: relative;
  z-index: 3;
  color: var(--muted) !important;
  opacity: 1 !important;
  transform: none !important;
  transition-property: color, background, border-color, box-shadow !important;
  visibility: visible !important;
  mix-blend-mode: normal !important;
  -webkit-text-fill-color: currentColor;
  background: none !important;
}

.section-heading--split,
.task-selection__header,
.technical-features__header,
.configurations-table__header { display: block; }

/* .llc-readable-copy + header,
.kit-builder__header .llc-legacy-copy,
.llc-readable-related + .comparison > .section-heading {
  display: none;
} */

.llc-readable-related {
  margin-bottom: 0;
}

.section-heading--split > p,
.task-selection__header > p,
.technical-features__header > p,
.configurations-table__header > p,
.kit-builder__header > p,
.final-cta__content > p {
  max-width: 900px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

/* ── Buttons ────────────────────────────────────────── */
.llc-page .button {
  min-height: 48px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .18s, background .18s, border-color .18s;
  text-decoration: none;
  font-size: 14px;
}
.llc-page .button:hover { transform: translateY(-1px); }
.llc-page .button-primary {
  border: 1px solid var(--orange);
  color: #17130a;
  background: var(--orange);
  box-shadow: 0 10px 28px rgba(255, 224, 150, .09);
}
.llc-page .button-primary:hover { background: var(--orange-light); border-color: var(--orange-light); }
.llc-page .button-primary:disabled { border-color: #ccc; color: #666; background: #ccc; box-shadow: none; cursor: not-allowed; transform: none; }
.llc-page .button-secondary {
  border: 1px solid rgba(255, 224, 150, .45);
  color: var(--orange);
  background: transparent;
}
.llc-page .button-secondary:hover { border-color: var(--orange); background: rgba(255, 224, 150, .07); }

/* ═══ HERO ════════════════════════════════════════ */
.product-hero {
  min-height: 610px;
  display: grid;
  grid-template-columns: minmax(480px, 1.08fr) minmax(440px, .92fr);
  gap: 24px;
  align-items: stretch;
  padding: 0 0 54px;
}

.product-gallery {
  min-width: 0;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 12px;
}

.thumbs { display: flex; flex-direction: column; gap: 10px; }
.thumb {
  position: relative;
  width: 64px;
  aspect-ratio: 1;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
  cursor: pointer;
  transition: border-color .2s, transform .2s;
}
.thumb:hover { transform: translateY(-1px); border-color: rgba(255,255,255,.22); }
.thumb.is-active { border-color: var(--orange); box-shadow: 0 0 0 1px rgba(255, 224, 150, .12); }
.thumb img { width: 100%; height: 100%; object-fit: cover; }

.main-photo {
  position: relative;
  min-height: 550px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #0b0d0d;
  box-shadow: var(--shadow);
  isolation: isolate;
}
.main-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,.02), transparent 35%, rgba(2,5,7,.22));
}
.main-photo > img {
  width: 100%;
  height: 100%;
  min-height: 550px;
  object-fit: cover;
  object-position: center 52%;
  transition: opacity .2s ease, transform .5s ease;
}
.main-photo:hover > img { transform: scale(1.015); }
.photo-glow {
  position: absolute;
  z-index: 1;
  left: 12%; right: 8%; bottom: 3%; height: 27%;
  filter: blur(42px);
  opacity: .11;
  background: var(--orange);
}
.zoom-button {
  position: absolute;
  right: 16px; bottom: 16px;
  z-index: 4;
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  color: #f4f5f6;
  background: rgba(8, 10, 10, .72);
  backdrop-filter: blur(10px);
  cursor: pointer;
}
.zoom-button svg { width: 19px; }

.product-summary { padding: 4px 0 0; align-self: center; }
.product-summary h1 {
  margin: 0;
  max-width: 540px;
  font-family: "Roboto", Arial, sans-serif;
  font-size: clamp(34px, 3vw, 48px);
  line-height: .98;
  text-transform: uppercase;
  text-wrap: balance;
}
.lead {
  max-width: 570px;
  margin: 20px 0 28px;
  color: #fff;
  font-size: 20px;
  line-height: 1.6;
}

.feature-grid {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 18px;
}
.feature { min-width: 0; }
.feature dt { display: flex; align-items: center; gap: 8px; margin: 0; white-space: nowrap; }
.feature dt svg { flex: 0 0 auto; width: 22px; color: var(--orange); }
.feature dt strong { overflow: hidden; text-overflow: ellipsis; font-size: 18px; }
.feature dd { margin: 4px 0 0 30px; color: var(--muted-2); font-size: 16px; }

.hero-price-range {
  display: block;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.hero-price-range__label { display: block; color: var(--muted-2); font-size: 14px; line-height: 1.3; text-transform: uppercase; }
.hero-price-range__values { display: flex; align-items: baseline; gap: 12px; margin-top: 12px; }
.hero-price-range__values > div { display: flex; align-items: baseline; gap: 7px; }
.hero-price-range__values small { color: #fff; font-size: 13px; text-transform: uppercase; }
.hero-price-range__values strong {
  color: #fff;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 38px;
  font-weight: 650;
  line-height: 1;
  white-space: nowrap;
}

.hero-cta { margin-top: 30px; padding-top: 22px; border-top: 1px solid var(--line); }
.hero-cta__buttons { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }

/* ═══ TASK SELECTION ════════════════════════════════ */
.task-selection {
  padding: 28px 0 0;
  margin-bottom: 77px;
}
.task-selection__header {
  display: block;
  margin-bottom: 28px;
}
.task-selection__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.task-card {
  position: relative;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--text);
  background: var(--panel);
  cursor: pointer;
  box-shadow: none;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.task-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 224, 150, .55);
  box-shadow: 0 16px 46px rgba(0,0,0,.22);
}
.task-card.is-active {
  border-color: rgba(255, 224, 150, .55);
  box-shadow: 0 16px 46px rgba(0,0,0,.22);
}
.task-card__media {
  position: relative;
  display: block;
  aspect-ratio: 1.72 / 1;
  overflow: hidden;
}
.task-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(5,8,10,.76) 100%);
}
.task-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease, filter .25s ease;
}
.task-card:hover .task-card__media img { transform: scale(1.035); }
.task-card:not(.is-active) .task-card__media img { filter: saturate(.82) brightness(.88); }
.task-card__body { display: flex; flex-direction: column; align-items: flex-start; min-height: 225px; padding: 19px 20px 20px; background: var(--panel); }
.task-card__eyebrow {
  display: block;
  margin-bottom: 9px;
  color: var(--orange);
  font-size: 14px;
  font-weight: 750;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.task-card__body > strong { display: block; min-height: 43px; font-size: 24px; line-height: 1.25; letter-spacing: -.015em; }
.task-card__range {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  margin: 7px 0 11px;
  padding: 0 9px;
  border: 1px solid rgba(255,224,150,.25);
  border-radius: 4px;
  color: var(--muted);
  background: rgba(255,224,150,.06);
  font-size: 16px;
  font-weight: 750;
}
.task-card__description { display: block; min-height: 50px; margin-bottom: 15px; color: var(--muted); font-size: 16px; line-height: 1.55; }
.task-card__action {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  margin-left: auto;
  height: 34px;
  padding: 0 13px;
  border: 1px solid var(--orange);
  border-radius: 5px;
  color: var(--orange);
  background: transparent;
  font: 700 11px inherit;
  cursor: pointer;
  transition: color .2s, gap .2s, border-color .2s, background-color .2s;
}
.task-card__action svg { width: 13px; }
.task-card:hover .task-card__action { gap: 10px; }
.task-card.is-active .task-card__action { gap: 10px; color: #17130a; background: var(--orange); border-color: var(--orange); }

/* ═══ TECHNICAL FEATURES ═══════════════════════════ */
.technical-features {
  padding: 28px 0 0;
  margin-bottom: 77px;
}
.technical-features__header {
  display: block;
  margin-bottom: 28px;
}
.technical-features__layout {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(560px, 1.15fr);
  gap: 32px;
  align-items: stretch;
}
.strip-anatomy, .series-specs {
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.strip-anatomy { display: flex; flex-direction: column; }
.strip-anatomy__topline { display: flex; justify-content: space-between; align-items: flex-start; gap: 18px; }
.strip-anatomy h3, .series-specs h3 { margin: 10px 0 0; font-size: 20px; line-height: 1.2; letter-spacing: -.02em; }
.strip-diagram {
  margin: 18px 0 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #101212;
}
.strip-diagram img { display: block; width: 100%; height: auto; }
.series-specs { display: flex; flex-direction: column; }
.series-specs__head { display: flex; justify-content: space-between; align-items: flex-start; gap: 18px; }
.spec-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
  column-gap: clamp(24px, 3vw, 42px);
  margin: 20px 0 0;
  border-top: 1px solid var(--line);
}
.spec-list > div {
  min-width: 0;
  min-height: 76px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 5px;
  align-content: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.spec-list dt { color: #7f8b92; font-size: 18px; line-height: 1.28; }
.spec-list dd { margin: 0; color: #dfe4e7; font-size: 18px; font-weight: 650; line-height: 1.28; }
.spec-badge {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  padding: 0 8px;
  border: 1px solid rgba(119,210,154,.25);
  border-radius: 4px;
  color: #79df98;
  background: rgba(85,210,123,.06);
  font-size: 18px;
}
.series-specs__notice {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  grid-column: 1 / -1;
  margin-top: 8px;
  padding: 14px;
  border: 1px solid rgba(255, 224, 150, .2);
  border-radius: 8px;
  background: rgba(255, 224, 150, .045);
  align-items: center;
}
.series-specs__notice svg { width: 18px; color: var(--orange); }
.series-specs__notice p { margin: 0; color: #9aa5ac; font-size: 16px; line-height: 1.5; }

/* ═══ CONFIGURATIONS TABLE ═══════════════════════════ */
.configurations-table {
  padding: 28px 0 0;
  margin-bottom: 77px;
}
.configurations-table__header {
  display: block;
  margin-bottom: 28px;
}

.config-toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: 12px 12px 0 0;
  background: var(--panel);
}
.config-toolbar__group { display: grid; gap: 12px; flex-wrap: wrap; grid-template-columns: repeat(3, minmax(300px, 1fr)); }
.config-toolbar label {
  font-size: 10px;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.config-toolbar select {
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  background: #111313;
  padding: 8px 12px;
  font-size: 14px;
  min-width: 120px;
  cursor: pointer;
  appearance: none;
}
.config-toolbar select:focus { border-color: rgba(255, 224, 150, .56); outline: 0; box-shadow: 0 0 0 3px rgba(255, 224, 150, .07); }
.config-reset {
  background: none;
  border: none;
  color: var(--orange);
  font-size: 16px;
  cursor: pointer;
  text-decoration: underline;
  padding: 8px 35px;
}
.config-reset:hover { color: var(--orange-light); }

.config-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 20px;
  border: 1px solid var(--line);
  border-top: 0;
  background: #101212;
  font-size: 16px;
  color: var(--muted);
}
.config-summary strong { color: var(--text); }
.config-summary__hint { font-size: 12px; color: var(--muted-2); }

.config-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-top: 0;
  background: #101212;
}
.config-table {
  width: 100%;
  min-width: 1020px;
  border-collapse: collapse;
  font-size: 14px;
}
.config-table thead { background: var(--panel); }
.config-table th {
  padding: 13px 12px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  color: #737d84;
  background: #10171b;
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.config-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
  font-size: 16px;
}
.config-table td strong { font-size: 16px; }
.config-table tr:last-child td { border-bottom: none; }
.config-table tbody tr:nth-child(odd) { background: rgba(255,255,255,.025); }
.config-table tbody tr:nth-child(even) { background: rgba(0,0,0,.16); }
.config-table tbody tr:hover,
.config-table tbody tr.is-selected { background: rgba(255, 224, 150, .045); }
.config-table tr.is-hidden { display: none; }
.config-table td small {
  display: block;
  font-size: 11px;
  color: var(--orange);
  margin-top: 7px;
  font-weight: 600;
}
.config-table td[data-label="Артикул"] { white-space: nowrap; }
.config-th-preview { width: 186px; min-width: 56px; }
.config-td-preview { width: 186px; min-width: 56px; padding: 6px 8px; }
.config-td-preview img {
  position: relative;
  z-index: 1;
  width: 168px;
  height: 42px;
  object-fit: contain;
  object-position: center;
}

.temp-dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: middle;
}
.temp-dot--warm { background: #f59e0b; }
.temp-dot--neutral { background: #fafaf9; }
.temp-dot--cold { background: #93c5fd; }

.stock {
  font-size: 13px;
  padding: 3px 8px;
  border-radius: 4px;
  white-space: nowrap;
}
.stock--yes { background: rgba(119,210,154,.12); color: var(--green); }
.stock--order { background: rgba(245,158,11,.1); color: #f59e0b; }

.row-select {
  background: transparent;
  color: var(--orange);
  border: 1px solid rgba(255, 224, 150, .48);
  border-radius: 7px;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s, color .2s;
}
.row-select:hover { color: #17130a; background: var(--orange); }
.config-table tbody tr.is-selected .row-select { border-color: var(--orange); color: #17130a; background: var(--orange); }

.config-empty {
  padding: 40px 24px;
  text-align: center;
  color: var(--muted);
  font-size: 15px;
}

/* ═══ SECTION BLOCKS (FAQ, Comparison, CTA) ═══════════ */
.section-block {
  padding: 28px 0 0;
  margin-bottom: 77px;
}
.section-block--panel { position: relative; }
.section-block--panel:before {
  content: "";
  position: absolute;
  inset: 0 calc(50% - 50vw);
  z-index: -1;
}

/* ═══ FAQ ════════════════════════════════════════ */
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  font-weight: 600;
  font-size: 20px;
  text-transform: uppercase;
  cursor: pointer;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary svg {
  width: 20px; height: 20px;
  color: var(--orange);
  flex-shrink: 0;
  transition: transform .2s;
}
.faq-list details[open] summary svg { transform: rotate(180deg); }
.faq-list details p {
  padding: 0 0 16px;
  margin: 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

/* ═══ COMPARISON / RELATED ══════════════════════════ */
.comparison-grid--cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(30px, 3.5vw, 44px) clamp(20px, 2.5vw, 30px);
  padding-top: 30px;
}
.comparison-grid--cards .led-card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  border: 0;
  border-radius: 26px;
  background: linear-gradient(180deg, #080909 0%, #050606 58%, #070808 100%);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.28);
  transition: transform 220ms ease, box-shadow 220ms ease;
  text-decoration: none;
  color: inherit;
}
.comparison-grid--cards .led-card:hover {
  box-shadow: 0 24px 62px rgba(0, 0, 0, 0.42);
  transform: translateY(-3px);
}
.comparison-grid--cards .led-card__media {
  position: relative;
  aspect-ratio: 1.38;
  overflow: hidden;
  background: #030404;
}
.comparison-grid--cards .led-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(5, 6, 6, 0.12) 58%, rgba(5, 6, 6, 0.92) 92%, #050606 100%);
  pointer-events: none;
}
.comparison-grid--cards .led-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease, filter 420ms ease;
}
.comparison-grid--cards .led-card:hover .led-card__media img {
  transform: scale(1.025);
  filter: brightness(1.08);
}
.comparison-grid--cards .led-card__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1;
  flex-direction: column;
  margin-top: -40px;
  padding: 0 10px 22px;
}
.comparison-grid--cards .led-card__label {
  margin: 0 0 10px;
  color: #e8c36f;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.comparison-grid--cards .led-card__title {
  margin: 0;
  color: var(--text);
  font-size: clamp(25px, 2.15vw, 31px);
  font-weight: 650;
  line-height: 1.06;
  letter-spacing: -0.035em;
}
.comparison-grid--cards .led-card__description {
  min-height: 64px;
  margin: 13px 0 21px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.52;
}
.comparison-grid--cards .led-card__footer {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin-top: auto;
}
.comparison-grid--cards .led-card__specs {
  display: flex;
  min-width: 0;
  flex: 1;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 12px;
}
.comparison-grid--cards .led-spec {
  display: flex;
  width: max-content;
  min-width: max-content;
  min-height: 61px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: flex-end;
  flex-direction: column;
  gap: 7px;
  padding: 0 2px;
  text-align: center;
}
.comparison-grid--cards .led-spec svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: #e3e1dc;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.comparison-grid--cards .led-spec span {
  display: block;
  color: #d8d6d1;
  font-size: 12px;
  line-height: 1.28;
  white-space: nowrap;
}
.comparison-grid--cards .led-card__arrow {
  display: grid;
  width: 52px;
  height: 52px;
  min-height: 0;
  flex: 0 0 52px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: #100c05;
  background: #e8c36f;
  box-shadow: 0 10px 28px rgba(232, 195, 111, 0.2);
  text-decoration: none;
  transition: background-color 180ms ease, transform 180ms ease;
}
.comparison-grid--cards .led-card__arrow:hover,
.comparison-grid--cards .led-card__arrow:focus-visible {
  color: #100c05;
  background: #f0d58b;
  transform: translateX(3px);
}
.comparison-grid--cards .led-card__arrow svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ═══ FINAL CTA / FORM ══════════════════════════════ */
.final-cta {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 60px;
  position: relative;
}
.final-cta:before {
  content: "";
  position: absolute;
  inset: 0 calc(50% - 50vw);
  z-index: -1;
}
.final-cta h2 {
  font-size: 50px;
  line-height: 1.02;
  margin: 12px 0 20px;
}
.final-cta__content > p {
  color: #8a949b;
  line-height: 1.6;
}
.final-cta__benefits {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.final-cta__benefits span {
  font-size: 9px;
  border: 1px solid var(--line);
  padding: 9px 11px;
  border-radius: 4px;
}

.request-form {
  padding: 28px;
  
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  margin-bottom: 0;
}
.form-field {
  position: relative;
  display: block;
}
.form-field__label {
  position: absolute;
  top: 10px;
  left: 17px;
  z-index: 1;
  color: rgba(102, 102, 102, 0.88);
  font-size: 11px;
  line-height: 1;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease;
}
.form-field.is-filled .form-field__label { opacity: 1; }
.form-grid input,
.form-grid select {
  width: 100%;
  height: 60px;
  margin: 8px 0 16px;
  padding: 0 17px;
  border: 0;
  border-radius: 10px;
  color: #666;
  background: #fff;
  font-family: "roboto-light", Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.15;
  text-transform: uppercase;
  box-shadow: none;
}
.form-field.is-filled input { padding-top: 18px; padding-bottom: 6px; }
.form-grid input::placeholder { color: #666; opacity: 1; }
.form-grid input:focus { border-color: transparent; outline: 0; box-shadow: 0 0 0 3px rgba(255, 224, 150, .22); }

.request-form > label,
.form-grid > label { color: #f7f5ef; font-size: 14px; line-height: 1.3; letter-spacing: .06em; text-transform: uppercase; }

.request-form__consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 14px 0 15px;
  color: #aaa;
  font-size: 14px;
  line-height: 1.45;
}
.request-form__consent input {
  width: 18px; height: 18px;
  flex: 0 0 18px;
  margin: 2px 0 0;
  accent-color: var(--orange);
  cursor: pointer;
}
.request-form__consent label { cursor: pointer; }
.request-form__consent a { color: var(--orange); text-decoration: underline; text-underline-offset: 3px; }
.request-form__consent a:hover { color: var(--orange-light); }

.request-form__footer { display: flex; flex-direction: column; align-items: stretch; gap: 14px; margin-top: 4px; }
.request-form__footer .button {
  min-height: 100px;
  width: 100%;
  margin: 0;
  border-radius: 10px;
  font-size: 24px;
  text-transform: uppercase;
}

/* ═══ ROW ACTION POPOVER ════════════════════════════ */
.row-action-popover {
  position: fixed;
  z-index: 1000;
  display: grid;
  width: min(360px, calc(100vw - 24px));
  gap: 6px;
  padding: 10px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 8px;
  background: #1e2023;
  box-shadow: 0 18px 42px rgba(0,0,0,.7);
}
.row-action-popover[hidden] { display: none; }
.row-action-popover__actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0; }
.row-action-popover__item {
  display: flex;
  min-width: 0;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px;
  border: 0;
  border-radius: 6px;
  color: var(--text);
  background: transparent;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
}
.row-action-popover__item:hover { color: var(--orange-light); outline: 1px solid rgba(255, 224, 150, .44); outline-offset: -1px; background: rgba(255, 224, 150, .065); }
.row-action-popover__item + .row-action-popover__item { border-left: 1px solid rgba(255,255,255,.16); border-radius: 6px; }
.row-action-popover__item svg { flex: 0 0 18px; width: 18px; height: 18px; color: #ffe096; fill: currentColor; }

.row-cart-toast {
  position: fixed;
  z-index: 260;
  left: 50%;
  bottom: max(20px, env(safe-area-inset-bottom));
  width: max-content;
  max-width: calc(100vw - 24px);
  padding: 12px 18px;
  border: 1px solid rgba(255, 224, 150, .32);
  border-radius: 8px;
  color: #17130a;
  background: var(--orange);
  box-shadow: 0 16px 38px rgba(0,0,0,.42);
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition: opacity .18s ease, transform .18s ease;
}
.row-cart-toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

/* ═══ IMAGE MODAL ════════════════════════════════ */
.image-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.image-modal[hidden] { display: none; }
.image-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.85);
  border: none;
  cursor: pointer;
}
.image-modal__content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}
.image-modal__content img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
}
.image-modal__close {
  position: absolute;
  top: -40px; right: 0;
  width: 32px; height: 32px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}
.image-modal__close svg { width: 24px; height: 24px; }

/* ═══ RESPONSIVE ═════════════════════════════════ */
@media (max-width: 1120px) {
  .technical-features__layout { grid-template-columns: 1fr; gap: 28px; }
  .series-specs__notice { margin-top: 12px; }
}

@media (max-width: 1100px) {
  .comparison-grid--cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .final-cta { grid-template-columns: 1fr; }
}

@media (max-width: 1180px) {
  .task-selection__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .task-card__media { aspect-ratio: 2.15 / 1; }
  .task-card__body { min-height: 202px; }
}

@media (max-width: 900px) {
  .product-hero {
    min-height: 0;
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }
  .product-gallery {
    display: flex;
    flex-direction: column-reverse;
    gap: 9px;
  }
  .thumbs {
    flex-direction: row;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .thumbs::-webkit-scrollbar { display: none; }
  .thumb { flex: 0 0 58px; width: 58px; }
  .main-photo { min-height: 0; aspect-ratio: 1.08 / 1; }
  .main-photo > img { min-height: 0; height: 100%; }
  .product-summary { padding: 0; }

  .config-table-wrap { overflow: visible; border: 0; background: transparent; }
  .config-table { width: 100%; min-width: 0; display: block; }
  .config-table thead { display: none; }
  .config-table tbody {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .config-table tr {
    min-width: 0;
    display: grid;
    align-content: start;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #0d0f0f;
  }
  .config-table td {
    width: auto;
    min-width: 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 18px;
    padding: 7px 0;
    margin: 0;
    border: 0 !important;
    white-space: normal;
    background: transparent !important;
    box-shadow: none !important;
  }
  .config-table td::before {
    content: attr(data-label);
    flex: 0 0 auto;
    color: #778087;
    font-size: 10px;
    line-height: 1.4;
    text-transform: uppercase;
  }
  .config-td-preview { display: none; }
  .config-table td[data-label="Артикул"] {
    display: block;
    padding-bottom: 12px;
    margin-bottom: 5px;
    border-bottom: 1px solid var(--line) !important;
  }
  .config-table td[data-label="Артикул"]::before,
  .config-table td:last-child::before { display: none; }
  .config-table td:last-child { margin-top: auto; padding-top: 12px; }
  .row-select { width: 100%; min-height: 42px; }
}

@media (max-width: 820px) {
  .llc-shell { width: min(calc(100% - 32px), var(--shell)); }
  .task-selection__header { gap: 15px; }
  .task-selection__header > p { max-width: 620px; }
  .section-heading h2,
  .task-selection__header h2,
  .technical-features__header h2,
  .configurations-table__header h2 { font-size: clamp(36px, 8vw, 50px); }
  .task-selection, .technical-features, .configurations-table, .section-block { padding: 28px 0 0; margin-bottom: 64px; }
  .spec-list { grid-template-columns: 1fr; column-gap: 0; }
  .spec-list > div { min-height: 68px; grid-template-columns: minmax(155px, .9fr) minmax(0, 1.1fr); gap: 12px; align-content: normal; align-items: center; padding: 11px 0; }
}

@media (max-width: 720px) {
  .comparison-grid--cards { grid-template-columns: 1fr; }
  .final-cta h2 { font-size: 33px; }
}

@media (max-width: 680px) {
  .config-table tbody { grid-template-columns: minmax(0, 1fr); }
  .config-table tr { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 18px; }
  .config-table td[data-label="Артикул"],
  .config-table td:last-child { grid-column: 1 / -1; }
  .hero-price-range__values strong { font-size: clamp(30px, 9vw, 38px); }
  .hero-cta__buttons { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .task-selection__grid {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 0 0 8px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .task-selection__grid::-webkit-scrollbar { display: none; }
  .task-card { flex: 0 0 83%; scroll-snap-align: start; }
  .task-card__body { min-height: 218px; }
}

@media (max-width: 520px) {
  .llc-shell { width: min(calc(100% - 28px), var(--shell)); }
  .product-summary h1 { font-size: clamp(34px, 10vw, 42px); }
  .main-photo, .main-photo > img { border-radius: 12px; }
  .task-selection, .technical-features, .configurations-table, .section-block { padding: 28px 0 0; margin-bottom: 54px; }
  .section-heading h2,
  .task-selection__header h2,
  .technical-features__header h2,
  .configurations-table__header h2 { font-size: clamp(34px, 10vw, 42px); }
  .spec-list > div { min-height: 92px; grid-template-columns: minmax(0, 1fr); gap: 5px; align-content: center; padding: 10px 0; }
  .spec-list dt, .spec-list dd, .spec-list .spec-badge { font-size: 16px; }
  .form-grid input, .form-grid select { height: 56px; margin-block: 8px; font-size: 18px; }
  .request-form__footer .button { min-height: 72px; font-size: 19px; }
}

@media (max-width: 420px) {
  .llc-shell { width: min(calc(100% - 24px), var(--shell)); }
  .product-summary h1 { font-size: clamp(30px, 9.2vw, 38px); overflow-wrap: anywhere; }
  .hero-price-range__values strong { font-size: clamp(27px, 8.2vw, 34px); }
  .config-table tr { padding: 14px; }
  .config-table td, .config-table td strong { font-size: 15px; }
  .request-form__consent { font-size: 13px; }
}

@media (prefers-reduced-motion: reduce) {
  .llc-page *, .llc-page *::before, .llc-page *::after { transition: none !important; }
}

.technical-features__header,
.configurations-table__header,
.task-selection__header,
.section-heading {
    opacity: 1 !important;
    position: relative !important;
    transform: none !important;
}
