/* секция УСЛУГИ */
#services{ border-top:1px solid #cfcfcf; padding-top:46px; margin-top:46px; }
.services-title{ text-transform:uppercase; font-size:18px; letter-spacing:.02em; margin-bottom:18px; }

.services-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:26px 34px;
}

/* карточка */
.srv-card{
  background:#fff;
  border:1px solid #d9d9d9;
  border-radius:14px;
  padding:18px 22px 16px;
  box-shadow:0 1px 0 rgba(0,0,0,.02), 0 8px 20px rgba(0,0,0,.03);
}
.srv-head{ display:grid; grid-template-columns:56px 1fr; align-items:center; column-gap:16px; }
.srv-icn{ width:56px; height:56px; display:grid; place-items:center; }
.srv-icn img{ width:44px; height:44px; display:block; }
.srv-title{ text-transform:uppercase; font-size:14px; line-height:1.25; font-weight:700; }
.srv-sep{ height:1px; background:#d6d6d6; margin:12px 0; }
.srv-text{ font-size:14px; line-height:1.35; color:#111; opacity:.95; }
.srv-price{ display:flex; justify-content:center; align-items:baseline; gap:8px; margin-top:10px; font-variant-numeric:tabular-nums; }
.srv-price span{ font-size:12px; text-transform:uppercase; letter-spacing:.02em; color:#555; }
.srv-price strong{ font-size:14px; font-weight:700; color:#111; }

/* стрелка вниз после услуг */
.services-scroll-hint{
  display:flex; align-items:center; justify-content:center;
  width:24px; height:24px; margin:16px auto 0;
  color:#111; text-decoration:none; opacity:.85;
  animation:scroll-bounce-services 1.6s infinite ease-in-out;
}
.scroll-arrow{ width:100%; height:100%; }
@keyframes scroll-bounce-services{ 0%,100%{ transform:translateY(0) } 50%{ transform:translateY(4px) } }

@media (max-width:860px){ .services-grid{ grid-template-columns:1fr; } }
