/* ==========================================================================
   LVIV SERVICE — MODERN UI SUITE 2026 (modern.css)
   Єдиний файл стилів: Header, Footer, Services, Sidebars, Forms & Widgets
   ========================================================================== */

:root {
  --ls-nav-bg: #0f172a;
  --ls-nav-surface: #1e293b;
  --ls-border: #334155;
  --ls-border-light: #e2e8f0;
  --ls-accent: #10b981;
  --ls-accent-hover: #059669;
  --ls-text-light: #f8fafc;
  --ls-text-dark: #0f172a;
  --ls-muted: #94a3b8;
  --ls-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Inter", sans-serif;
}

/* Загальний фон сторінок та шрифти */
body, .body, .body.index, .main {
  background-color: #f8fafc !important;
  color: #334155 !important;
}

/* --------------------------------------------------------------------------
   1. СУЧАСНИЙ HEADER (ШАПКА САЙТУ) ТА МОБІЛЬНИЙ ФІКС
   -------------------------------------------------------------------------- */
.ls-header-wrap {
  position: relative;
  z-index: 1000;
  width: 100%;
  background-color: var(--ls-nav-bg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  font-family: var(--ls-font);
}

.ls-header-wrap *,
.ls-header-wrap *::before,
.ls-header-wrap *::after {
  box-sizing: border-box;
}

.ls-topbar {
  background: #090d16;
  border-bottom: 1px solid #1e293b;
  padding: 8px 0;
  font-size: 13px;
  color: var(--ls-muted);
}

.ls-topbar-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.ls-topbar-left,
.ls-topbar-right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.ls-top-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.ls-top-item svg {
  color: var(--ls-accent);
}

.ls-topbar a {
  color: var(--ls-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.ls-topbar a:hover {
  color: #38bdf8;
}

.ls-main-site-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #34d399 !important;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 10px;
  border-radius: 20px;
  transition: all 0.2s ease;
}

.ls-main-site-badge:hover {
  background: var(--ls-accent);
  color: #ffffff !important;
}

.ls-main-head {
  padding: 14px 0;
  border-bottom: 1px solid #1e293b;
}

.ls-main-head-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.ls-brand-zone {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ls-logo-img {
  height: 44px;
  width: auto;
  display: block;
}

.ls-brand-sub {
  border-left: 1px solid var(--ls-border);
  padding-left: 14px;
  font-size: 12px;
  line-height: 1.35;
  color: var(--ls-muted);
}

.ls-brand-sub strong {
  color: #ffffff;
}

.ls-search-form {
  flex: 1;
  max-width: 440px;
  position: relative;
}

.ls-search-form input {
  width: 100%;
  height: 40px;
  background: #162032;
  border: 1px solid var(--ls-border);
  border-radius: 8px;
  padding: 0 42px 0 14px;
  font-size: 13px;
  color: #ffffff;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.ls-search-form input:focus {
  border-color: var(--ls-accent);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}

.ls-search-form button {
  position: absolute;
  right: 0;
  top: 0;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  color: var(--ls-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}

.ls-search-form button:hover {
  color: var(--ls-accent);
}

.ls-cta-zone {
  display: flex;
  align-items: center;
  gap: 14px;
}

.ls-head-phone {
  display: flex;
  flex-direction: column;
  text-align: right;
}

.ls-head-phone span {
  font-size: 11px;
  color: var(--ls-muted);
}

.ls-head-phone a {
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: color 0.2s;
}

.ls-head-phone a:hover {
  color: var(--ls-accent);
}

.ls-burger-btn {
  display: none;
  background: #1e293b;
  border: 1px solid var(--ls-border);
  color: #ffffff;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  align-items: center;
  gap: 6px;
}

.ls-nav-bar {
  background: #111827;
}

.ls-menu-ul {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.ls-menu-li {
  position: relative;
}

.ls-menu-a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 13px 11px;
  color: #cbd5e1;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none !important;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.ls-menu-a:hover,
.ls-menu-li:hover > .ls-menu-a {
  color: #ffffff;
  background: #1f293d;
}

.ls-menu-a svg.chevron {
  transition: transform 0.2s ease;
}

.ls-menu-li:hover > .ls-menu-a svg.chevron {
  transform: rotate(180deg);
}

.ls-drop-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 255px;
  background: #151d2e;
  border: 1px solid var(--ls-border);
  border-radius: 0 0 8px 8px;
  box-shadow: 0 14px 30px rgba(0,0,0,0.4);
  list-style: none;
  padding: 8px 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1100;
}

.ls-menu-li:hover > .ls-drop-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.ls-drop-menu li a {
  display: block;
  padding: 8px 18px;
  color: #94a3b8;
  font-size: 13px;
  text-decoration: none !important;
  transition: all 0.15s ease;
}

.ls-drop-menu li a:hover {
  color: #ffffff;
  background: #1e293b;
  padding-left: 22px;
}

/* --------------------------------------------------------------------------
   2. СУЧАСНИЙ FOOTER (ПІДВАЛ САЙТУ)
   -------------------------------------------------------------------------- */
.ls-footer-wrap {
  position: relative;
  background-color: #0d1117;
  color: #94a3b8;
  font-family: var(--ls-font);
  font-size: 14px;
  line-height: 1.6;
  margin-top: 60px;
  border-top: 1px solid #1f293d;
  box-sizing: border-box;
}

.ls-footer-wrap *,
.ls-footer-wrap *::before,
.ls-footer-wrap *::after {
  box-sizing: border-box;
}

.ls-portal-bar {
  background: linear-gradient(90deg, #111827 0%, #1a2234 50%, #111827 100%);
  border-bottom: 1px solid #243048;
  padding: 16px 0;
}

.ls-portal-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.ls-portal-info {
  display: flex;
  align-items: center;
  gap: 14px;
}

.ls-pulse-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 12px;
  border-radius: 20px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: #34d399;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.ls-pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #10b981;
  box-shadow: 0 0 8px #10b981;
  animation: lsPulse 2s infinite ease-in-out;
}

@keyframes lsPulse {
  0% { transform: scale(0.9); opacity: 0.7; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.7; }
}

.ls-portal-text {
  margin: 0;
  color: #e2e8f0;
  font-size: 14px;
  font-weight: 500;
}

.ls-portal-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff !important;
  font-weight: 600;
  font-size: 13px;
  padding: 9px 20px;
  border-radius: 8px;
  text-decoration: none !important;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.3);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.ls-portal-btn:hover {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.45);
  transform: translateY(-2px);
  color: #ffffff !important;
}

.ls-footer-body {
  padding: 50px 0 35px;
}

.ls-col-title {
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.3px;
  margin-top: 0;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 8px;
}

.ls-col-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28px;
  height: 2px;
  background: #10b981;
  border-radius: 2px;
}

.ls-logo-link {
  display: inline-block;
  margin-bottom: 14px;
}

.ls-about-p {
  font-size: 13px;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 20px;
}

.ls-socials {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.ls-soc-item {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #cbd5e1 !important;
  background: #161f30;
  border: 1px solid #23314c;
  text-decoration: none !important;
  transition: all 0.2s ease;
}

.ls-soc-item:hover {
  color: #ffffff !important;
  transform: translateY(-2px);
}

.ls-soc-item.tg:hover { background: #229ed9; border-color: #229ed9; }
.ls-soc-item.vb:hover { background: #7360f2; border-color: #7360f2; }
.ls-soc-item.fb:hover { background: #1877f2; border-color: #1877f2; }
.ls-soc-item.in:hover { background: #e1306c; border-color: #e1306c; }
.ls-soc-item.yt:hover { background: #ff0000; border-color: #ff0000; }

.ls-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ls-nav-list li {
  margin-bottom: 10px;
}

.ls-nav-list a {
  color: #94a3b8;
  text-decoration: none !important;
  font-size: 13px;
  transition: all 0.2s ease;
  display: inline-block;
}

.ls-nav-list a:hover {
  color: #38bdf8;
  transform: translateX(4px);
}

.ls-nav-list a.ls-external-link {
  color: #34d399;
  font-weight: 600;
}

.ls-nav-list a.ls-external-link:hover {
  color: #6ee7b7;
}

.ls-contacts-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ls-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
}

.ls-c-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: #10b981;
  margin-top: 2px;
}

.ls-phone-link {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff !important;
  text-decoration: none !important;
  letter-spacing: 0.3px;
  transition: color 0.2s;
}

.ls-phone-link:hover {
  color: #10b981 !important;
}

.ls-contacts-stack a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.2s;
}

.ls-contacts-stack a:hover {
  color: #38bdf8;
}

.ls-footer-bottom {
  background: #080c11;
  border-top: 1px solid #182234;
  padding: 18px 0;
  font-size: 12px;
  color: #64748b;
}

.ls-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

/* --------------------------------------------------------------------------
   3. СІТКА КАРТОК ПОСЛУГ (SERVICES GRID)
   -------------------------------------------------------------------------- */
.ls-services-section {
  padding: 40px 0 20px;
  position: relative;
  font-family: var(--ls-font);
}

.ls-section-heading {
  font-size: 26px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 28px;
  position: relative;
  display: inline-block;
}

.ls-section-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 44px;
  height: 3px;
  background: #10b981;
  border-radius: 2px;
}

.ls-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.ls-service-card {
  background: #ffffff;
  border: 1px solid var(--ls-border-light);
  border-radius: 12px;
  padding: 22px 18px 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.ls-service-card:hover {
  transform: translateY(-4px);
  border-color: #cbd5e1;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.ls-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.ls-card-icon {
  width: 42px;
  height: 42px;
  object-fit: contain;
  flex-shrink: 0;
}

.ls-card-title {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
}

.ls-card-title a {
  color: #0f172a !important;
  text-decoration: none !important;
  transition: color 0.2s;
}

.ls-card-title a:hover {
  color: #10b981 !important;
}

.ls-subservices-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  flex-grow: 1;
}

.ls-subservices-list li {
  margin-bottom: 6px;
}

.ls-subservices-list a {
  color: #64748b;
  font-size: 13px;
  text-decoration: none !important;
  transition: all 0.15s;
  display: inline-block;
}

.ls-subservices-list a:hover {
  color: #0284c7;
  padding-left: 3px;
}

.ls-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #f1f5f9;
  padding-top: 12px;
  margin-top: auto;
}

.ls-card-price {
  font-size: 15px;
  font-weight: 700;
  color: #059669;
}

.ls-card-arrow {
  color: #94a3b8;
  transition: transform 0.2s, color 0.2s;
}

.ls-service-card:hover .ls-card-arrow {
  color: #10b981;
  transform: translateX(3px);
}

/* --------------------------------------------------------------------------
   4. БЛОК «ЯК МИ ПРАЦЮЄМО?»
   -------------------------------------------------------------------------- */
.ls-workflow-section {
  padding: 35px 0;
  margin: 30px 0;
  font-family: var(--ls-font);
}

.ls-workflow-title {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 30px;
  position: relative;
}

.ls-workflow-title::after {
  content: "";
  display: block;
  width: 46px;
  height: 3px;
  background: #10b981;
  border-radius: 2px;
  margin: 8px auto 0;
}

.ls-workflow-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
}

.ls-step-card {
  flex: 1 1 0;
  background: #ffffff;
  border: 1px solid var(--ls-border-light);
  border-radius: 14px;
  padding: 24px 18px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.04);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.ls-step-card:hover {
  transform: translateY(-4px);
  border-color: #10b981;
  box-shadow: 0 12px 24px rgba(16, 185, 129, 0.12);
}

.ls-step-icon-wrap {
  width: 54px;
  height: 54px;
  margin: 0 auto 14px;
  border-radius: 12px;
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ls-step-icon-wrap svg {
  width: 26px;
  height: 26px;
}

.ls-step-title {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 6px;
}

.ls-step-desc {
  font-size: 13px;
  color: #64748b;
  line-height: 1.4;
  margin: 0;
}

.ls-step-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cbd5e1;
  flex-shrink: 0;
}

.ls-step-divider svg {
  width: 20px;
  height: 20px;
}

/* --------------------------------------------------------------------------
   5. ФОРМА ОФОРМЛЕННЯ ЗАЯВКИ
   -------------------------------------------------------------------------- */
.ls-order-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-radius: 16px;
  padding: 35px 30px;
  color: #ffffff;
  margin: 40px 0;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.2);
  font-family: var(--ls-font);
}

.ls-order-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.ls-order-info {
  flex: 1 1 380px;
}

.ls-order-title {
  font-size: 24px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 12px;
  color: #ffffff;
}

.ls-order-subtitle {
  font-size: 14px;
  color: #94a3b8;
  margin-bottom: 20px;
  line-height: 1.5;
}

.ls-order-perks {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ls-order-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #cbd5e1;
  margin-bottom: 10px;
}

.ls-order-perks svg {
  color: #10b981;
  flex-shrink: 0;
}

.ls-order-form {
  flex: 1 1 340px;
  background: #111827;
  border: 1px solid #334155;
  border-radius: 12px;
  padding: 25px;
}

.ls-input-group {
  margin-bottom: 16px;
}

.ls-input-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #cbd5e1;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ls-input-group input {
  width: 100%;
  height: 44px;
  background: #1f293d;
  border: 1px solid #334155;
  border-radius: 8px;
  padding: 0 14px;
  color: #ffffff;
  font-size: 14px;
  outline: none;
  box-sizing: border-box;
  transition: all 0.2s ease;
}

.ls-input-group input:focus {
  border-color: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}

.ls-submit-btn {
  width: 100%;
  height: 48px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border: none;
  border-radius: 8px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.3);
}

.ls-submit-btn:hover {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  transform: translateY(-1px);
}

.ls-form-policy {
  font-size: 11px;
  color: #64748b;
  margin-top: 12px;
  text-align: center;
  line-height: 1.4;
}

.ls-form-success {
  display: none;
  text-align: center;
  padding: 20px;
}

.ls-form-success h4 {
  color: #10b981;
  margin-bottom: 8px;
}

/* --------------------------------------------------------------------------
   6. САЙДБАР ТА АКЦІЙНІ ВІДЖЕТИ
   -------------------------------------------------------------------------- */
.sidebar, .left-menu, .side-menu, ul.menu, .bx-sidebar {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 12px !important;
  padding: 16px !important;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.04) !important;
  margin-bottom: 25px !important;
}

.sidebar ul, .left-menu ul, .side-menu ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.sidebar li, .left-menu li, .side-menu li {
  margin-bottom: 6px !important;
  border-bottom: 1px solid #f1f5f9 !important;
}

.sidebar li:last-child, .left-menu li:last-child, .side-menu li:last-child {
  border-bottom: none !important;
  margin-bottom: 0 !important;
}

.sidebar a, .left-menu a, .side-menu a, 
.sidebar ul a, .left-menu ul a {
  display: block !important;
  padding: 10px 12px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: #334155 !important;
  text-decoration: none !important;
  border-radius: 8px !important;
  transition: all 0.2s ease !important;
}

.sidebar a:hover, .left-menu a:hover, .side-menu a:hover {
  background: #f1f5f9 !important;
  color: #10b981 !important;
  padding-left: 16px !important;
}

.sidebar li.active > a, .left-menu li.current > a, .side-menu .selected > a {
  background: rgba(16, 185, 129, 0.1) !important;
  color: #059669 !important;
  font-weight: 700 !important;
}

.ls-sidebar-promo {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border: 1px solid #334155;
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
  color: #ffffff;
  margin-bottom: 25px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  font-family: var(--ls-font);
}

.ls-promo-badge {
  display: inline-block;
  background: #ef4444;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 10px;
}

.ls-promo-title {
  font-size: 14px;
  font-weight: 600;
  color: #f8fafc;
  margin: 0 0 8px;
  line-height: 1.3;
}

.ls-promo-price {
  font-size: 22px;
  font-weight: 800;
  color: #10b981;
  margin: 0 0 12px;
}

.ls-promo-btn {
  display: block;
  background: #10b981;
  color: #ffffff !important;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none !important;
  padding: 8px 14px;
  border-radius: 6px;
  transition: background 0.2s;
}

.ls-promo-btn:hover {
  background: #059669;
}

/* --------------------------------------------------------------------------
   7. ХЛІБНІ КРИХТИ (BREADCRUMBS) ТА ЗАГОЛОВОК
   -------------------------------------------------------------------------- */
.ls-page-title-bar {
  background: linear-gradient(180deg, #111827 0%, #0f172a 100%);
  padding: 24px 0 26px;
  border-bottom: 1px solid #1e293b;
  margin-bottom: 30px;
  font-family: var(--ls-font);
}

.ls-breadcrumbs {
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
}

.ls-breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #64748b;
}

.ls-breadcrumbs li:not(:last-child)::after {
  content: "›";
  color: #475569;
  font-size: 14px;
}

.ls-breadcrumbs a {
  color: #94a3b8;
  text-decoration: none !important;
  transition: color 0.2s;
}

.ls-breadcrumbs a:hover {
  color: #10b981;
}

.ls-breadcrumbs span.current {
  color: #e2e8f0;
  font-weight: 500;
}

.ls-page-title-bar h1 {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.3px;
}

/* --------------------------------------------------------------------------
   8. ПЛАВАЮЧИЙ ВІДЖЕТ МЕСЕНДЖЕРІВ
   -------------------------------------------------------------------------- */
.ls-quick-chat {
  position: fixed;
  bottom: 25px;
  left: 25px;
  z-index: 9999;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 12px;
}

.ls-chat-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff !important;
  text-decoration: none !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s;
}

.ls-chat-btn:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.ls-chat-btn svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.ls-chat-btn.tel { background: linear-gradient(135deg, #10b981, #059669); }
.ls-chat-btn.tg  { background: linear-gradient(135deg, #2aabee, #229ed9); }
.ls-chat-btn.vb  { background: linear-gradient(135deg, #8f5db7, #7360f2); }
.ls-chat-btn.wa  { background: linear-gradient(135deg, #25d366, #128c7e); }

/* --------------------------------------------------------------------------
   9. АДАПТИВНІСТЬ ТА ФІКСАЦІЯ ШАПКИ НА МОБІЛЬНИХ
   -------------------------------------------------------------------------- */
@media (max-width: 991px) {
  .ls-brand-sub {
    display: none;
  }
  .ls-menu-a {
    padding: 11px 7px;
    font-size: 12px;
  }
  .ls-portal-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  
  /* Фіксація шапки на мобільних */
  .ls-header-wrap {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 99999 !important;
    background: #0f172a !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
  }
  body {
    padding-top: 75px !important;
  }
  .ls-nav-bar {
    max-height: calc(100vh - 75px) !important;
    overflow-y: auto !important;
    background: #0f172a !important;
    border-top: 1px solid #334155 !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4) !important;
  }
}

@media (max-width: 768px) {
  .ls-topbar {
    display: none;
  }
  .ls-search-form {
    display: none;
  }
  .ls-burger-btn {
    display: inline-flex;
  }
  .ls-nav-bar {
    display: none;
  }
  .ls-nav-bar.active {
    display: block;
  }
  .ls-menu-ul {
    flex-direction: column;
    align-items: stretch;
  }
  .ls-menu-a {
    padding: 14px 18px;
    font-size: 14px;
    border-bottom: 1px solid #1e293b;
    justify-content: space-between;
  }
  .ls-drop-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: #090d16;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    display: none;
  }
  .ls-menu-li.open > .ls-drop-menu {
    display: block;
  }
  .ls-drop-menu li a {
    padding: 10px 18px 10px 30px;
    font-size: 13px;
    border-bottom: 1px solid #141c2c;
  }
  .ls-footer-wrap {
    margin-top: 35px;
  }
  .ls-footer-col {
    margin-bottom: 30px;
  }
  .ls-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
  .ls-services-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .ls-workflow-grid {
    flex-direction: column;
    gap: 12px;
  }
  .ls-step-card {
    width: 100%;
  }
  .ls-step-divider {
    transform: rotate(90deg);
  }
  .ls-page-title-bar {
    padding: 18px 0;
    margin-bottom: 20px;
  }
  .ls-page-title-bar h1 {
    font-size: 22px;
  }
  .ls-quick-chat {
    bottom: 18px;
    left: 20px;
    right: auto !important;
    gap: 10px;
  }
  .ls-chat-btn {
    width: 46px;
    height: 46px;
  }
  .ls-chat-btn svg {
    width: 22px;
    height: 22px;
  }
}

/* --------------------------------------------------------------------------
   10. ЛОКАЦІЙНА КАРТКА ТА НАВІГАЦІЯ НАЗАД
   -------------------------------------------------------------------------- */
.ls-location-card {
  background: #ffffff;
  border: 1px solid var(--ls-border-light);
  border-radius: 14px;
  padding: 24px 28px;
  margin: 35px 0 20px;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.04);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  font-family: var(--ls-font);
}

.ls-location-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ls-loc-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(16, 185, 129, 0.12);
  color: var(--ls-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ls-loc-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--ls-text-dark);
  margin: 0 0 4px;
}

.ls-loc-text {
  font-size: 13px;
  color: #64748b;
  margin: 0;
}

.ls-loc-btn-group {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.ls-loc-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ls-accent);
  color: #ffffff !important;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none !important;
  transition: all 0.2s ease;
}

.ls-loc-call-btn:hover {
  background: var(--ls-accent-hover);
  transform: translateY(-1px);
}

.ls-back-nav {
  margin: 15px 0 35px;
}

.ls-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #64748b !important;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none !important;
  transition: all 0.2s ease;
}

.ls-back-btn:hover {
  color: var(--ls-accent) !important;
  transform: translateX(-4px);
}

@media (max-width: 768px) {
  .ls-location-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
  }
}

/* --------------------------------------------------------------------------
   12. ГОРИЗОНТАЛЬНА СМУГА ПЕРЕВАГ ТА СТАТИСТИКА
   -------------------------------------------------------------------------- */
.ls-features-bar {
  background: #ffffff;
  border: 1px solid var(--ls-border-light);
  border-radius: 14px;
  padding: 20px 15px;
  margin: 30px 0;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.03);
  font-family: var(--ls-font);
}

.ls-features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.ls-feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 8px;
  border-radius: 10px;
  transition: all 0.2s ease;
}

.ls-feature-item:hover {
  background: #f8fafc;
  transform: translateY(-2px);
}

.ls-feat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(16, 185, 129, 0.1);
  color: var(--ls-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.ls-feat-title {
  font-size: 13px;
  font-weight: 600;
  color: #1e293b;
  margin: 0;
  line-height: 1.35;
}

@media (max-width: 991px) {
  .ls-features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .ls-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.ls-stats-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-radius: 16px;
  padding: 35px 25px;
  margin: 40px 0;
  color: #ffffff;
  font-family: var(--ls-font);
}

.ls-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.ls-stat-card {
  padding: 10px;
}

.ls-stat-number {
  font-size: 36px;
  font-weight: 800;
  color: #10b981;
  line-height: 1.1;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.ls-stat-label {
  font-size: 13px;
  color: #94a3b8;
  line-height: 1.4;
  margin: 0;
}

@media (max-width: 768px) {
  .ls-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .ls-stat-number {
    font-size: 28px;
  }
}

/* --------------------------------------------------------------------------
   14. АКЦІЙНИЙ БАНЕР ТА ЕКРАН HERO
   -------------------------------------------------------------------------- */
.ls-action-banner {
  width: 100% !important;
  max-width: 1200px !important;
  margin: 25px auto !important;
  padding: 24px 30px !important;
  background: #1e293b !important;
  border-radius: 12px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  flex-wrap: wrap !important;
  gap: 20px !important;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.15) !important;
}

.ls-action-content {
  flex: 1 1 500px !important;
}

.ls-action-title {
  color: #ffffff !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  margin: 0 0 6px 0 !important;
}

.ls-action-desc {
  color: #94a3b8 !important;
  font-size: 13px !important;
  margin: 0 !important;
  line-height: 1.5 !important;
}

.ls-action-cta {
  display: flex !important;
  align-items: center !important;
  gap: 15px !important;
  flex-shrink: 0 !important;
}

.ls-action-price {
  color: #10b981 !important;
  font-size: 20px !important;
  font-weight: 800 !important;
}

.ls-action-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  background: #10b981 !important;
  color: #ffffff !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  padding: 10px 20px !important;
  border-radius: 8px !important;
  text-decoration: none !important;
  transition: background 0.2s ease !important;
}

.ls-action-btn:hover {
  background: #059669 !important;
  color: #ffffff !important;
}

.ls-hero-section {
  position: relative;
  background: radial-gradient(circle at 80% 20%, #1e293b 0%, #0f172a 100%);
  border-bottom: 1px solid var(--ls-border);
  padding: 60px 0 50px;
  color: #ffffff;
  font-family: var(--ls-font);
  overflow: hidden;
}

.ls-hero-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.ls-hero-content {
  flex: 1 1 500px;
  max-width: 620px;
}

.ls-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #34d399;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}

.ls-hero-h1 {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  margin: 0 0 16px;
  letter-spacing: -0.5px;
}

.ls-hero-h1 span {
  color: #10b981;
}

.ls-hero-lead {
  font-size: 16px;
  color: #94a3b8;
  line-height: 1.6;
  margin: 0 0 24px;
}

.ls-hero-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ls-hero-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #cbd5e1;
}

.ls-hero-benefits svg {
  color: #10b981;
  flex-shrink: 0;
}

.ls-hero-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.ls-hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff !important;
  font-size: 15px;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: 10px;
  text-decoration: none !important;
  box-shadow: 0 4px 18px rgba(16, 185, 129, 0.35);
  transition: all 0.2s ease;
}

.ls-hero-btn-primary:hover {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  transform: translateY(-2px);
}

.ls-hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1e293b;
  border: 1px solid var(--ls-border);
  color: #ffffff !important;
  font-size: 15px;
  font-weight: 600;
  padding: 13px 24px;
  border-radius: 10px;
  text-decoration: none !important;
  transition: all 0.2s ease;
}

.ls-hero-btn-secondary:hover {
  background: #334155;
  color: #38bdf8 !important;
}

.ls-hero-card {
  flex: 1 1 320px;
  max-width: 400px;
  background: rgba(30, 41, 59, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.ls-hero-card-title {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ls-card-service-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
  font-size: 13px;
}

.ls-card-service-row:last-child {
  border-bottom: none;
}

.ls-card-service-row a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.2s;
}

.ls-card-service-row a:hover {
  color: #38bdf8;
}

.ls-card-service-price {
  font-weight: 700;
  color: #10b981;
}

@media (max-width: 768px) {
  .ls-hero-section {
    padding: 35px 0;
  }
  .ls-hero-h1 {
    font-size: 26px;
  }
  .ls-hero-grid {
    gap: 25px;
  }
}

/* --------------------------------------------------------------------------
   16. СУЧАСНІ ВІДГУКИ ТА ВНУТРІШНІ СТОРІНКИ ПОСЛУГ (КАРТКИ)
   -------------------------------------------------------------------------- */
.ls-reviews-section {
  padding: 35px 0 !important;
  background: transparent !important;
}

.ls-reviews-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 16px !important;
  margin-top: 20px !important;
}

.ls-review-card {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 12px !important;
  padding: 18px !important;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.04) !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
}

.ls-review-header {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin-bottom: 10px !important;
}

.ls-review-avatar {
  width: 42px !important;
  height: 42px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  flex-shrink: 0 !important;
  border: 1px solid #cbd5e1 !important;
}

.ls-review-name {
  font-size: 15px !important;
  font-weight: 700 !important;
  color: #0f172a !important;
  margin: 0 0 2px 0 !important;
}

.ls-review-stars {
  display: flex !important;
  gap: 2px !important;
  font-size: 12px !important;
  color: #f59e0b !important;
}

.ls-review-text {
  font-size: 13px !important;
  color: #475569 !important;
  line-height: 1.5 !important;
  margin: 0 !important;
}

@media (max-width: 991px) {
  .ls-reviews-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 576px) {
  .ls-reviews-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Оформлення блоків контенту послуг та внутрішніх сторінок у єдині світлі картки */
.service-detail, .catalog-detail, .item-view, .work-detail, .inner-text, .page-content, .company.front {
  background: #ffffff !important;
  border-radius: 16px !important;
  padding: 35px !important;
  border: 1px solid #e2e8f0 !important;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04) !important;
  margin-bottom: 30px !important;
  position: relative !important;
}

.service-detail img, .catalog-detail img, .item-view img, .detail-image {
  border-radius: 12px !important;
  max-width: 100% !important;
  height: auto !important;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.08) !important;
  margin-right: 25px !important;
  margin-bottom: 20px !important;
}

.service-detail h1, .catalog-detail h1, .item-view h1, 
.service-detail h2, .catalog-detail h2, .inner-text h1, .inner-text h2 {
  font-size: 26px !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  margin-top: 5px !important;
  margin-bottom: 15px !important;
  letter-spacing: -0.3px !important;
}

.service-detail p, .catalog-detail p, .item-view p, .inner-text p {
  font-size: 15px !important;
  color: #475569 !important;
  line-height: 1.7 !important;
  margin-bottom: 15px !important;
}


/* --------------------------------------------------------------------------
   УНІВЕРСАЛЬНИЙ МАСОВИЙ ФІКС ДЛЯ УСІХ 170 СТОРІНОК (БІТРІКС / ASPRO)
   -------------------------------------------------------------------------- */

/* Вирівнювання головного контейнера та сітки на всіх сторінках */
.maxwidth-theme {
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 0 15px !important;
  box-sizing: border-box !important;
}

/* Запобігання горизонтальному скролу та розриву колонок */
.row {
  margin-left: -15px !important;
  margin-right: -15px !important;
  display: flex !important;
  flex-wrap: wrap !important;
}

/* Колонки сайдбара та основного контенту */
.col-md-3, .col-sm-3, .left-menu-md {
  flex: 0 0 25% !important;
  max-width: 25% !important;
  padding: 0 15px !important;
  box-sizing: border-box !important;
}

.col-md-9, .col-sm-9, .content-md {
  flex: 0 0 75% !important;
  max-width: 75% !important;
  padding: 0 15px !important;
  box-sizing: border-box !important;
}

/* Мобільна адаптація для сітки колонок на телефонах */
@media (max-width: 991px) {
  .col-md-3, .col-sm-3, .left-menu-md,
  .col-md-9, .col-sm-9, .content-md {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
}

/* Уніфікований білий фон та картки для контенту на всіх сторінках */
.detail, .content, .company.front, .service-detail, .catalog-detail, .item-view, .work-detail, .inner-text, .page-content {
  background: #ffffff !important;
  border-radius: 16px !important;
  padding: 30px !important;
  border: 1px solid #e2e8f0 !important;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04) !important;
  margin-bottom: 30px !important;
}
/* --------------------------------------------------------------------------
   ОСУЧАСНЕННЯ БІЧНОГО МЕНЮ ТА САЙДБАРА (2026)
   -------------------------------------------------------------------------- */

/* Загальний контейнер сайдбара */
.sidebar, .left-menu, .side-menu, ul.menu, .bx-sidebar {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 14px !important;
  padding: 16px !important;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04) !important;
  margin-bottom: 25px !important;
}

/* Скидання старих списків у меню */
.sidebar ul, .left-menu ul, .side-menu ul, .nav.nav-list.side-menu {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Окремі пункти меню */
.sidebar li, .left-menu li, .side-menu li {
  margin-bottom: 4px !important;
  border-bottom: none !important; /* прибираємо старі грубі лінії */
  background: transparent !important;
}

/* Стиль посилань та активних пунктів у сайдбарі */
.sidebar a, .left-menu a, .side-menu a, 
.sidebar ul a, .left-menu ul a,
.nav.nav-list.side-menu a {
  display: flex !important;
  align-items: center !important;
  padding: 11px 14px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: #334155 !important;
  text-decoration: none !important;
  border-radius: 10px !important;
  transition: all 0.2s ease !important;
  background: #f8fafc !important;
  margin-bottom: 4px !important;
}

/* Ефект при наведенні */
.sidebar a:hover, .left-menu a:hover, .side-menu a:hover {
  background: rgba(16, 185, 129, 0.08) !important;
  color: #059669 !important;
  padding-left: 18px !important;
}

/* Виділення активного пункту (замість зеленого шапкового блоку) */
.sidebar li.active > a, 
.left-menu li.current > a, 
.side-menu .selected > a,
.sidebar li.active > span,
.nav.nav-list.side-menu li.active > span {
  background: #10b981 !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  border-radius: 10px !important;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25) !important;
}

/* Оформлення блоку з текстом і форматами допомоги під меню */
.sidearea {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 14px !important;
  padding: 20px !important;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04) !important;
  margin-bottom: 25px !important;
  font-size: 13px !important;
  color: #475569 !important;
  line-height: 1.6 !important;
}

.sidearea i {
  display: block;
  font-style: italic;
  color: #64748b;
  margin-bottom: 12px;
}
/* --------------------------------------------------------------------------
   ФІКС АКТИВНОГО ПУНКТУ МЕНЮ ТА БЛОКУ ФОРМАТІВ ДОПОМОГИ (2026)
   -------------------------------------------------------------------------- */

/* Повне очищення стилів активного пункту меню від Бітрікса */
.sidebar li.active > a, 
.left-menu li.current > a, 
.side-menu .selected > a,
.sidebar li.active > span,
.nav.nav-list.side-menu li.active > span,
.nav.nav-list.side-menu .active a {
  background: #10b981 !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  border-radius: 10px !important;
  padding: 11px 14px !important;
  margin: 4px 0 !important;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25) !important;
  display: block !important;
  position: static !important;
}

/* Запобігання наповзанню тексту всередині списку меню */
.sidebar li, .left-menu li, .side-menu li, .nav.nav-list.side-menu li {
  position: relative !important;
  margin-bottom: 6px !important;
  background: transparent !important;
  border: none !important;
}

/* Огортаємо блок «Формати допомоги» в охайну білу картку */
.sidearea {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 14px !important;
  padding: 22px !important;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04) !important;
  margin-top: 20px !important;
  margin-bottom: 25px !important;
}

/* Вирівнюємо списки і текст всередині Форматів допомоги */
.sidearea ul, .sidearea li {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.sidearea .ls-sidebar-service-item {
  display: flex !important;
  align-items: flex-start !important;
  gap: 12px !important;
  margin-bottom: 14px !important;
}

.sidearea .ls-sidebar-icon {
  width: 36px !important;
  height: 36px !important;
  border-radius: 8px !important;
  background: rgba(16, 185, 129, 0.1) !important;
  color: #10b981 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
}
/* --------------------------------------------------------------------------
   ІДЕАЛЬНЕ ВИПРАВЛЕННЯ БЛОКУ «ФОРМАТИ ДОПОМОГИ» В САЙДБАРІ (2026)
   -------------------------------------------------------------------------- */
.sidearea {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 14px !important;
  padding: 22px !important;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04) !important;
  margin-top: 20px !important;
  margin-bottom: 25px !important;
}

/* Заголовок блоку */
.sidearea p:first-child, .sidearea .formats-title {
  font-size: 15px !important;
  font-weight: 700 !important;
  color: #0f172a !important;
  margin-bottom: 15px !important;
  border-bottom: 1px solid #f1f5f9 !important;
  padding-bottom: 8px !important;
}

/* Сітка елементів (прибираємо старі маркери списків) */
.sidearea ul, .sidearea li {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Кожен рядок формату допомоги */
.sidearea .ls-sidebar-service-item, .sidearea li.format-row {
  display: flex !important;
  align-items: flex-start !important;
  gap: 12px !important;
  margin-bottom: 14px !important;
}

.sidearea .ls-sidebar-service-item:last-child {
  margin-bottom: 0 !important;
}

/* Красивий квадратний контейнер для іконки зліва */
.sidearea .ls-sidebar-icon {
  width: 38px !important;
  height: 38px !important;
  border-radius: 10px !important;
  background: rgba(16, 185, 129, 0.1) !important;
  color: #10b981 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  margin-top: 2px !important;
}

/* Текстова частина */
.sidearea .ls-sidebar-item-text {
  font-size: 13px !important;
  color: #475569 !important;
  margin: 0 !important;
  line-height: 1.4 !important;
}

.sidearea .ls-sidebar-item-text strong, .sidearea .ls-sidebar-item-text a {
  font-size: 14px !important;
  font-weight: 700 !important;
  color: #0f172a !important;
  text-decoration: none !important;
}

.sidearea .ls-sidebar-item-text a:hover {
  color: #10b981 !important;
}
/* --------------------------------------------------------------------------
   ФІКС ПЕРЕНЕСЕННЯ НОМЕРА ТЕЛЕФОНУ В ШАПЦІ (МОБІЛЬНА ВЕРСІЯ)
   -------------------------------------------------------------------------- */
@media (max-width: 991px) {
  /* Забороняємо перенесення рядків для блоку телефону та робимо текст компактнішим */
  .ls-head-phone a {
    white-space: nowrap !important;
    font-size: 15px !important;
    letter-spacing: -0.5px !important;
  }
  
  .ls-head-phone span {
    font-size: 10px !important;
    white-space: nowrap !important;
  }

  /* Зменшуємо проміжки в шапці на мобільних, щоб усім елементам вистачало місця */
  .ls-main-head-flex {
    gap: 8px !important;
  }
}
/* =========================================================
   ФІКС МОБІЛЬНОЇ ВЕРСТКИ (ANTI-OVERFLOW & IMAGES)
   ========================================================= */

html, body {
    width: 100% !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
}

*, *:before, *:after {
    box-sizing: border-box !important;
}

/* 1. ПРИМУСОВЕ СТИСКАННЯ ВСІХ ЗОБРАЖЕНЬ */
img, video, iframe, table {
    max-width: 100% !important;
    height: auto !important;
}

/* 2. СКАСУВАННЯ СТАРИХ FLOAT/ALIGN НА МОБІЛЬНИХ */
@media (max-width: 768px) {
    /* Знімаємо обтікання старих картинок Бітрікса */
    img[align="left"], 
    img[align="right"],
    .text img,
    .main img {
        float: none !important;
        display: block !important;
        margin: 15px auto !important;
        max-width: 100% !important;
        width: auto !important;
        height: auto !important;
        clear: both !important;
    }

    /* Виправлення контейнерів та сітки */
    .container, 
    .container-fluid,
    .maxwidth-theme,
    .row {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 10px !important;
        padding-right: 10px !important;
        overflow: hidden !important;
    }

    /* Перенос довгих слів і заголовків */
    h1, h2, h3, h4, p, li, span, a {
        overflow-wrap: break-word !important;
        word-wrap: break-word !important;
        word-break: break-word !important;
    }

    /* Шапка: компактний вигляд без розпирання */
    .ls-main-head-flex {
        display: flex !important;
        flex-wrap: wrap !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 10px !important;
        width: 100% !important;
    }
    
    .ls-brand-zone {
        max-width: 180px !important;
    }

    .ls-brand-sub {
        display: none !important;
    }

    .ls-cta-zone {
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
    }

    .ls-head-phone span {
        display: none !important;
    }

    .ls-head-phone a {
        font-size: 14px !important;
    }

    /* 3. НАВЕДЕННЯ ЛАДУ З ПЛАВАЮЧИМИ КНОПКАМИ */
    /* Старі кнопки ліворуч робимо компактними в один стовпчик і опускаємо нижче, щоб не закривали текст */
    .ls-quick-chat, 
    .social {
        left: 10px !important;
        bottom: 70px !important; /* піднято, щоб не налізати на нижній чат */
        z-index: 999 !important;
        transform: scale(0.8);
        transform-origin: bottom left;
    }

    .social .social-link,
    .ls-chat-btn {
        width: 40px !important;
        height: 40px !important;
        margin-bottom: 8px !important;
    }
}

/* =========================================================
   ІДЕАЛЬНА МОБІЛЬНА ШАПКА В ОДИН РЯДОК (2026 Mobile Header)
   ========================================================= */

@media (max-width: 768px) {
    /* Приховуємо верхній рядок з годинами роботи на вузьких екранах */
    .ls-topbar {
        display: none !important;
    }

    .ls-main-head {
        padding: 8px 0 !important;
        background: #0f172a !important; /* єдиний монолітний темний фон */
        border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    }

    .ls-main-head .container {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    /* Вирівнюємо всі 3 елементи в один рядок */
    .ls-main-head-flex {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        justify-content: space-between !important;
        align-items: center !important;
        gap: 8px !important;
        width: 100% !important;
    }

    /* 1. Логотип зліва */
    .ls-brand-zone {
        display: flex !important;
        align-items: center !important;
        flex: 0 0 auto !important;
        margin: 0 !important;
    }

    .ls-brand-zone a {
        display: inline-flex !important;
        align-items: center !important;
    }

    .ls-logo-img {
        max-height: 38px !important; /* акуратна висота, щоб не роздувати шапку */
        width: auto !important;
        display: block !important;
    }

    .ls-brand-sub {
        display: none !important; /* приховуємо довгий текст */
    }

    /* Пошук у самій шапці ховаємо (або виносимо в меню) */
    .ls-search-form {
        display: none !important;
    }

    /* 2. Права зона: телефон + меню в один блок */
    .ls-cta-zone {
        display: inline-flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 8px !important;
        flex: 0 0 auto !important;
        margin: 0 !important;
    }

    /* Кнопка швидкого виклику */
    .ls-head-phone {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        text-align: right !important;
    }

    .ls-head-phone span {
        display: none !important; /* приховуємо "пн-пт з 10 до 18" */
    }

    .ls-head-phone a {
        color: #ffffff !important;
        font-size: 13px !important;
        font-weight: 700 !important;
        letter-spacing: 0.2px !important;
        white-space: nowrap !important;
        text-decoration: none !important;
        background: rgba(255, 255, 255, 0.08);
        padding: 6px 10px !important;
        border-radius: 8px !important;
        border: 1px solid rgba(255, 255, 255, 0.12) !important;
    }

    /* Кнопка "Меню" */
    .ls-burger-btn {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 5px !important;
        background: #10b981 !important; /* контрастний зелений акцент */
        color: #ffffff !important;
        border: none !important;
        padding: 6px 10px !important;
        border-radius: 8px !important;
        font-size: 13px !important;
        font-weight: 700 !important;
        cursor: pointer !important;
        height: 32px !important;
    }

    .ls-burger-btn svg {
        stroke: #ffffff !important;
        width: 16px !important;
        height: 16px !important;
    }

    .ls-burger-btn span {
        display: inline-block !important;
        line-height: 1 !important;
    }
}
/* =========================================================
   СУЧАСНИЙ ДИЗАЙН СТОРІНОК ПОСЛУГ ТА ЦІН (2026 Content UI)
   ========================================================= */

/* Акуратний стиль контентного тексту */
.content, .text, .main, div[role="main"] {
    color: #334155;
    font-size: 15px;
    line-height: 1.7;
}

.content h2, .text h2 {
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
    margin: 32px 0 16px 0;
    letter-spacing: -0.3px;
}

.content h3, .text h3 {
    font-size: 19px;
    font-weight: 700;
    color: #1e293b;
    margin: 24px 0 12px 0;
}

/* Списки переваг / робіт */
.content ul, .text ul {
    list-style: none !important;
    padding-left: 0 !important;
    margin: 16px 0 !important;
}

.content ul li, .text ul li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.content ul li::before, .text ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #10b981;
    font-weight: 800;
    font-size: 16px;
}

/* Модернізація всіх старих таблиць цін Бітрікса */
table {
    width: 100% !important;
    border-collapse: separate !important;
    border-spacing: 0 !important;
    margin: 20px 0 !important;
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03) !important;
}

table th {
    background: #f8fafc !important;
    color: #475569 !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    padding: 14px 16px !important;
    border-bottom: 1px solid #e2e8f0 !important;
}

table td {
    padding: 14px 16px !important;
    border-bottom: 1px solid #f1f5f9 !important;
    font-size: 14px !important;
    color: #334155 !important;
    vertical-align: middle !important;
}

table tr:last-child td {
    border-bottom: none !important;
}

table tr:hover td {
    background: #f8fafc !important;
}

/* Виділення цін у таблицях */
table td:last-child {
    font-weight: 700 !important;
    color: #0f172a !important;
    white-space: nowrap !important;
}

/* Сучасна плашка заклику до дії (CTA Banner) */
.ls-cta-box {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 16px;
    padding: 30px;
    color: #ffffff;
    margin: 40px 0;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.15);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.ls-cta-box-text h3 {
    color: #ffffff !important;
    margin: 0 0 8px 0 !important;
    font-size: 22px !important;
}

.ls-cta-box-text p {
    color: #94a3b8 !important;
    margin: 0 !important;
    font-size: 14px !important;
}

.ls-cta-box-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.ls-btn-tel {
    background: #10b981;
    color: #ffffff !important;
    font-weight: 700;
    padding: 12px 22px;
    border-radius: 10px;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.2s;
}

.ls-btn-tg {
    background: #229ed9;
    color: #ffffff !important;
    font-weight: 700;
    padding: 12px 22px;
    border-radius: 10px;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.2s;
}
/* =========================================================
   НИЖНЯ МОБІЛЬНА ПАНЕЛЬ ШВИДКОГО ЗВ'ЯЗКУ (Bottom Bar)
   ========================================================= */

.ls-mobile-bar {
    display: none;
}

@media (max-width: 768px) {
    /* Ховаємо вертикальні круглі плаваючі кнопки, щоб не закривали текст */
    .ls-quick-chat, .social {
        display: none !important;
    }

    /* Відступ для body, щоб фіксована панель не перекривала футер */
    body {
        padding-bottom: 60px !important;
    }

    .ls-mobile-bar {
        display: flex !important;
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        height: 56px !important;
        background: #0f172a !important;
        border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
        z-index: 999999 !important;
        box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.3) !important;
    }

    .ls-bar-item {
        flex: 1 !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 6px !important;
        color: #ffffff !important;
        text-decoration: none !important;
        font-size: 13px !important;
        font-weight: 700 !important;
        border-right: 1px solid rgba(255, 255, 255, 0.08) !important;
    }

    .ls-bar-item:last-child {
        border-right: none !important;
    }

    .ls-bar-item.call {
        background: #10b981 !important;
    }

    .ls-bar-item.tg {
        background: #229ed9 !important;
    }

    .ls-bar-item.vb {
        background: #7360f2 !important;
    }

    .ls-bar-item svg {
        width: 18px !important;
        height: 18px !important;
        fill: currentColor !important;
    }
}
/* =========================================================
   СУЧАСНИЙ SIDEBAR ПОСЛУГ ТА НАВІГАЦІЇ (2026 UI)
   ========================================================= */

/* Обгортка блоку меню */
.side-menu, 
.left_block, 
.col-md-3 .menu-block,
div[class*="menu-block"] {
    background: #ffffff !important;
    border-radius: 16px !important;
    border: 1px solid #e2e8f0 !important;
    overflow: hidden !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04) !important;
    margin-bottom: 25px !important;
}

/* Заголовок блоку (зелена плашка) */
.side-menu .title,
.side-menu h3,
div[class*="menu-block"] .title,
div[class*="menu-block"] > div:first-child {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
    color: #ffffff !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    padding: 14px 18px !important;
    letter-spacing: 0.2px !important;
    border: none !important;
}

/* Пункти меню */
.side-menu ul,
div[class*="menu-block"] ul {
    list-style: none !important;
    padding: 6px 0 !important;
    margin: 0 !important;
}

.side-menu ul li,
div[class*="menu-block"] ul li {
    padding: 0 !important;
    margin: 0 !important;
    border-bottom: 1px solid #f1f5f9 !important;
}

.side-menu ul li:last-child,
div[class*="menu-block"] ul li:last-child {
    border-bottom: none !important;
}

.side-menu ul li a,
div[class*="menu-block"] ul li a {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 12px 18px !important;
    color: #334155 !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
}

/* Підсвітка активного або обраного пункту */
.side-menu ul li a:hover,
.side-menu ul li.active a,
div[class*="menu-block"] ul li a:hover {
    background: #f8fafc !important;
    color: #10b981 !important;
    padding-left: 22px !important;
}

/* Стрілка-індикатор біля пункту */
.side-menu ul li a::after,
div[class*="menu-block"] ul li a::after {
    content: "›";
    font-size: 18px;
    line-height: 1;
    color: #94a3b8;
    transition: transform 0.2s ease;
}

.side-menu ul li a:hover::after {
    color: #10b981;
    transform: translateX(3px);
}

/* Компактний вигляд на смартфонах */
@media (max-width: 768px) {
    .side-menu ul li a,
    div[class*="menu-block"] ul li a {
        padding: 10px 14px !important;
        font-size: 13.5px !important;
    }
}
/* =========================================================
   СУЧАСНІ ХЛІБНІ КРИХТИ (Breadcrumbs 2026)
   ========================================================= */

.breadcrumbs,
#navigation,
.breadcrumb {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    gap: 6px !important;
    padding: 12px 0 !important;
    margin: 0 0 15px 0 !important;
    list-style: none !important;
    background: transparent !important;
    font-size: 13px !important;
}

.breadcrumbs a,
#navigation a,
.breadcrumb a {
    color: #64748b !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
}

.breadcrumbs a:hover,
#navigation a:hover,
.breadcrumb a:hover {
    color: #10b981 !important;
}

.breadcrumbs span,
#navigation span,
.breadcrumb .active {
    color: #94a3b8 !important;
}

/* Розділювач між крихтами */
.breadcrumbs a::after,
.breadcrumb li + li::before {
    content: "/" !important;
    display: inline-block !important;
    margin-left: 6px !important;
    color: #cbd5e1 !important;
}

/* На мобільних ховаємо довгий ланцюжок, лишаємо компактно */
@media (max-width: 768px) {
    .breadcrumbs,
    #navigation,
    .breadcrumb {
        font-size: 12px !important;
        padding: 8px 12px !important;
    }
}
/* =========================================================
   ВІДНОВЛЕННЯ СТИЛЮ ТА КОНТРАСТУ ФОРМИ ЗАЯВКИ
   ========================================================= */

/* Загальна темна картка форми */
.ls-lead-box,
div[style*="background:#0f172a"],
div[style*="background: #0f172a"],
div[style*="background: rgb(15, 23, 42)"] {
    background: #0f172a !important;
    border-radius: 20px !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25) !important;
    color: #ffffff !important;
}

/* Заголовок форми — яскравий білий */
.ls-lead-box h2,
.ls-lead-box h3,
div[style*="background:#0f172a"] h2,
div[style*="background:#0f172a"] h3,
div[style*="background: #0f172a"] h2,
div[style*="background: #0f172a"] h3 {
    color: #ffffff !important;
    font-weight: 800 !important;
    font-size: 26px !important;
    line-height: 1.25 !important;
    margin-bottom: 12px !important;
}

/* Підзаголовок під назвою */
.ls-lead-box p,
div[style*="background:#0f172a"] p,
div[style*="background: #0f172a"] p {
    color: #94a3b8 !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
}

/* Пункти переваг з галочками */
.ls-lead-box ul li,
div[style*="background:#0f172a"] ul li,
div[style*="background: #0f172a"] ul li {
    color: #e2e8f0 !important;
    font-size: 14px !important;
}

/* Права зона: підписи над полями вводу */
.ls-lead-form label,
div[style*="background:#0f172a"] label,
div[style*="background: #0f172a"] label {
    color: #cbd5e1 !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
}

/* Поля вводу (Input та Textarea) */
.ls-lead-form input,
.ls-lead-form textarea,
div[style*="background:#0f172a"] input,
div[style*="background:#0f172a"] textarea,
div[style*="background: #0f172a"] input,
div[style*="background: #0f172a"] textarea {
    background: #1e293b !important;
    border: 1px solid #334155 !important;
    border-radius: 8px !important;
    color: #ffffff !important;
    font-size: 14px !important;
    padding: 10px 14px !important;
}

.ls-lead-form input::placeholder,
.ls-lead-form textarea::placeholder {
    color: #64748b !important;
}

/* Фокус на полях */
.ls-lead-form input:focus,
.ls-lead-form textarea:focus {
    border-color: #10b981 !important;
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2) !important;
}

/* Кнопка "Отримати консультацію" */
.ls-lead-form button,
.ls-lead-submit-btn,
div[style*="background:#0f172a"] button,
div[style*="background: #0f172a"] button {
    background: #10b981 !important;
    color: #ffffff !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.4) !important;
    transition: all 0.2s ease !important;
}

.ls-lead-form button:hover,
.ls-lead-submit-btn:hover {
    background: #059669 !important;
    transform: translateY(-1px) !important;
}

/* Дрібний текст про згоду на обробку персональних даних */
div[style*="background:#0f172a"] small,
div[style*="background: #0f172a"] small,
.ls-lead-form small {
    color: #64748b !important;
    font-size: 11px !important;
}
/* =========================================================
   РОЗГОРТАННЯ ФОРМИ НА ВСЮ ШИРИНУ ДИСПЛЕЯ (Full Width Fix)
   ========================================================= */

@media (max-width: 768px) {
    /* 1. Скидаємо вузьку ширину обгортки форми та прибираємо жорсткі пікселі */
    div[style*="background:#0f172a"],
    div[style*="background: #0f172a"],
    div[style*="background: rgb(15, 23, 42)"],
    .ls-lead-box,
    .ls-lead-form,
    form[onsubmit*="sendLead"] {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 100% !important;
        box-sizing: border-box !important;
        margin: 15px 0 !important;
        padding: 20px 14px !important;
    }

    /* 2. Скидаємо обмеження ширини для внутрішніх колонок */
    div[style*="background:#0f172a"] > div,
    div[style*="background:#0f172a"] .row,
    div[style*="background:#0f172a"] [class*="col-"] {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 100% !important;
        flex: 1 1 100% !important;
        display: block !important;
        padding: 0 !important;
        margin: 0 0 15px 0 !important;
    }

    /* 3. Текст пунктів та списків — на всю ширину без переносу слів по складах */
    div[style*="background:#0f172a"] ul,
    div[style*="background:#0f172a"] li,
    div[style*="background:#0f172a"] p,
    div[style*="background:#0f172a"] h2,
    div[style*="background:#0f172a"] h3 {
        width: 100% !important;
        max-width: 100% !important;
        white-space: normal !important;
        word-break: normal !important;
        word-wrap: normal !important;
        line-height: 1.5 !important;
        text-align: left !important;
    }

    div[style*="background:#0f172a"] li {
        display: flex !important;
        align-items: flex-start !important;
        gap: 8px !important;
        margin-bottom: 10px !important;
    }

    /* 4. Внутрішня картка форми з полями вводу */
    div[style*="background:#0f172a"] form,
    div[style*="background:#0f172a"] div[style*="background:#1e293b"],
    div[style*="background:#0f172a"] div[style*="background: #1e293b"],
    div[style*="background:#0f172a"] div[style*="background:rgba(30, 41, 59"] {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 100% !important;
        box-sizing: border-box !important;
        padding: 16px 12px !important;
        margin: 0 !important;
    }

    /* 5. Поля вводу і кнопка на 100% ширини */
    .ls-lead-form input,
    .ls-lead-form textarea,
    .ls-lead-form button,
    form[onsubmit*="sendLead"] input,
    form[onsubmit*="sendLead"] textarea,
    form[onsubmit*="sendLead"] button {
        width: 100% !important;
        max-width: 100% !important;
        display: block !important;
        box-sizing: border-box !important;
    }
}