/* ============================================================
   landing_ses_power.css
   Стилі універсального шаблону public/landing_ses_power.php
   (сторінки СЕС фіксованої потужності /ses-{N}-kvt).

   Дизайн-система сайту: база (section, headings, hero, dark,
   breadcrumbs, faq, callout, compare, flow, lp-seo) — 1:1 з
   landing_products.css; нові компоненти сторінки — з префіксом
   .lsp-*. Залежить лише від токенів глобального styles.css:
   --accent, --accent-dark, --dark, --muted, --bg, --radius,
   --shadow, --shadow-hover, --max-width, --header-height.
   Нових кольорів не вводить.
   ============================================================ */

/* =========================
   BASE
========================= */
* { margin: 0; padding: 0; }

body { background: var(--bg); color: var(--dark); line-height: 1.7; }

section { width: 100%; padding: 50px 10px; }

.container { width: 100%; max-width: var(--max-width); margin: auto; }

h1, h2, h3 { color: var(--dark); line-height: 1.15; font-weight: 800; }
h1 { font-size: clamp(42px, 6vw, 72px); margin-bottom: 24px; }
h2 { font-size: clamp(30px, 4vw, 48px); margin-bottom: 22px; }
h3 { font-size: 22px; margin-bottom: 14px; }
p  { color: var(--muted); margin-bottom: 16px; }

ul { list-style: none; padding-left: 0; }
li { margin-bottom: 10px; }

button {
  padding: 12px 24px;
  border: none;
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  border-radius: 6px;
  font-weight: 600;
}
button:hover { opacity: .9; }

/* Якірний скрол з урахуванням фіксованого хедера */
html { scroll-behavior: smooth; }
[id] { scroll-margin-top: calc(var(--header-height, 72px) + 16px); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* =========================
   DARK SECTION
========================= */
.section-dark { background: #0f172a; }
.section-dark > .container > .section-heading h2 { color: #fff; }
.section-dark > .container > .section-heading p  { color: rgba(255,255,255,.72); }
.section-dark .section-label { color: rgba(255,255,255,.55); }

/* =========================
   SECTION HEADER
========================= */
.section-heading { margin-bottom: 40px; }
.section-heading.center { text-align: center; max-width: 720px; margin-left: auto; margin-right: auto; }

.section-label {
  display: inline-block;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

/* =========================
   BREADCRUMBS
========================= */
.breadcrumbs { padding: 16px 10px 0; }
.breadcrumbs .container {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  font-size: 14px; color: var(--muted);
}
.breadcrumbs a { color: var(--muted); text-decoration: none; transition: color .2s; }
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs-current { color: var(--dark); font-weight: 600; }

/* =========================
   БЛОК 1. HERO
========================= */
.hero {
  overflow: hidden;
  position: relative;
  min-height: 60dvh;
  display: flex;
  align-items: center;
  text-align: center;
  color: #fff;
  isolation: isolate;
}
.hero h1, .hero h2, .hero h3 { color: #fff; }
.hero p, .hero li, .hero span { color: #cbd5e1; }

.background-image-hero {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  background-size: cover; background-position: center; background-repeat: no-repeat;
  z-index: 0;
}
.hero::after {
  content: ""; position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(rgba(15,23,42,.75), rgba(15,23,42,.75));
  z-index: 1;
}
.hero .container { position: relative; z-index: 2; }

.hero-label { display: inline-block; font-size: 14px; opacity: .85; margin-bottom: 12px; }
.hero-subtitle { max-width: 850px; margin: 20px auto; color: rgba(255,255,255,.85); }

.hero-btn {
  padding: 20px 40px;
  font-size: clamp(18px, 2vw, 22px);
  border-radius: 10px; font-weight: 700; min-width: 260px;
  box-shadow: 0 15px 40px rgba(0,195,255,.3);
  transition: all .3s ease;
}
.hero-btn:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,195,255,.5); }

/* три цифри Hero: ціна «від», окупність, генерація */
.lsp-hero-stats { grid-template-columns: repeat(3, 1fr); }
.hero-stats {
  display: grid;
  gap: 14px;
  margin: 36px auto 28px;
  max-width: 820px;
}
.hero-stats .stat {
  background: rgba(255,255,255,.06);
  padding: 16px;
  border-radius: 14px;
  color: #fff;
}
.hero-stats .stat strong {
  display: block;
  font-size: clamp(18px, 2.4vw, 26px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}
.hero-stats .stat span { font-size: 13px; color: #94a3b8; }

/* вторинний текстовий CTA (якір до пакетів) — слабший візуально */
.lsp-hero-secondary {
  display: inline-block;
  margin-top: 18px;
  color: #cbd5e1;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color .2s;
}
.lsp-hero-secondary:hover { color: var(--accent); }

.lsp-hero-note  { font-size: 13px; margin: 14px auto 0; max-width: 560px; color: #94a3b8; }
.lsp-hero-trust { font-size: 13px; margin: 6px auto 0;  color: #94a3b8; }

/* =========================
   БЛОК 2. FIT — «Кому підходить»
========================= */
.lsp-fit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 28px;
}
.lsp-fit-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  padding: 24px 22px 24px 56px;
  box-shadow: var(--shadow);
}
.lsp-fit-check {
  position: absolute;
  left: 18px; top: 24px;
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(0,195,255,.12);
  color: var(--accent-dark);
  font-weight: 800;
  font-size: 14px;
}
.lsp-fit-card h3 { font-size: 17px; margin-bottom: 8px; }
.lsp-fit-card p  { font-size: 14px; margin-bottom: 0; }

.lsp-fit-switch { margin-top: 8px; }

/* =========================
   БЛОК 3. KIT — комплектація
========================= */
.lsp-kit {
  display: grid;
  grid-template-columns: minmax(280px, 5fr) 7fr;
  gap: 40px;
  align-items: start;
}
.lsp-kit-media {
  position: sticky;
  top: calc(var(--header-height, 72px) + 24px);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.lsp-kit-media img { display: block; width: 100%; height: auto; }

.lsp-kit-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 0;
}
.lsp-kit-list li:last-child { border-bottom: none; }
.lsp-kit-badge {
  flex: 0 0 auto;
  margin-top: 3px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(0,195,255,.1);
  border: 1px solid rgba(0,195,255,.35);
  border-radius: 999px;
  padding: 3px 10px;
}
.lsp-kit-list h3 { color: #fff; font-size: 16px; margin-bottom: 4px; }
.lsp-kit-list p  { color: rgba(255,255,255,.65); font-size: 14px; margin-bottom: 0; }

/* =========================
   БЛОК 4. PACKAGES — 3 пакети (decoy: featured по центру)
========================= */
.lsp-pkg-switch {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: -12px 0 32px;
}
.lsp-pkg-switch-btn {
  background: #fff;
  color: var(--dark);
  border: 1px solid rgba(15,23,42,.12);
  border-radius: 999px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 600;
  transition: background .2s, color .2s, border-color .2s;
}
.lsp-pkg-switch-btn.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.lsp-pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
  margin-bottom: 20px;
}
.lsp-pkg-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
}
.lsp-pkg-card.featured {
  border: 2px solid var(--accent);
  box-shadow: var(--shadow-hover);
  transform: translateY(-8px);
}
.lsp-pkg-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
}
.lsp-pkg-card h3 { font-size: 20px; margin-bottom: 8px; }

.lsp-pkg-price { margin-bottom: 16px; }
.lsp-pkg-price-value {
  display: block;
  font-size: clamp(24px, 2.6vw, 30px);
  font-weight: 800;
  color: var(--dark);
}
.lsp-pkg-price-note { font-size: 13px; color: var(--muted); }

@keyframes lsp-flash { from { color: var(--accent-dark); } to { color: var(--dark); } }
.lsp-price-flash { animation: lsp-flash .6s ease; }

.lsp-pkg-features { margin-bottom: 18px; }
.lsp-pkg-features li {
  position: relative;
  padding-left: 24px;
  font-size: 14px;
  color: var(--dark);
}
.lsp-pkg-features li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,195,255,.15);
}

.lsp-pkg-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.lsp-pkg-meta span {
  font-size: 12px;
  color: var(--muted);
  background: var(--bg);
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 999px;
  padding: 4px 10px;
}

.lsp-pkg-cta { margin-top: auto; text-align: center; }

/* =========================
   БЛОК 5. CALCULATOR
========================= */
.lsp-calc {
  max-width: 860px;
  margin: 0 auto;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 32px 28px;
}
.lsp-calc-input { text-align: center; margin-bottom: 28px; }
.lsp-calc-input label {
  display: block;
  color: rgba(255,255,255,.72);
  font-size: 14px;
  margin-bottom: 6px;
}
.lsp-calc-bill {
  display: block;
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}
.lsp-calc input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  max-width: 560px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,.15);
  outline: none;
}
.lsp-calc input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid #fff;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0,195,255,.45);
}
.lsp-calc input[type="range"]::-moz-range-thumb {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid #fff;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0,195,255,.45);
}
.lsp-calc input[type="range"]:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }

.lsp-calc-results {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:14px;
    margin-bottom: 18px;
}
.lsp-calc-cap {
  margin: 18px 0 0;
  font-size: 13px;
  color: rgba(255,255,255,.7);
  background: rgba(0,195,255,.08);
  border-left: 3px solid var(--accent);
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 18px;
}
.lsp-calc-cap[hidden] { display: none; }
.lsp-calc-cap a { color: var(--accent); font-weight: 700; }

.lsp-calc-res {
  background: rgba(255,255,255,.05);
  border-radius: 14px;
  padding: 16px 12px;
  text-align: center;
}
.lsp-calc-res strong {
  display: block;
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 4px;
}
.lsp-calc-res span { font-size: 12px; color: #94a3b8; }

.lsp-calc-bar {
  position: relative;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  margin-bottom: 34px;
}
.lsp-calc-bar-fill {
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
  transition: width .35s ease;
}
.lsp-calc-bar-label {
  position: absolute;
  top: 16px; left: 0;
  font-size: 12px;
  color: #94a3b8;
}
.lsp-calc-cta { text-align: center; }

/* статичний приклад-фолбек: видимий і без JS-результатів */
.lsp-calc-static {
  max-width: 860px;
  margin: 22px auto 0;
  font-size: 14px;
  color: rgba(255,255,255,.6);
}

/* =========================
   БЛОК 6. EQUIPMENT
========================= */
.lsp-eq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 24px;
}
.lsp-eq-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--radius);
  padding: 24px 22px;
  box-shadow: var(--shadow);
}
.lsp-eq-type {
  align-self: flex-start;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--accent-dark);
  background: rgba(0,195,255,.12);
  border-radius: 999px;
  padding: 4px 12px;
  margin-bottom: 12px;
}
.lsp-eq-card h3 { font-size: 19px; margin-bottom: 2px; }
.lsp-eq-model  { font-size: 13px; font-weight: 600; color: var(--muted); margin-bottom: 10px; }
.lsp-eq-card > p:not(.lsp-eq-model) { font-size: 14px; }
.lsp-eq-meta {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 12px;
  border-top: 1px solid rgba(15,23,42,.06);
}
.lsp-eq-warranty { font-size: 13px; font-weight: 600; color: var(--dark); }
.lsp-eq-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-dark);
  text-decoration: none;
}
.lsp-eq-link:hover { text-decoration: underline; }

/* =========================
   БЛОК 7. PROCESS — flow-таймлайн (як landing_products)
========================= */
.flow {
  display: flex;
  flex-wrap: nowrap;
  counter-reset: flow;
  margin-top: 10px;
}
.flow-step {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  text-align: center;
  padding: 78px 12px 0;
}
.flow-step::before {
  counter-increment: flow;
  content: counter(flow);
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  font-size: 20px;
  z-index: 2;
  box-shadow: 0 6px 18px rgba(0,195,255,.35);
}
.flow-step::after {
  content: "";
  position: absolute;
  top: 27px; left: 50%;
  width: 100%; height: 3px;
  background: rgba(0,195,255,.35);
  z-index: 1;
}
.flow-step:last-child::after { display: none; }

.flow-step h3 { font-size: 16px; margin-bottom: 6px; color: var(--dark); }
.flow-step p  { font-size: 13px; color: var(--muted); margin-bottom: 0; }
.section-dark .flow-step h3 { color: #fff; }
.section-dark .flow-step p  { color: rgba(255,255,255,.72); }

.lsp-flow-duration {
  display: inline-block;
  margin-top: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  background: rgba(0,195,255,.1);
  border-radius: 999px;
  padding: 3px 10px;
}

/* =========================
   БЛОК 8. CASES
========================= */
.lsp-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 28px;
}
.lsp-case-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--accent);
  transition: transform .25s, box-shadow .25s;
}
.lsp-case-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.lsp-case-media { aspect-ratio: 3 / 2; overflow: hidden; }
.lsp-case-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lsp-case-body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.lsp-case-body h3 { font-size: 17px; margin-bottom: 6px; }
.lsp-case-config { font-size: 13px; color: var(--muted); margin-bottom: 4px; }
.lsp-case-date   { font-size: 12px; color: var(--muted); margin-bottom: 8px; }
.lsp-case-gen {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-dark);
  background: rgba(0,195,255,.08);
  border-radius: 8px;
  padding: 8px 12px;
  margin-bottom: 12px;
}
.lsp-case-quote {
  margin-top: auto;
  border-left: 3px solid var(--accent);
  padding-left: 12px;
}
.lsp-case-quote p { font-size: 14px; font-style: italic; color: var(--dark); margin-bottom: 4px; }
.lsp-case-quote cite { font-size: 12px; font-style: normal; color: var(--muted); }

/* =========================
   БЛОК 9. WARRANTY
========================= */
.lsp-warranty-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}
.lsp-warranty-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 26px 24px;
  text-align: center;
}
.lsp-warranty-value {
  display: block;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 8px;
}
.lsp-warranty-card h3 { color: #fff; font-size: 17px; margin-bottom: 8px; }
.lsp-warranty-card p  { color: rgba(255,255,255,.65); font-size: 14px; margin-bottom: 0; }

/* =========================
   БЛОК 10. PAYMENT
========================= */
.lsp-pay-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}
.lsp-pay-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px 22px;
  box-shadow: var(--shadow);
}
.lsp-pay-card h3 { font-size: 17px; margin-bottom: 8px; }
.lsp-pay-card p  { font-size: 14px; margin-bottom: 0; }

/* =========================
   БЛОК 11. COMPARE — таблиця потужностей
========================= */
.compare-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

.compare-table {
  width: 100%;
  min-width: 620px;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.compare-table th,
.compare-table td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid rgba(15,23,42,.08);
  font-size: 15px;
  color: var(--dark);
}
.compare-table thead th {
  background: #0f172a;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
}
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table td:first-child,
.compare-table th:first-child {
  font-weight: 600;
  color: var(--dark);
  background: var(--bg);
}
.compare-table thead th:first-child { background: #0f172a; color: #fff; }

/* колонка поточної сторінки — підсвічена */
.compare-table thead th.lsp-cmp-current { background: var(--accent); color: #fff; }
.compare-table td.lsp-cmp-current { background: rgba(0,195,255,.07); font-weight: 600; }

.compare-table tfoot td {
  padding: 16px 12px;
  background: #fff;
  border-bottom: none;
  border-top: 1px solid rgba(15,23,42,.08);
  vertical-align: top;
}
.compare-table tfoot td:first-child { background: var(--bg); }
.compare-cta {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px 10px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  box-sizing: border-box;
  transition: transform .2s, background .2s;
}
a.compare-cta { background: var(--accent); color: #fff; }
a.compare-cta:hover { transform: translateY(-2px); }
.lsp-cmp-here {
  display: block;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-dark);
  padding: 12px 10px;
}

/* =========================
   БЛОК 12. FAQ — accordion (доступний)
========================= */
.faq-list { border-top: 1px solid rgba(255,255,255,.12); }
.faq-item {
  background: none; padding: 0; border-radius: 0; margin-bottom: 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: none; border: none; padding: 22px 4px;
  font-size: 17px; font-weight: 700; color: #fff; text-align: left;
  font-family: inherit; cursor: pointer; margin-bottom: 0;
}
.faq-question:hover { opacity: 1; }
.faq-question:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.faq-icon { flex: 0 0 auto; font-size: 22px; font-weight: 400; color: var(--accent); transition: transform .25s; }
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; padding: 0 4px; transition: max-height .3s ease, padding .3s ease; }
.faq-item.active .faq-answer { max-height: 320px; padding-bottom: 22px; }
.faq-answer p { color: #cbd5e1; margin-bottom: 0; }

/* =========================
   CALLOUT + допоміжні
========================= */
.callout-box {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 18px; background: rgba(0,195,255,.06); border-left: 4px solid var(--accent);
  border-radius: 14px; padding: 24px 28px;
}
.callout-box p { margin-bottom: 0; max-width: 640px; color: var(--dark); }
.section-dark .callout-box p { color: #fff; }

.callout-link {
  flex: 0 0 auto; display: inline-block; white-space: nowrap;
  background: var(--accent); color: #fff; font-weight: 700;
  padding: 12px 22px; border-radius: 10px; text-decoration: none; transition: transform .2s;
}
.callout-link:hover { transform: translateY(-2px); }

.lsp-center-cta { text-align: center; margin-top: 32px; }
.lsp-center-cta p { max-width: 560px; margin: 0 auto 14px; }
.section-dark .lsp-center-cta p { color: rgba(255,255,255,.72); }

.lsp-more-link {
  display: inline-block;
  margin: 14px 0 0 16px;
  color: var(--accent-dark);
  font-weight: 700;
  text-decoration: none;
}
.section-dark .lsp-more-link { color: var(--accent); }
.lsp-more-link:hover { text-decoration: underline; }

.lsp-note { font-size: 13px; color: var(--muted); margin: 18px 0 0; }
.lsp-note-light { color: rgba(255,255,255,.55); }

/* =========================
   БЛОК 13а. PRE-CTA (над формою)
========================= */
.lsp-precta {
  background: #0f172a;
  padding: 50px 10px 10px;
  text-align: center;
}
.lsp-precta h2 { color: #fff; max-width: 760px; margin: 0 auto 14px; }
.lsp-precta > .container > p {
  color: rgba(255,255,255,.72);
  max-width: 680px;
  margin: 0 auto 24px;
}
.lsp-precta-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  list-style: none;
  counter-reset: precta;
  margin-bottom: 26px;
}
.lsp-precta-steps li {
  counter-increment: precta;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  padding: 10px 18px 10px 10px;
  color: #cbd5e1;
  font-size: 14px;
  margin-bottom: 0;
}
.lsp-precta-steps li::before {
  content: counter(precta);
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}
.lsp-precta-engineer {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-align: left;
}
.lsp-precta-engineer img {
  width: 64px; height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
}
.lsp-precta-engineer strong { display: block; color: #fff; font-size: 15px; }
.lsp-precta-engineer span   { color: #94a3b8; font-size: 13px; }

/* =========================
   БЛОК 14. SEO-ТЕКСТ (той самий .lp-seo, що на landing_products)
========================= */
.lp-seo {
  padding: 50px 0;
  background: #fff;
  border-top: 1px solid #eef1f6;
}
.lp-seo-container { max-width: 900px; }
.lp-seo p, .lp-seo li { font-size: 15px; color: #475569; line-height: 1.7; margin-bottom: 14px; }
.lp-seo ul { margin: 0 0 14px; padding-left: 20px; list-style: disc; }
.lp-seo li { margin-bottom: 8px; }
.lp-seo h2 { font-size: 26px; color: var(--dark); margin-bottom: 16px; }
.lp-seo h3 { font-size: 19px; color: var(--dark); margin: 26px 0 10px; }
.lp-seo a { color: var(--accent-dark); text-decoration: underline; text-underline-offset: 3px; }
.lp-seo a:hover { text-decoration: none; }

/* =========================
   МОБІЛЬНИЙ STICKY-BAR
========================= */
.lsp-sticky {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  display: none;
  gap: 10px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0));
  background: rgba(15,23,42,.96);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,255,255,.1);
}
.lsp-sticky[hidden] { display: none !important; }
.lsp-sticky-call,
.lsp-sticky-cta {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
}
.lsp-sticky-call { background: rgba(255,255,255,.1); color: #fff; }
.lsp-sticky-cta  { background: var(--accent); color: #fff; }

/* =========================
   CONTACT FORM overrides (як на інших лендінгах)
========================= */
.contact-form-section h1,
.contact-form-section h2,
.contact-form-section h3 { color: #fff; background: linear-gradient(135deg,#0f172a,#111827); }
.contact-form-title h2 { color: #fff; }
.section-dark.contact-form-section h2,
.section-dark.contact-form-section h1,
.section-dark.contact-form-section h3 { color: #fff !important; }

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {

  section { padding: 40px 0; }
  .container { padding: 0 16px; }

  .lsp-kit { grid-template-columns: 1fr; }
  .lsp-kit-media { position: static; max-width: 520px; margin: 0 auto; }

  .lsp-pkg-grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
  /* мобільний порядок: featured («Оптимальний») — першим */
  .lsp-pkg-card.featured { order: -1; transform: none; }

  .lsp-calc-results { grid-template-columns: repeat(2, 1fr); }

  .hero-stats { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  h1 { font-size: 32px; }
  h2 { font-size: 26px; }
  p  { font-size: 15px; }

  .hero-btn { min-width: auto; width: 100%; padding: 16px; }
  .lsp-hero-stats,
  .hero-stats { grid-template-columns: 1fr; gap: 10px; }
  .hero-stats .stat { padding: 12px; }

  .callout-box { flex-direction: column; align-items: flex-start; }

  /* мобільний flow — вертикальний timeline */
  .flow { flex-direction: column; }
  .flow-step { text-align: left; padding: 4px 0 26px 72px; min-height: 54px; }
  .flow-step::before { left: 0; transform: none; }
  .flow-step::after  { top: 54px; left: 27px; width: 3px; height: 100%; }

  /* показуємо sticky-bar лише на мобільних (JS керує hidden) */
  .lsp-sticky:not([hidden]) { display: flex; }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  h2 { font-size: 22px; }
  .lsp-calc { padding: 24px 16px; }
  .lsp-precta-steps { flex-direction: column; align-items: stretch; }
}