.elementor-729 .elementor-element.elementor-element-3151ec1{--display:flex;}/* Start custom CSS *//* === SERVICES CATALOG (категорійна сторінка послуг) — фінальна версія === */
.dm-services {
  --brand:#6694ba;
  --accent-a:#1fcf90;
  --ink:#0f1c2b;
  --muted:#5b667a;
  background:linear-gradient(180deg,#f1f6fb 0%,#f8fbfe 100%);
  font-family:Inter,system-ui,sans-serif;
  padding:80px 0;
}

/* Контейнер */
.dm-container {
  max-width:1200px;
  margin:0 auto;
  padding:0 24px;
}

/* Заголовок */
.dm-services h2 {
  margin:0 0 10px;
  font-weight:800;
  color:var(--ink);
}
.dm-services .dm-lead {
  margin:0 0 36px;
  color:#425b72;
  max-width:900px;
}

/* Сітка карток */
.svc-grid {
  display:grid;
  gap:32px; /* більше простору між картками */
  grid-template-columns:repeat(auto-fill, minmax(300px, 1fr));
  justify-content:center;
  margin-bottom:48px;
}
@media(min-width:992px){
  .svc-grid {
    grid-template-columns:repeat(3, 1fr);
  }
}

/* Останній ряд (дві картки по центру) */
.svc-grid--last {
  display:grid;
  gap:32px;
  grid-template-columns:repeat(2, 1fr);
  justify-content:center;
  max-width:820px;
  margin:0 auto 56px;
}

/* Картка */
.svc-card {
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  position:relative;
  overflow:hidden;
  border:1px solid #dbe5f0;
  border-radius:18px;
  background:#fff;
  text-decoration:none;
  color:inherit;
  box-shadow:0 12px 30px rgba(16,24,40,.08), 0 3px 8px rgba(16,24,40,.05);
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.svc-card:hover {
  transform:translateY(-3px);
  box-shadow:0 18px 40px rgba(16,24,40,.12), 0 6px 12px rgba(16,24,40,.08);
  border-color:#cfdceb;
}
.svc-card:focus-visible {
  outline:3px solid rgba(102,148,186,.45);
  outline-offset:3px;
}

/* Зображення */
.svc-media {
  position:relative;
  aspect-ratio:16/9;
  background:#eef3f8;
}
.svc-media img {
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* Текст усередині картки */
.svc-body {
  padding:18px 20px 24px;
  display:flex;
  flex-direction:column;
  gap:8px;
  flex:1;
}
.svc-title {
  margin:0;
  font:700 18px/1.25 Inter,system-ui,sans-serif;
  color:var(--ink);
}
.svc-text {
  margin:0;
  color:#2a2f3a;
  font-size:15px;
  flex:1;
}
.svc-more {
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:var(--brand);
  font-weight:600;
  font-size:14px;
  margin-top:4px;
}
.svc-more svg {
  transform:translateX(0);
  transition:transform .2s ease;
}
.svc-card:hover .svc-more svg {
  transform:translateX(3px);
}

/* Загальний опис унизу */
.svc-about {
  margin-top:52px;
  border:1px solid #dbe5f0;
  border-radius:18px;
  background:#fff;
  box-shadow:0 12px 30px rgba(16,24,40,.08), 0 3px 8px rgba(16,24,40,.05);
  padding:32px 34px;
}
.svc-about h3 {
  margin:0 0 10px;
  font:800 20px/1.25 Inter,system-ui,sans-serif;
  color:var(--ink);
}
.svc-about p {
  margin:0;
  color:#2a2f3a;
}/* End custom CSS */