.elementor-1278 .elementor-element.elementor-element-a7dda3a{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-fad12b5 *//* --- ОБЩИЙ КОНТЕЙНЕР --- */
.services-section {
  background-color: #f8fafc;
  padding: 80px 0;
  font-family: inherit;
  color: #0f172a;
}

.services-container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
}

/* --- ЗАГОЛОВОК --- */
.services-header {
  text-align: center;
  margin-bottom: 50px;
}

.services-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 16px 0;
}

.services-divider {
  width: 60px;
  height: 3px;
  background-color: #dca564;
  margin: 0 auto;
  border-radius: 2px;
}

.price-subtitle {
  margin-top: 20px;
  font-size: 16px;
  color: #64748b;
}

/* --- СЕТКА ДЛЯ ПРАЙСА (2 КОЛОНКИ) --- */
.price-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}

/* --- САМА КАРТОЧКА --- */
.service-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 40px 30px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 20px -5px rgba(0, 0, 0, 0.05);
  border-color: #cbd5e1;
}

/* Декоративный круглый элемент */
.service-card::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  background-color: #f8fafc;
  border-radius: 50%;
  z-index: 0;
  transition: transform 0.3s ease;
}

.service-card:hover::after {
  transform: scale(1.1);
}

.service-card > * {
  position: relative;
  z-index: 1;
}

/* --- СПИСКИ УСЛУГ И ЦЕН --- */
.price-list-items {
  list-style: none;
  padding: 0;
  margin: 0;
}

.price-list-items li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 1.4;
  color: #0f172a;
}

.price-list-items li:last-child {
  margin-bottom: 0;
}

.service-name {
  max-width: 65%;
  font-weight: 500;
}

/* Пунктирная линия */
.price-leader {
  flex-grow: 1;
  border-bottom: 1px dashed #cbd5e1;
  margin: 0 15px;
  position: relative;
  top: -4px;
}

.service-price {
  white-space: nowrap;
  font-weight: 700;
  color: #dca564; /* Золотистый цвет для акцента на цене */
}

/* --- ПОДВАЛ (СНОСКА) --- */
.price-footer {
  text-align: center;
  font-size: 13px;
  color: #94a3b8;
  margin-top: 20px;
}

/* --- АДАПТИВНОСТЬ --- */
@media (max-width: 992px) {
  .price-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .price-list-items li {
    flex-direction: column;
    margin-bottom: 25px;
  }
  
  .service-name {
    max-width: 100%;
    margin-bottom: 8px;
  }
  
  .price-leader {
    display: none;
  }
  
  .service-price {
    align-self: flex-start;
  }
}/* End custom CSS */