.services-wrap { padding: 64px 24px; max-width: 1200px; margin: 0 auto; }
.svc-card { display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; text-decoration: none; color: inherit; transition: transform .2s, box-shadow .2s, border-color .2s; }
.svc-card:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(0,0,0,0.08); border-color: var(--orange); }
.svc-img { aspect-ratio: 16/9; background-size: cover; background-position: center top; }
.svc-body { padding: 22px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.svc-tag { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange); }
.svc-title { font-size: 20px; font-weight: 800; letter-spacing: -0.01em; color: var(--black); }
.svc-desc { font-size: 14px; color: var(--muted); line-height: 1.6; flex: 1; }
.svc-arrow { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; color: var(--orange); margin-top: 8px; }
.svc-arrow .a { width: 24px; height: 24px; background: var(--orange); color: #fff; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 12px; }
.cta-section-inner { display: flex; flex-direction: column; gap: 24px; align-items: flex-start; }
.btn-outline { border: 1.5px solid rgba(255,255,255,0.3); color: #fff; padding: 14px 26px; border-radius: 100px; font-weight: 600; text-decoration: none; font-size: 15px; }
.btn-outline:hover { border-color: #fff; }
@media (min-width: 1024px) {
  .services-wrap { padding: 80px 48px; }
  .cta-section-inner { flex-direction: row; align-items: center; justify-content: space-between; }
}
