.services-section { padding: 80px 5%; background: var(--bg); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.service-card {
  background: var(--card);
  padding: 2.2rem 2rem;
  transition: background .25s;
  position: relative;
  overflow: hidden;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.service-card:nth-child(3n) { border-right: none; }
.service-card:nth-last-child(-n+3) { border-bottom: none; }
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent2), var(--accent));
  opacity: 0;
  transition: opacity .3s;
}
.service-card:hover { background: #1a2438; }
.service-card:hover::before { opacity: 1; }
.service-icon { width: 44px; height: 44px; margin-bottom: 1.2rem; color: var(--accent); }
.service-card h3 { font-family: 'Rajdhani', sans-serif; font-size: 1.15rem; font-weight: 600; color: #fff; margin-bottom: .5rem; letter-spacing: .5px; }
.service-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.65; font-weight: 300; }
.cta-strip {
  background: var(--bg2);
  padding: 70px 5%;
  text-align: center;
  border-top: 1px solid var(--border);
}
.cta-strip h2 { font-family: 'Rajdhani', sans-serif; font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 700; color: #fff; margin-bottom: .75rem; }
.cta-strip h2 span { color: var(--accent); }
.cta-strip p { color: var(--muted); font-size: 0.95rem; margin-bottom: 2rem; font-weight: 300; }
@media (max-width: 860px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card:nth-child(3n) { border-right: 1px solid var(--border); }
  .service-card:nth-child(2n) { border-right: none; }
  .service-card:nth-last-child(-n+3) { border-bottom: 1px solid var(--border); }
  .service-card:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 520px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card { border-right: none; border-bottom: 1px solid var(--border); }
  .service-card:last-child { border-bottom: none; }
}
