/* ═══════════════════════════════════════════
   Services Grid — Numbered Cards
   ═══════════════════════════════════════════ */

.svcs {
  padding: 120px 24px;
  position: relative;
}

.svcs__hd {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}

.svcs__lbl {
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--teal);
  margin-bottom: 14px;
}

.svcs__h {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(30px, 3.5vw, 46px);
  color: var(--heading);
  margin-bottom: 16px;
  line-height: 1.15;
}

.svcs__p {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 400;
}

.svcs__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* ── Service Card ── */
.sc {
  background: var(--card);
  border-radius: 20px;
  padding: 40px 32px;
  border: 1px solid rgba(0, 0, 0, .04);
  position: relative;
  overflow: hidden;
  transition: all .5s var(--ease);
}

.sc::after {
  content: '';
  position: absolute;
  top: -24px;
  right: -24px;
  width: 64px;
  height: 64px;
  border: 2px solid var(--teal);
  border-radius: 10px;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}

.sc:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(0, 0, 0, .06);
  border-color: transparent;
}
.sc:hover::after {
  opacity: .08;
  transform: rotate(45deg) translate(-4px, 4px);
}

.sc__n {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 44px;
  color: var(--teal);
  opacity: .08;
  line-height: 1;
  position: absolute;
  top: 24px;
  right: 24px;
}

.sc__icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 16px;
}

.sc__nm {
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: 20px;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.3;
}

.sc__tg {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 20px;
  font-weight: 400;
}

.sc__lk {
  font-weight: 600;
  font-size: 13px;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .3s var(--ease);
}
.sc:hover .sc__lk {
  gap: 12px;
}

/* ── Card with Image ── */
.sc--img {
  padding: 0;
  overflow: hidden;
}
.sc--img .sc__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.sc--img .sc__body {
  padding: 28px 28px 32px;
}


/* ═══════════════════════════════════════════
   Responsive — Services Grid
   ═══════════════════════════════════════════ */

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

@media (max-width: 768px) {
  .svcs {
    padding: 80px 20px;
  }
  .svcs__grid {
    grid-template-columns: 1fr;
  }
}
