/* ==========================================================================
   BPoint Home — Services
   ========================================================================== */

.bp-home .svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.bp-home .svc-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  transition: .2s;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.bp-home .svc-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background: var(--blue);
  transform: scaleY(0);
  transform-origin: top;
  transition: .25s;
}
.bp-home .svc-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: var(--line-strong); }
.bp-home .svc-card:hover::before { transform: scaleY(1); }
.bp-home .svc-ico {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  background: var(--navy);
  color: var(--blue-bright);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.bp-home .svc-ico > svg { width: 26px; height: 26px; }
.bp-home .svc-card h3 { font-size: 18px; line-height: 1.25; }
.bp-home .svc-card p { font-size: 14px; color: var(--slate); margin-top: 9px; flex: 1; }
.bp-home .svc-card p a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}
.bp-home .svc-card .more {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 16px;
  font-weight: 700;
  font-size: 13px;
  color: var(--blue);
}
.bp-home .svc-card .more [data-icon] { width: 14px; height: 14px; transition: .2s; }
.bp-home .svc-card:hover .more [data-icon] { transform: translateX(4px); }
.bp-home .svc-card .more:hover { color: var(--blue-600); }

@media (max-width: 980px) { .bp-home .svc-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .bp-home .svc-grid { grid-template-columns: 1fr; } }
